/* About Us Page Styles */
.page-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.company-history {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.history-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.history-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.milestones {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
}

.milestones:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #c9a86a;
    left: 50%;
    transform: translateX(-50%);
}

.milestone {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
}

.milestone:nth-child(odd) {
    padding-right: calc(50% + 40px);
    text-align: right;
}

.milestone:nth-child(even) {
    padding-left: calc(50% + 40px);
    text-align: left;
}

.milestone-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: #c9a86a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    z-index: 2;
}

.milestone-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.milestone-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.milestone-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    text-align: left;
    margin: 0;
}

.leadership {
    padding: 100px 0;
    background-color: white;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

.section-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.leader-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.leader-image {
    width: 220px;
    height: 260px;
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-image:hover img {
    transform: scale(1.05);
}

.leader-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: #333;
}

.leader-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #c9a86a;
    font-weight: 500;
    margin-bottom: 20px;
}

.leader-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.leader-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    line-height: 40px;
    color: #333;
    transition: all 0.3s ease;
}

.leader-social a:hover {
    background: #c9a86a;
    color: white;
    transform: translateY(-3px);
}

.values-culture {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    color: #c9a86a;
    margin-bottom: 20px;
}

.value-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.value-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.awards-recognition {
    padding: 100px 0;
    background-color: white;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.award-item {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.award-item:hover {
    border-color: #c9a86a;
    box-shadow: 0 8px 25px rgba(201, 168, 106, 0.1);
}

.award-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #c9a86a;
    margin-bottom: 15px;
}

.award-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.award-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #666;
}

.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .company-history {
        padding: 70px 0;
    }
    
    .leadership {
        padding: 70px 0;
    }
    
    .values-culture {
        padding: 70px 0;
    }
    
    .awards-recognition {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .milestones:before {
        left: 30px;
    }
    
    .milestone:nth-child(odd),
    .milestone:nth-child(even) {
        padding: 0 0 0 80px;
        text-align: left;
    }
    
    .milestone-year {
        left: 30px;
    }
    
    .milestone-content {
        padding: 20px;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .page-hero {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .company-history {
        padding: 50px 0;
    }
    
    .history-content h2 {
        font-size: 2rem;
    }
    
    .milestone {
        margin-bottom: 70px;
    }
    
    .milestone-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
}