/* ============================================
   ABOUT US PAGE STYLES
   Same Color Combination as Main Site
   ============================================ */

/* Use same color variables */
:root {
    --primary: #d4af37;
    --primary-dark: #b8941f;
    --secondary: #1a1a2e;
    --accent: #c9a961;
    --gold: #f4e4c1;
    --dark: #0f0f1e;
    --light: #f8f9fa;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #6c757d;
    --gradient: linear-gradient(135deg, #d4af37 0%, #c9a961 50%, #b8941f 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    --shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
    --shadow-lg: 0 15px 40px rgba(212, 175, 55, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   ABOUT HERO SECTION
   ============================================ */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 30, 0.85) 100%),
                url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.about-hero-label {
    display: inline-block;
    padding: 8px 30px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.about-hero-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 300;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    justify-content: center;
    margin: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   OUR STORY SECTION
   ============================================ */
.our-story {
    background: var(--white);
}

.story-images {
    position: relative;
}

.story-main-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-main-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.story-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.badge-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-small-img {
    position: absolute;
    top: 40px;
    left: -50px;
    width: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.story-small-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.3;
}

.title-line {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.story-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 15px;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.story-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-feature i {
    color: var(--primary);
    font-size: 20px;
}

.story-feature span {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(201, 169, 97, 0.02) 100%);
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: var(--white);
    color: var(--primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-card:hover .stat-number {
    color: var(--white);
}

.stat-label {
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.stat-card:hover .stat-label {
    color: var(--white);
}

/* ============================================
   MISSION & VISION SECTION
   ============================================ */
.mission-vision {
    background: var(--white);
}

.mv-card {
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.mission-card {
    border-left: 5px solid var(--primary);
}

.vision-card {
    border-left: 5px solid var(--accent);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--white);
    margin-bottom: 25px;
}

.mv-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 700;
}

.mv-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.mv-list i {
    color: var(--primary);
    font-size: 14px;
    margin-top: 3px;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose {
    background: var(--light);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
}

.choose-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.choose-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--white);
    margin: 0 auto 25px;
    transition: var(--transition);
}

.choose-card:hover .choose-icon {
    transform: rotateY(360deg);
}

.choose-title {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.choose-text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    background: var(--white);
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

.team-info {
    padding: 25px 20px;
    text-align: center;
    background: var(--light);
}

.team-name {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 5px;
    font-weight: 600;
}

.team-position {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-about {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
}

.cta-about-wrapper {
    background: var(--gradient);
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.cta-about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-about-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-small-img {
        position: static;
        width: 100%;
        margin-top: 20px;
        border: none;
    }
    
    .story-small-img img {
        height: 250px;
    }
    
    .cta-about-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 40vh;
        min-height: 350px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .story-main-img img {
        height: 400px;
    }
    
    .story-badge {
        padding: 20px;
        bottom: 20px;
        right: 20px;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .mv-card {
        padding: 30px;
    }
    
    .cta-about-wrapper {
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-about-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .team-img {
        height: 250px;
    }
}
