/* =====================================================
   Genesis International Limited - Modern Design System
   ===================================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #0066cc;
    --primary-dark: #004c99;
    --primary-light: #3385d6;
    --secondary: #ff6b35;
    --accent: #00d4aa;
    
    --dark: #1a1a2e;
    --dark-light: #2a2a3e;
    --gray: #6c757d;
    --gray-light: #f8f9fa;
    --white: #ffffff;
    
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #00d4aa 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 102, 204, 0.95) 0%, rgba(0, 212, 170, 0.95) 100%);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--white);
    font-size: 1.1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h4 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.125rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-lg {
    padding: 1.375rem 3rem;
    font-size: 1.25rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    align-items: flex-start;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--dark);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-primary-nav {
    padding: 0.75rem 1.75rem;
    font-size: 1.05rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-nav::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    transform: rotate(-15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 500px;
    margin: 0 auto;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

.hero-image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
}

.hero-image-badge i {
    color: var(--primary);
    font-size: 1.5rem;
}

.hero-image-badge span {
    font-weight: 600;
    color: var(--dark);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Mission & Vision */
.mission-vision {
    padding: var(--space-xl) 0;
    background: var(--white);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: var(--gray-light);
    padding: 3rem;
    border-radius: 20px;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.mv-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mv-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.mv-text {
    color: var(--gray);
    line-height: 1.8;
}

/* Sections */
.services, .why-choose, .process, .cta {
    padding: var(--space-xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.8;
}

/* Services */
.services {
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.service-card.featured .service-title,
.service-card.featured .service-description,
.service-card.featured .service-features li {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card.featured .service-icon i {
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.service-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--gray);
    font-size: 1.05rem;
}

.service-features i {
    color: var(--accent);
    font-size: 0.875rem;
}

.service-card.featured .service-features i {
    color: var(--white);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.service-card.featured .service-link {
    color: var(--white);
}

.service-link:hover {
    gap: 1rem;
}

/* Why Choose */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-description {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-feature {
    display: flex;
    gap: 1.5rem;
}

.why-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.why-feature-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.why-feature-content p {
    color: var(--gray);
    line-height: 1.6;
}

.why-choose-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-choose-image img {
    width: 100%;
    height: auto;
}

.image-stats {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.image-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1;
}

.image-stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* Process */
.process {
    background: var(--gray-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    position: absolute;
    top: -1rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--gray-light);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.process-icon i {
    font-size: 2rem;
    color: var(--white);
}

.process-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-description {
    color: var(--gray);
    line-height: 1.6;
}

/* CTA */
.cta {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

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

.cta-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-subtitle {
    color: var(--gray);
}

.footer-description {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.footer-links a {
    color: var(--gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact li {
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--dark-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--gray);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn, .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

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

.page-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.page-title {
    margin-bottom: 1.5rem;
}

.page-description {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.8;
}

/* Program Detail Sections */
.program-detail {
    padding: var(--space-xl) 0;
}

.program-detail.alternate {
    background: var(--gray-light);
}

.program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.program-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 550px;
}

.program-image img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: cover;
}

.program-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
}

.program-badge i {
    color: var(--primary);
    font-size: 1.25rem;
}

.program-badge.vip-badge {
    background: var(--gradient-primary);
    color: var(--white);
}

.program-badge.vip-badge i {
    color: var(--white);
}

.program-icon-lg {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.program-icon-lg.vip {
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
}

.program-icon-lg i {
    font-size: 3rem;
    color: var(--white);
}

.program-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.program-intro {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Program Formats */
.program-formats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.format-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
}

.format-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.format-card.featured-format {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    transform: scale(1.05);
}

.format-card.featured-format h4,
.format-card.featured-format p,
.format-card.featured-format li {
    color: var(--white);
}

.format-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.format-card.featured-format i {
    color: var(--white);
}

.format-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.format-card p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.format-card ul {
    list-style: none;
    padding: 0;
}

.format-card li {
    padding: 0.5rem 0;
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.format-card li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
}

.format-card.featured-format li::before {
    color: var(--white);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Program Outcomes */
.program-outcomes {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.program-outcomes h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.outcome-item i {
    color: var(--accent);
    font-size: 1.25rem;
}

/* VIP Benefits */
.vip-benefits {
    margin-bottom: 3rem;
}

.vip-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-list {
    display: grid;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 15px;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.benefit-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Session Process */
.session-process {
    margin-bottom: 3rem;
}

.session-process h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Consulting Packages */
.consulting-packages {
    margin-bottom: 3rem;
}

.consulting-packages h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.package-card {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured-package {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.02);
}

.package-card.featured-package h4,
.package-card.featured-package .price,
.package-card.featured-package .period,
.package-card.featured-package li,
.package-card.featured-package p {
    color: var(--white);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.package-card.featured-package .package-header {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.package-header h4 {
    font-size: 1.5rem;
    margin: 0;
}

.package-price {
    text-align: right;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
}

.period {
    font-size: 1rem;
    color: var(--gray);
}

.package-features {
    margin-bottom: 1.5rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--dark);
}

.package-features i {
    color: var(--accent);
    font-size: 1rem;
}

.package-card.featured-package .package-features i {
    color: var(--white);
}

.package-ideal {
    font-style: italic;
    color: var(--gray);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.package-card.featured-package .package-ideal {
    border-top-color: rgba(255, 255, 255, 0.3);
}

/* Consulting Areas */
.consulting-areas {
    margin-bottom: 3rem;
}

.consulting-areas h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.expertise-item {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: var(--transition);
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.expertise-item i {
    font-size: 2rem;
    color: var(--primary);
}

.expertise-item span {
    font-weight: 600;
}

/* Program CTA */
.program-cta {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--gray-light);
}

.program-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    color: var(--gray);
}

.program-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-meta i {
    color: var(--primary);
}

/* Comparison Section */
.comparison-section {
    padding: var(--space-xl) 0;
    background: var(--white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    box-shadow: var(--shadow-lg);
    border-radius: 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.comparison-table thead {
    background: var(--gradient-primary);
    color: var(--white);
}

.comparison-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.125rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--gray-light);
}

.comparison-table tbody tr:hover {
    background: var(--gray-light);
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--dark);
}

.comparison-table i.fa-star {
    color: #ffd700;
}

.comparison-table i.fa-check {
    color: var(--accent);
    font-size: 1.25rem;
}

.comparison-table i.fa-times {
    color: var(--gray);
    font-size: 1.25rem;
}

/* About Page Styles */
.story-section {
    padding: var(--space-xl) 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-image img {
    width: 100%;
    height: auto;
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.mission-vision-large {
    padding: var(--space-xl) 0;
    background: var(--gray-light);
}

.mv-large-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-large-card {
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.mv-large-card.mission-card {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: var(--white);
}

.mv-large-card.vision-card {
    background: linear-gradient(135deg, #00d4aa 0%, #00a885 100%);
    color: var(--white);
}

.mv-large-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mv-large-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mv-large-icon i {
    font-size: 3rem;
    color: var(--white);
}

.mv-large-card h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mv-large-card p {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
}

.values-section {
    padding: var(--space-xl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--gray-light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray);
    line-height: 1.8;
}

.approach-section {
    padding: var(--space-xl) 0;
    background: var(--gray-light);
}

.approach-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.approach-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.approach-number {
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.approach-card h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.approach-card p {
    color: var(--gray);
    line-height: 1.8;
}

.stats-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, #003a7a 0%, #0066cc 55%, #0a8fa0 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
    color: var(--white);
}

.stat-card .stat-icon {
    width: 76px;
    height: 76px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.stat-card .stat-icon i {
    font-size: 2rem;
    color: var(--white);
}

.stat-card .stat-number {
    font-size: 3.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    line-height: 1.05;
}

.stat-card .stat-label {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
    opacity: 1;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.testimonials-section {
    padding: var(--space-xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-image i {
    font-size: 1.5rem;
    color: var(--white);
}

.author-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--dark);
}

.author-title {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Contact Page Styles */
.contact-section {
    padding: var(--space-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper {
    background: var(--white);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.form-header p {
    color: var(--gray);
    font-size: 1.125rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.required {
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.form-note i {
    color: var(--accent);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card,
.quick-links-card,
.social-card {
    background: var(--gray-light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
}

.contact-info-card h3,
.quick-links-card h3,
.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-info-card p,
.social-card p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.info-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.info-content a {
    color: var(--primary);
    font-weight: 600;
}

.info-content a:hover {
    text-decoration: underline;
}

.info-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-links li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    background: var(--white);
    border-radius: 10px;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

.quick-links li a:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.quick-links li a i {
    color: var(--primary);
    font-size: 1.125rem;
    width: 24px;
}

.social-links-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--primary);
}

.social-link i {
    font-size: 1.25rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--space-xl) 0;
    background: var(--gray-light);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.125rem;
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
    font-size: 1.25rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

/* Services Page Styles */
.services-overview {
    padding: var(--space-lg) 0;
}

.services-intro p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-approach {
    padding: var(--space-xl) 0;
    background: var(--gray-light);
}

.approach-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-lg);
}

.step-line {
    width: 3px;
    flex: 1;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--accent) 100%);
    margin-top: 1rem;
}

.step-item:last-child .step-line {
    display: none;
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray);
}

.industries-section {
    padding: var(--space-xl) 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: var(--gray-light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary);
    color: var(--white);
}

.industry-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.industry-card:hover i {
    color: var(--white);
}

.industry-card h4 {
    font-size: 1.125rem;
    margin: 0;
}

/* Video Gallery Page Styles */
.gallery-filters {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 2px solid var(--gray-light);
    position: sticky;
    top: 73px;
    z-index: 100;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--gray-light);
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.filter-tab i {
    font-size: 1.125rem;
}

.featured-video-section {
    padding: var(--space-lg) 0;
    background: var(--gray-light);
}

.featured-video-wrapper {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.featured-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.featured-video-info {
    padding: 2.5rem;
}

.featured-video-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.featured-video-info p {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.video-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--gray);
    font-size: 0.95rem;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-meta i {
    color: var(--primary);
}

.video-gallery-section {
    padding: var(--space-xl) 0;
}

.gallery-category {
    margin-bottom: 5rem;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.category-title i {
    color: var(--primary);
    font-size: 1.75rem;
}

.category-description {
    font-size: 1.125rem;
    color: var(--gray);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.video-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    cursor: pointer;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    font-size: 4rem;
    color: var(--white);
    transform: scale(0.8);
    transition: var(--transition);
}

.video-card:hover .video-overlay i {
    transform: scale(1);
}

.video-info {
    padding: 1.5rem;
}

.video-category {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.video-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.video-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-info .video-meta {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
    font-size: 0.875rem;
}

.upload-guide-section {
    padding: var(--space-lg) 0;
    background: var(--gray-light);
}

.upload-guide-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.upload-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.upload-icon i {
    font-size: 3rem;
    color: var(--white);
}

.upload-guide-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.upload-guide-card p {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Filter Animation */
.video-card.hidden {
    display: none;
}

.video-card.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive - Gallery Page */
@media (max-width: 968px) {
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    
    .filter-tab {
        flex-shrink: 0;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .category-title {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-video-info {
        padding: 1.5rem;
    }
    
    .featured-video-info h2 {
        font-size: 1.5rem;
    }
    
    .video-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .upload-guide-card {
        padding: 2rem 1.5rem;
    }
    
    .upload-guide-card h3 {
        font-size: 1.5rem;
    }
}

/* Responsive - Services Page */
@media (max-width: 968px) {
    .step-item {
        grid-template-columns: 80px 1fr;
        gap: 1.5rem;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-line {
        display: none;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive - Contact Page */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-links-large {
        grid-template-columns: 1fr;
    }
}

/* Responsive - About Page */
@media (max-width: 968px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mv-large-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive - Programs Page */
@media (max-width: 968px) {
    .program-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .program-detail.alternate .program-image {
        order: -1;
    }
    
    .program-formats {
        grid-template-columns: 1fr;
    }
    
    .format-card.featured-format {
        transform: none;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-table-wrapper {
        border-radius: 10px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .program-title {
        font-size: 2rem;
    }
    
    .program-intro {
        font-size: 1.125rem;
    }
    
    .program-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .package-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        position: sticky;
        left: 0;
        background: var(--white);
        z-index: 1;
    }
    
    .comparison-table thead th:first-child {
        background: var(--primary);
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ── AOS Fallback: ensure content is always visible if JS is slow/blocked ── */
/* Once AOS loads it overrides this via .aos-animate */
@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
