/* Page Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a2a3a 0%, #2a3a4a 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23ff6b35" opacity="0.1" width="1200" height="400"/><circle fill="%23ff6b35" opacity="0.05" cx="200" cy="200" r="100"/><circle fill="%23ff6b35" opacity="0.05" cx="800" cy="100" r="80"/></svg>');
    background-size: cover;
    background-position: center;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.page-subtitle {
    font-size: 20px;
    color: #ff6b35;
    margin-bottom: 30px;
    font-weight: 600;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #ccc;
}

.breadcrumb a {
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: #999;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background: white;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 30px;
}

.content-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.image-placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    color: #999;
    font-size: 18px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.image-placeholder i {
    font-size: 48px;
    color: #ff6b35;
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.experience-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.experience-badge-large {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.experience-badge-large .experience-number {
    font-size: 96px;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
}

.experience-badge-large .experience-text {
    display: flex;
    flex-direction: column;
}

.experience-badge-large .years {
    font-size: 24px;
    font-weight: 600;
    color: #1a2a3a;
}

.experience-badge-large .experience {
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 20px;
}

.experience-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: #ff6b35;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.value-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 15px;
}

.value-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Production Section */
.production-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.production-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.production-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-item i {
    color: #ff6b35;
    font-size: 18px;
}

.feature-item span {
    font-weight: 600;
    color: #1a2a3a;
}

/* Vision Content Section */
.vision-content-section {
    padding: 80px 0;
    background: white;
}

.vision-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.mission-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 15px;
}

.mission-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Goals Section */
.goals-section {
    padding: 80px 0;
    background: white;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.goal-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: #ff6b35;
}

.goal-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.goal-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a2a3a;
    margin: 20px 0 15px;
}

.goal-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Innovation Section */
.innovation-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.innovation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.innovation-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

/* Future Section */
.future-section {
    padding: 80px 0;
    background: white;
}

.future-content {
    max-width: 800px;
    margin: 0 auto;
}

.future-timeline {
    margin-top: 50px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateX(10px);
}

.timeline-year {
    background: #ff6b35;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    min-width: 80px;
    text-align: center;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .about-content-grid,
    .vision-content-grid,
    .production-content,
    .innovation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .experience-content {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .production-features,
    .innovation-features {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-year {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
    
    .content-title {
        font-size: 28px;
    }
    
    .experience-badge-large {
        flex-direction: column;
        text-align: center;
    }
    
    .experience-badge-large .experience-number {
        font-size: 72px;
    }
}
