/* Import base variables from index_v.css */
:root {
    --primary-dark: #0f1419;
    --secondary-dark: #1c2128;
    --accent-dark: #22272e;
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c61;
    --light-orange: #ffa07a;
    --dark-orange: #e55a2b;
    --gold: #d4a574;
    --light-gold: #e6c89c;
    --royal-blue: #2d3e50;
    --slate-accent: #3d4f5d;
    --white: #ffffff;
    --light-gray: #f5f5f7;
    --medium-gray: #8b95a1;
    --dark-gray: #4b5563;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
    --gradient-dark: linear-gradient(135deg, #0f1419 0%, #1c2128 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-orange: 0 10px 40px rgba(255, 107, 53, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--primary-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
}
/* ===================================
   LUXURY ABOUT US STYLES
   Greywolf Bus - Premium Design
   =================================== */

:root {
    --primary-gold: #D4AF37;
    --primary-dark: #1a1a1a;
    --primary-light: #f8f8f8;
    --accent-gold: #B8960F;
    --text-primary: #2c2c2c;
    --text-secondary: #666;
    --white: #ffffff;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-hard: 0 30px 80px rgba(0, 0, 0, 0.15);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section-modern {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title-modern {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.highlight-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle-modern {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-weight: 400;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hard);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: 20px;
    z-index: -1;
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    transition: transform 0.6s ease;
}

.hero-image:hover .hero-image-frame img {
    transform: scale(1.05);
}

/* ===================================
   ABOUT OVERVIEW SECTION
   =================================== */

.about-overview-section {
    padding: 120px 0;
    background: var(--white);
}

.about-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-images:hover .about-image-main img {
    transform: scale(1.05);
}

.about-image-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--gradient-gold);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.15;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 40px;
    background: var(--gradient-dark);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-hard);
    text-align: center;
    z-index: 3;
    border: 2px solid var(--primary-gold);
}

.badge-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content-modern {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-content-modern.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-label-modern {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: inline-block;
}

.section-title-modern {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.about-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.features-modern {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-modern {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--primary-light);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.feature-modern:hover {
    background: var(--white);
    border-color: var(--primary-gold);
    transform: translateX(10px);
    box-shadow: var(--shadow-soft);
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.feature-icon-wrapper img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   VISION MISSION SECTION
   =================================== */

.vision-mission-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.section-header-modern {
    margin-bottom: 70px;
}

.section-header-modern.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 15px;
}

.vision-mission-tabs {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.tab-nav {
    display: flex;
    background: var(--primary-light);
    padding: 8px;
    gap: 8px;
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 30px;
    background: transparent;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn i {
    font-size: 20px;
}

.tab-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.tab-content-wrapper {
    padding: 60px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.6s ease;
}

.tab-content.active {
    display: block;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-text h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.tab-text h4 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.tab-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.vision-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vision-points li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.vision-points i {
    color: var(--primary-gold);
    font-size: 20px;
}

.tab-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.tab-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    z-index: 1;
}

.tab-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.tab-image:hover .tab-image-frame img {
    transform: scale(1.08);
}

/* ===================================
   VALUES SECTION
   =================================== */

.values-section {
    padding: 120px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: var(--primary-light);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.value-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    background: var(--white);
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(360deg);
}

.value-icon i {
    font-size: 32px;
    color: var(--white);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   STATS SECTION
   =================================== */

.stats-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 24px;
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   CTA SECTION
   =================================== */

.dual-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.dual-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.cta-banner {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.cta-banner:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.cta-banner-content {
    padding: 50px 40px;
    text-align: center;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-icon i {
    font-size: 32px;
    color: var(--white);
}

.cta-banner-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.cta-banner-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-modern {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary-modern {
    background: var(--gradient-dark);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1200px) {
    .hero-title-modern {
        font-size: 48px;
    }
    
    .section-title-modern {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .hero-grid,
    .about-grid-modern,
    .tab-grid,
    .dual-cta-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .hero-title-modern {
        font-size: 42px;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section-modern {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-title-modern {
        font-size: 36px;
    }
    
    .hero-subtitle-modern {
        font-size: 16px;
    }
    
    .section-title-modern {
        font-size: 28px;
    }
    
    .about-overview-section,
    .vision-mission-section,
    .values-section {
        padding: 80px 0;
    }
    
    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-content-wrapper {
        padding: 40px 30px;
    }
    
    .tab-btn {
        font-size: 14px;
        padding: 15px 20px;
    }
    
    .tab-btn span {
        display: none;
    }
    
    .feature-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner-content {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 28px;
    }
    
    .section-title-modern {
        font-size: 24px;
    }
    
    .about-image-accent {
        display: none;
    }
    
    .experience-badge {
        position: static;
        margin-top: 20px;
    }
}