/* ========================================
   ABOUT PAGE - COMPLETE CSS
======================================== */

/* HERO SECTION */
.about-hero {
    background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 50%, var(--metallic-dark) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 152, 168, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 152, 168, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.min-vh-70 {
    min-height: 70vh;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--pure-white);
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--metallic-light);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--pure-white);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-badge i {
    font-size: 18px;
}

/* WELCOME SECTION */
.welcome-section {
    background: var(--pure-white);
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--pure-black);
    margin-bottom: 20px;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--metallic-dark), var(--metallic-mid));
    margin: 0 auto 30px;
    border-radius: 2px;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto;
}

/* LOCATIONS SECTION */
.locations-section {
    background: var(--metallic-light);
    padding: 60px 0;
}

.location-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(74, 90, 106, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(74, 90, 106, 0.2);
}

.location-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--metallic-dark), var(--metallic-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--pure-white);
}

.location-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--pure-black);
    margin-bottom: 15px;
}

.location-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--metallic-dark);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: var(--background-darker);
    gap: 12px;
}

/* WHAT WE DO SECTION */
.what-we-do-section {
    background: var(--pure-white);
}

.service-card {
    background: var(--pure-white);
    border: 2px solid var(--metallic-light);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    border-color: var(--metallic-dark);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(74, 90, 106, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--metallic-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--metallic-dark);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--metallic-dark), var(--metallic-mid));
    color: var(--pure-white);
    transform: rotateY(360deg);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--pure-black);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* WHY CHOOSE SECTION */
.why-choose-section {
    background: linear-gradient(135deg, var(--background-darker), var(--background-dark));
    padding: 80px 0;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--metallic-light);
    transform: translateY(-10px);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--metallic-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--pure-white);
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    background: var(--metallic-light);
    color: var(--metallic-dark);
    transform: scale(1.1);
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 15px;
    color: var(--metallic-light);
    line-height: 1.6;
    margin: 0;
}

/* BRANDS SECTION */
.brands-section {
    background: var(--metallic-light);
}

/* STATS SECTION */
.stats-section {
    background: var(--pure-white);
    padding: 80px 0;
}

.stat-box {
    background: var(--metallic-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--metallic-dark), var(--metallic-mid));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-box:hover::before,
.stat-box.active::before {
    transform: scaleX(1);
}

.stat-box:hover,
.stat-box.active {
    background: linear-gradient(135deg, var(--metallic-dark), var(--metallic-mid));
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(74, 90, 106, 0.25);
}

.stat-box:hover .stat-icon,
.stat-box.active .stat-icon {
    background: var(--pure-white);
    color: var(--metallic-dark);
}

.stat-box:hover .stat-number,
.stat-box:hover p,
.stat-box.active .stat-number,
.stat-box.active p {
    color: var(--pure-white);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--metallic-dark);
    transition: all 0.4s ease;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--pure-black);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.stat-box p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
    margin: 0;
    transition: all 0.3s ease;
}

/* FAQ SECTION */
.faq-section {
    background: var(--metallic-light);
}

.faq-accordion {
    max-width: 100%;
}

.faq-item {
    background: var(--pure-white);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(74, 90, 106, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover,
.faq-item.active {
    box-shadow: 0 8px 25px rgba(74, 90, 106, 0.15);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: var(--pure-black);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--metallic-light);
}

.faq-item.active .faq-question {
    background: var(--metallic-dark);
    color: var(--pure-white);
}

.faq-icon {
    font-size: 24px;
    color: var(--metallic-dark);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    color: var(--pure-white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 30px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
}

/* CTA SECTION */
.cta-section {
    background: var(--pure-white);
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--metallic-dark), var(--background-dark));
    border-radius: 25px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(74, 90, 106, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.cta-box h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--pure-white);
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 18px;
    color: var(--metallic-light);
    margin: 0;
}

.cta-btn {
    background: var(--pure-white);
    color: var(--metallic-dark);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.cta-btn:hover {
    background: var(--metallic-light);
    color: var(--background-darker);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* RESPONSIVE DESIGN */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .location-card,
    .stat-box {
        margin-bottom: 20px;
    }
    
    .cta-box {
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-box h2 {
        font-size: 28px;
    }
    
    .cta-box p {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-badge {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}
