/* ===================================
   CIRA Education - Premium Redesign
   Inspired by GEMS, Cognita, Nord Anglia, Inspired
   =================================== */

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

:root {
    /* CIRA Brand Colors */
    --primary-burgundy: #703845;
    --secondary-burgundy: #8B4655;
    --light-burgundy: #F5E6E9;
    --accent-gold: #D4A574;
    --dark-burgundy: #5A2D38;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FAF8F7;
    --light-gray: #F5F3F2;
    --medium-gray: #8B8B8B;
    --dark-gray: #3D3D3D;
    --black: #1A1A1A;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #703845 0%, #8B4655 100%);
    --gradient-accent: linear-gradient(135deg, #D4A574 0%, #E5C49A 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', sans-serif;

    /* 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-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    transition: opacity 0.15s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 45px;
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition-base);
    position: relative;
}

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

.nav-links a:hover {
    color: var(--primary-burgundy);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.nav-cta::after {
    display: none !important;
}

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

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 0.75rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    border: 1px solid rgba(112, 56, 69, 0.08);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 0.75rem);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 60%;
    background: var(--gradient-primary);
    border-radius: 0 4px 4px 0;
    transition: width 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--light-burgundy);
    color: var(--primary-burgundy);
    padding-left: 2rem;
}

.dropdown-menu a:hover::before {
    width: 4px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: rgba(112, 56, 69, 0.08);
    padding: 0.25rem;
    border-radius: 50px;
    border: 1px solid rgba(112, 56, 69, 0.15);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: var(--dark-gray);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.lang-btn svg {
    color: var(--primary-burgundy);
    opacity: 0.7;
}

.lang-btn:hover {
    color: var(--primary-burgundy);
}

.lang-btn.active {
    background: white;
    color: var(--primary-burgundy);
    box-shadow: 0 2px 8px rgba(112, 56, 69, 0.15);
}

.lang-btn.active svg {
    opacity: 1;
}

.navbar.scrolled .language-switcher {
    background: rgba(112, 56, 69, 0.06);
}

.nav-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-burgundy);
    transition: var(--transition-base);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(112, 56, 69, 0.75) 0%, rgba(139, 70, 85, 0.70) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--spacing-md);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #D4A574 0%, #E5C49A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

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

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 18px;
}

.scroll-prompt {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-prompt:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%) scale(1.1);
}

.scroll-prompt svg {
    color: white;
    opacity: 0.9;
}

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

/* ===================================
   Quick Access Cards
   =================================== */
.quick-access {
    padding: var(--spacing-lg) 0;
    margin-top: calc(var(--spacing-lg) * -1);
    position: relative;
    z-index: 10;
}

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

.access-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    text-align: center;
}

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

.access-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--light-burgundy);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
    transition: all var(--transition-base);
}

.access-card:hover .access-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.access-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.access-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.access-link {
    color: var(--primary-burgundy);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.access-link:hover {
    gap: 8px;
}

/* ===================================
   CIRA in Numbers Carousel Section (GEMS-Inspired)
   =================================== */
.numbers-section {
    padding: var(--spacing-2xl) 0;
    background: var(--light-gray);
    overflow: hidden;
}

.container-full {
    max-width: 100%;
    padding: 0 var(--spacing-md);
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header.centered {
    text-align: center;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--dark-gray);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

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

.number-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
}

.number-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-burgundy);
}

.number-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--primary-burgundy);
    opacity: 0.8;
}

.number-value {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.number-percent {
    font-size: 2.5rem;
}

.number-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.number-detail {
    font-size: 0.9375rem;
    color: var(--medium-gray);
}

/* ===================================
   GEMS-Inspired Carousel
   =================================== */
.numbers-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 4rem;
}

.numbers-carousel {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: flex-end;
}

.carousel-slide {
    flex: 0 0 350px;
    transition: all 0.4s ease;
}

/* Asymmetric Layout Heights */
.carousel-slide.layout-tall {
    height: 450px;
}

.carousel-slide.layout-tall .number-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.carousel-slide.layout-medium {
    height: 380px;
}

.carousel-slide.layout-medium .number-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-slide.layout-short {
    height: 300px;
}

.carousel-slide.layout-short .number-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Card with Background */
.number-card.has-bg {
    position: relative;
    overflow: hidden;
    color: white;
}

.number-card.has-bg .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--secondary-burgundy) 100%);
    z-index: 0;
}

.number-card.has-bg .card-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.number-card.has-bg > * {
    position: relative;
    z-index: 1;
}

.number-card.has-bg .number-value {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.number-card.has-bg .number-label {
    color: white;
}

.number-card.has-bg .number-detail {
    color: rgba(255, 255, 255, 0.85);
}

.number-card.has-bg .number-icon {
    color: var(--accent-gold);
    opacity: 1;
}

/* Corner Arrow */
.number-corner {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.number-card:hover .number-corner {
    background: rgba(255, 255, 255, 0.2);
    transform: translate(3px, -3px);
}

.number-corner svg {
    width: 20px;
    height: 20px;
    color: white;
}

/* Read More Link */
.number-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
}

.number-card.has-bg .number-link {
    color: white;
}

.number-link:hover {
    gap: 1rem;
    opacity: 0.8;
}

.number-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.number-link:hover svg {
    transform: translateX(4px);
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--primary-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.carousel-nav:hover {
    background: var(--primary-burgundy);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    color: var(--primary-burgundy);
    transition: color 0.3s ease;
}

.carousel-nav:hover svg {
    color: white;
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-burgundy);
    opacity: 1;
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:hover {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .numbers-carousel-container {
        padding: 2rem 1rem;
    }

    .carousel-slide {
        flex: 0 0 280px;
    }

    .carousel-slide.layout-tall {
        height: 400px;
    }

    .carousel-slide.layout-medium {
        height: 340px;
    }

    .carousel-slide.layout-short {
        height: 280px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        right: 0;
    }
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: var(--spacing-2xl) 0;
}

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

.about-image {
    position: relative;
}

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

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

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

.badge-text {
    display: block;
    font-size: 0.875rem;
    color: var(--medium-gray);
    font-weight: 600;
    margin-top: 0.5rem;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 60px;
    right: -50px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 60px;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.card-icon {
    font-size: 2rem;
}

.card-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-burgundy);
    line-height: 1;
}

.card-label {
    font-size: 0.875rem;
    color: var(--medium-gray);
    font-weight: 600;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.feature-item span {
    font-weight: 500;
    color: var(--dark-gray);
}

/* ===================================
   Brands Section
   =================================== */
.brands-section {
    padding: var(--spacing-2xl) 0;
    background: var(--light-gray);
}

.brand-category {
    margin-bottom: var(--spacing-xl);
}

.category-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    text-align: center;
}

.brand-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.brand-item {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.brand-visual {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.brand-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.brand-item:hover .brand-bg {
    transform: scale(1.1);
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(112, 56, 69, 0.3) 0%, rgba(112, 56, 69, 0.85) 100%);
}

.brand-content {
    padding: 2.5rem;
}

.brand-logo-placeholder {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.brand-description {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.brand-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    font-size: 0.9375rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.brand-link {
    color: var(--primary-burgundy);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.brand-link:hover {
    color: var(--accent-gold);
}

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

.brand-grid.smaller {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.brand-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.brand-card-icon {
    width: 70px;
    height: 70px;
    background: var(--light-burgundy);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: all var(--transition-base);
}

.brand-card:hover .brand-card-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.brand-card-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.brand-card-desc {
    color: var(--medium-gray);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.brand-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-tag {
    background: var(--light-burgundy);
    color: var(--primary-burgundy);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.card-arrow {
    width: 40px;
    height: 40px;
    background: var(--light-burgundy);
    color: var(--primary-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all var(--transition-base);
}

.brand-card:hover .card-arrow {
    background: var(--gradient-primary);
    color: white;
}

/* ===================================
   Community Section
   =================================== */
.community-section {
    padding: var(--spacing-2xl) 0;
}

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

.community-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.community-stat {
    text-align: center;
    padding: 2rem;
    background: var(--light-burgundy);
    border-radius: 20px;
}

.community-stat .stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.community-stat .stat-number span {
    font-size: 2rem;
}

.community-stat .stat-text {
    color: var(--medium-gray);
    font-weight: 600;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.visual-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.visual-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.visual-item:hover img {
    transform: scale(1.1);
}

.visual-item.item-1 {
    grid-column: 1 / 3;
    height: 300px;
}

.visual-item.item-2,
.visual-item.item-3 {
    height: 220px;
}

/* ===================================
   Investor Section
   =================================== */
.investor-section {
    padding: var(--spacing-2xl) 0;
    background: var(--light-gray);
}

.investor-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding: 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.investor-header-content h2 {
    margin-bottom: 1rem;
}

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

.stock-display {
    text-align: center;
    padding: 2rem;
    background: var(--light-burgundy);
    border-radius: 20px;
}

.stock-ticker {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ticker-label {
    font-size: 0.875rem;
    color: var(--medium-gray);
    font-weight: 600;
}

.ticker-symbol {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-burgundy);
}

.stock-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-gray);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stock-change {
    font-size: 1.125rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.stock-change.positive {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.stock-change.negative {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

.stock-time {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.investor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.investor-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.card-badge {
    background: var(--light-burgundy);
    color: var(--primary-burgundy);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.performance-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.performance-metric:last-of-type {
    border-bottom: none;
}

.metric-label {
    color: var(--medium-gray);
    font-weight: 500;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
}

.metric-value.positive {
    color: #16a34a;
}

.metric-value.negative {
    color: #dc2626;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all var(--transition-base);
}

.result-item:hover {
    background: var(--light-burgundy);
}

.result-icon {
    font-size: 1.5rem;
}

.result-text {
    font-weight: 500;
    color: var(--dark-gray);
}

.card-text {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.card-link {
    color: var(--primary-burgundy);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.card-link:hover {
    color: var(--accent-gold);
}

.investor-cta {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    box-shadow: var(--shadow-lg);
}

.cta-content {
    color: white;
}

.cta-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-burgundy);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-logo {
    height: 45px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 350px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-col h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-base);
}

.footer-col a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: white;
}

/* ===================================
   Animations
   =================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll-triggered animations */
.animated {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .about-grid,
    .community-grid,
    .investor-header {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .floating-card {
        position: relative;
        top: auto;
        bottom: auto;
        right: auto;
        display: inline-flex;
        margin-top: 1rem;
    }

    .brand-showcase {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .investor-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-menu-toggle {
        display: flex;
    }

    .language-switcher {
        position: absolute;
        top: 80px;
        right: 1rem;
        z-index: 1000;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

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

    .scroll-prompt {
        bottom: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-prompt svg {
        width: 20px;
        height: 20px;
    }

    .access-grid {
        grid-template-columns: 1fr;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .brand-grid {
        grid-template-columns: 1fr;
    }

    .community-stats {
        grid-template-columns: 1fr;
    }

    .visual-grid {
        grid-template-columns: 1fr;
    }

    .visual-item.item-1,
    .visual-item.item-2,
    .visual-item.item-3 {
        grid-column: 1;
        height: 250px;
    }

    .investor-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.desktop-only {
    display: initial;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
}

/* ===================================
   Who We Are Page Styles
   =================================== */

/* Page Hero */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--secondary-burgundy) 100%);
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.hero-decoration {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* Stats Overview */
.stats-overview {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

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

.stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-burgundy);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--primary-burgundy);
    opacity: 0.9;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.stat-detail {
    font-size: 0.9375rem;
    color: var(--medium-gray);
}

/* Academic Performance */
.academic-performance {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: var(--spacing-lg);
}

.performance-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.performance-card:hover {
    border-color: var(--primary-burgundy);
    box-shadow: var(--shadow-lg);
}

.performance-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.performance-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.performance-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.performance-comparison {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.comparison-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-bar {
    position: relative;
    height: 40px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    color: white;
    font-weight: 700;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.comparison-bar.secondary .bar-fill {
    background: linear-gradient(90deg, #8B8B8B 0%, #A5A5A5 100%);
}

.comparison-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-burgundy);
}

.performance-badge {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-accent);
    color: var(--dark-gray);
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    font-size: 0.9375rem;
}

/* Brand Showcase Sections */
.brands-section {
    padding: var(--spacing-2xl) 0;
}

.universities-section {
    background: var(--off-white);
}

.schools-section {
    background: white;
}

.nurseries-section {
    background: var(--light-gray);
}

.brand-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-lg);
}

.brand-showcase-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
}

.brand-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-burgundy);
}

.brand-logo-container {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    padding: 1.5rem;
}

.brand-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.brand-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.meta-item svg {
    color: var(--primary-burgundy);
}

.brand-info p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* School Brands Grid */
.school-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.school-brand-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.school-brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-burgundy);
}

.school-brand-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    padding: 1rem;
}

.school-brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.school-brand-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.school-brand-card p {
    font-size: 0.875rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Curricula Highlight */
.curricula-highlight {
    margin-top: var(--spacing-lg);
    padding: 2.5rem;
    background: var(--gradient-primary);
    border-radius: 24px;
    text-align: center;
}

.curricula-highlight h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.curricula-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.curricula-badge {
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary-burgundy);
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.9375rem;
}

/* Nursery Grid */
.nursery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-lg);
}

.nursery-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nursery-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-burgundy);
    box-shadow: var(--shadow-lg);
}

.nursery-logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    padding: 1rem;
}

.nursery-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nursery-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.nursery-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.nursery-highlight {
    background: var(--gradient-primary);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nursery-highlight .highlight-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.nursery-highlight .highlight-icon svg {
    color: white;
}

.nursery-highlight h4 {
    color: white;
}

.nursery-highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.launch-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-gold);
    color: var(--dark-gray);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* ESI Section */
.esi-section {
    padding: var(--spacing-2xl) 0;
    background: white;
}

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

.large-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
}

.esi-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--light-burgundy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

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

.esi-stats-card {
    background: var(--gradient-primary);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.esi-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.esi-stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.esi-stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

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

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
}

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

/* Responsive - Who We Are */
@media (max-width: 1024px) {
    .performance-grid {
        grid-template-columns: 1fr;
    }

    .esi-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .brand-showcase-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 80px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .performance-grid {
        grid-template-columns: 1fr;
    }

    .school-brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .nursery-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ===================================
   Our Edge Page Styles
   =================================== */

/* Edge Hero */
.edge-hero {
    position: relative;
    overflow: hidden;
}

.edge-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

/* Edge Overview Cards */
.edge-overview {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

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

.edge-overview-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    overflow: hidden;
}

.edge-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

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

.edge-overview-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-burgundy);
}

.edge-card-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--light-burgundy);
    line-height: 1;
    opacity: 0.5;
}

.edge-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--primary-burgundy);
}

.edge-card-icon svg {
    width: 100%;
    height: 100%;
}

.edge-overview-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.edge-overview-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Edge Detail Sections */
.edge-detail {
    padding: var(--spacing-2xl) 0;
}

.edge-detail-1 {
    background: white;
}

.edge-detail-2 {
    background: var(--light-gray);
}

.edge-detail-3 {
    background: white;
}

.edge-detail-4 {
    background: var(--off-white);
}

.edge-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.edge-detail-content.reverse {
    direction: rtl;
}

.edge-detail-content.reverse > * {
    direction: ltr;
}

.edge-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-accent);
    color: var(--dark-gray);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.edge-detail-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--dark-gray);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.edge-detail-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
}

/* Edge Highlights */
.edge-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.edge-detail-2 .highlight-item,
.edge-detail-4 .highlight-item {
    background: white;
}

.highlight-item:hover {
    background: var(--light-burgundy);
    transform: translateX(8px);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.375rem;
}

.highlight-item p {
    font-size: 0.9375rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* Visual Cards */
.visual-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--light-burgundy);
}

.edge-detail-2 .visual-card,
.edge-detail-4 .visual-card {
    background: var(--light-gray);
}

/* Integrated Diagram */
.integrated-diagram {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.diagram-layer {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
}

.edge-detail-2 .diagram-layer,
.edge-detail-4 .diagram-layer {
    background: white;
}

.layer-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.layer-bar {
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.layer-bar:hover {
    transform: scaleX(0.98);
}

.diagram-connector {
    width: 2px;
    height: 20px;
    background: var(--primary-burgundy);
    margin: 0 auto;
}

.integrated-total {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-primary);
    border-radius: 16px;
}

.total-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.total-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

/* Quality Metrics */
.quality-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.metric-item {
    text-align: center;
}

.metric-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.metric-progress {
    transform: rotate(-90deg);
}

.progress-ring {
    transition: stroke-dashoffset 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.metric-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-burgundy);
}

.metric-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.metric-comparison {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.quality-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gradient-accent);
    border-radius: 12px;
    color: var(--dark-gray);
    font-weight: 700;
}

.quality-badge svg {
    color: var(--primary-burgundy);
}

/* Market Stats */
.market-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.market-stat-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.market-stat-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.stat-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--light-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
    flex-shrink: 0;
}

.market-stat-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.market-stat-card p {
    font-size: 0.9375rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Market Chart */
.market-chart {
    height: 250px;
    margin-bottom: 1.5rem;
}

.market-insight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: white;
}

.insight-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.market-insight p {
    font-weight: 600;
    line-height: 1.6;
    color: white;
}

/* Value Chain Flow */
.value-chain-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.chain-step {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--light-gray);
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.edge-detail-2 .chain-step,
.edge-detail-4 .chain-step {
    background: white;
}

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

.step-number {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--primary-burgundy);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.chain-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.chain-step p {
    font-size: 0.8125rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

.chain-arrow {
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    font-weight: 700;
}

.value-chain-benefit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.benefit-stat {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-primary);
    border-radius: 16px;
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.benefit-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive - Our Edge */
@media (max-width: 1024px) {
    .edge-detail-content,
    .edge-detail-content.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
        direction: ltr;
    }

    .value-chain-flow {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .chain-arrow {
        transform: rotate(90deg);
        text-align: center;
    }

    .quality-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .edge-cards-grid {
        grid-template-columns: 1fr;
    }

    .edge-detail {
        padding: var(--spacing-lg) 0;
    }

    .edge-detail-title {
        font-size: 1.75rem;
    }

    .value-chain-benefit {
        grid-template-columns: 1fr;
    }

    .market-stats {
        gap: 1rem;
    }

    .visual-card {
        padding: 1.5rem;
    }
}

/* ===================================
   Our Strategy Page Styles
   =================================== */

/* Strategy Hero with Orbits */
.strategy-hero {
    position: relative;
    overflow: visible;
}

.strategy-hero-visual {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 1;
}

.strategy-orbits {
    position: relative;
    width: 300px;
    height: 300px;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbit-rotate 20s linear infinite;
}

.orbit-1 {
    width: 280px;
    height: 280px;
    animation-duration: 15s;
}

.orbit-2 {
    width: 200px;
    height: 200px;
    animation-duration: 20s;
}

.orbit-3 {
    width: 120px;
    height: 120px;
    animation-duration: 25s;
}

@keyframes orbit-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Strategic Foundation */
.strategy-foundation {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.foundation-content {
    text-align: center;
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--dark-gray);
    max-width: 900px;
    margin: 0 auto 3rem;
}

.foundation-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.foundation-stat-card {
    background: var(--light-gray);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.foundation-stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-burgundy);
    box-shadow: var(--shadow-lg);
}

.stat-icon-large {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--primary-burgundy);
}

.stat-icon-large svg {
    width: 100%;
    height: 100%;
}

.foundation-stat-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.foundation-stat-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Pillars Overview */
.pillars-overview {
    padding: var(--spacing-2xl) 0;
    background: var(--off-white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.pillar-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

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

.pillar-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-burgundy);
}

.pillar-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--light-burgundy);
    opacity: 0.4;
}

.pillar-icon-wrapper {
    margin-bottom: 1.5rem;
}

.pillar-icon {
    width: 72px;
    height: 72px;
    background: var(--light-burgundy);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-primary);
    color: white;
}

.pillar-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.pillar-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-burgundy);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.pillar-link svg {
    transition: transform 0.3s ease;
}

.pillar-link:hover svg {
    transform: translateX(4px);
}

/* Strategy Pillar Sections */
.strategy-pillar {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.strategy-pillar.pillar-alt {
    background: var(--light-gray);
}

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

.pillar-content.reverse {
    direction: rtl;
}

.pillar-content.reverse > * {
    direction: ltr;
}

.pillar-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-accent);
    color: var(--dark-gray);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.pillar-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--dark-gray);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

/* Utilization Metrics */
.utilization-metrics {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.pillar-alt .utilization-metrics {
    background: white;
}

.utilization-metrics h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.metric-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-bar-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-burgundy);
}

.metric-bar-track {
    height: 12px;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.pillar-alt .metric-bar-track {
    background: var(--light-gray);
}

.metric-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 6px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.metric-detail {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

/* Leadership Visual */
.leadership-visual {
    background: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
}

.leadership-circle {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 2rem;
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.center-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    color: var(--primary-burgundy);
}

.center-icon svg {
    width: 100%;
    height: 100%;
}

.center-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.leadership-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.leader-stat {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
}

.stat-number-large {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-small {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--medium-gray);
}

/* University Expansion Timeline */
.university-expansion-visual {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.expansion-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expansion-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: var(--light-burgundy);
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.timeline-year {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.timeline-item.active .timeline-year {
    box-shadow: 0 0 0 8px rgba(112, 56, 69, 0.2);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0%, 100% { box-shadow: 0 0 0 8px rgba(112, 56, 69, 0.2); }
    50% { box-shadow: 0 0 0 16px rgba(112, 56, 69, 0.05); }
}

.timeline-content {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-content {
    background: var(--light-burgundy);
}

.timeline-content:hover {
    transform: translateX(8px);
}

.timeline-logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 8px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.timeline-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.9375rem;
    color: var(--medium-gray);
}

/* SEU Highlight */
.seu-highlight {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.pillar-alt .seu-highlight {
    background: white;
}

.seu-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.seu-logo-inline {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: white;
    padding: 0.75rem;
    border-radius: 12px;
}

.seu-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.seu-tagline {
    color: var(--primary-burgundy);
    font-weight: 600;
}

.seu-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.seu-feature {
    text-align: center;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
}

.pillar-alt .seu-feature {
    background: var(--light-gray);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-burgundy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.feature-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.seu-programs h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.program-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.program-badge {
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid var(--light-burgundy);
    color: var(--primary-burgundy);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.pillar-alt .program-badge {
    background: var(--light-gray);
}

.program-badge:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-burgundy);
    transform: translateY(-2px);
}

/* Geographic Expansion Targets */
.expansion-targets {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.target-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.target-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.target-icon {
    width: 64px;
    height: 64px;
    background: var(--light-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
    flex-shrink: 0;
}

.target-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.target-card p {
    font-size: 0.9375rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Map Visual */
.map-visual {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 24px;
}

.map-container {
    position: relative;
    width: 400px;
    height: 500px;
    margin: 0 auto;
}

.map-svg {
    width: 100%;
    height: 100%;
}

.map-marker {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--primary-burgundy);
    border-radius: 50%;
    opacity: 0.3;
    animation: marker-pulse 2s infinite;
}

@keyframes marker-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.marker-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--primary-burgundy);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: var(--shadow-md);
}

.marker-1 { top: 30%; left: 60%; }
.marker-2 { top: 25%; left: 20%; }
.marker-3 { top: 35%; left: 40%; }
.marker-4 { top: 32%; left: 75%; }
.marker-5 { top: 70%; left: 55%; }

.map-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.map-stat {
    text-align: center;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
}

.map-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-burgundy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.map-stat-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark-gray);
}

/* Services Diversification Bubbles */
.diversification-visual {
    background: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 24px;
    min-height: 400px;
}

.service-bubbles {
    position: relative;
    width: 100%;
    height: 400px;
}

.service-bubble {
    position: absolute;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1.5rem;
    text-align: center;
}

.service-bubble:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.bubble-large {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-primary);
    color: white;
}

.bubble-large .bubble-label {
    color: white;
}

.bubble-medium {
    width: 140px;
    height: 140px;
}

.bubble-1 {
    top: 20%;
    left: 15%;
}

.bubble-2 {
    top: 20%;
    right: 15%;
}

.bubble-small {
    width: 100px;
    height: 100px;
}

.bubble-3 {
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
}

.bubble-icon {
    color: var(--primary-burgundy);
}

.bubble-large .bubble-icon {
    color: white;
}

.bubble-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.3;
}

/* CAPMED Feature */
.capmed-feature {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.pillar-alt .capmed-feature {
    background: white;
}

.capmed-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.capmed-icon {
    width: 72px;
    height: 72px;
    background: var(--light-burgundy);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
    flex-shrink: 0;
}

.capmed-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.capmed-header p {
    font-size: 0.9375rem;
    color: var(--medium-gray);
}

.capmed-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9375rem;
    color: var(--dark-gray);
}

.benefit-item svg {
    color: var(--primary-burgundy);
    flex-shrink: 0;
}

.asset-optimization {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--primary-burgundy);
}

.pillar-alt .asset-optimization {
    background: var(--light-gray);
}

.asset-optimization h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.asset-optimization p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Responsive - Our Strategy */
@media (max-width: 1024px) {
    .strategy-hero-visual {
        display: none;
    }

    .pillar-content,
    .pillar-content.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
        direction: ltr;
    }

    .seu-features {
        grid-template-columns: 1fr;
    }

    .map-container {
        width: 100%;
        max-width: 400px;
    }

    .service-bubbles {
        height: 500px;
    }

    .bubble-1 {
        top: 10%;
        left: 10%;
    }

    .bubble-2 {
        top: 10%;
        right: 10%;
    }
}

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

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .strategy-pillar {
        padding: var(--spacing-lg) 0;
    }

    .pillar-title {
        font-size: 1.75rem;
    }

    .leadership-stats {
        grid-template-columns: 1fr;
    }

    .expansion-timeline::before {
        left: 22px;
    }

    .timeline-year {
        width: 44px;
        height: 44px;
        font-size: 0.875rem;
    }

    .timeline-content {
        flex-direction: column;
        text-align: center;
    }

    .seu-header {
        flex-direction: column;
        text-align: center;
    }

    .map-stats {
        grid-template-columns: 1fr;
    }

    .service-bubbles {
        height: 600px;
    }

    .bubble-medium,
    .bubble-small {
        position: relative;
        margin: 0 auto;
    }

    .bubble-1,
    .bubble-2,
    .bubble-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        margin: 1rem auto;
    }
}

/* ===================================
   Our Shareholders Page Styles
   =================================== */

/* Ownership Overview */
.ownership-overview {
    padding: var(--spacing-2xl) 0;
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.ownership-visual {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.ownership-chart-container {
    text-align: center;
}

.ownership-circle {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

.ownership-circle canvas {
    width: 100%;
    height: 100%;
}

.ownership-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.ownership-percentage {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ownership-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.ownership-legend {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.legend-color {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
}

.sic-color {
    background: var(--gradient-primary);
}

.other-color {
    background: linear-gradient(135deg, #D4A574 0%, #E5C49A 100%);
}

.legend-info {
    flex: 1;
}

.legend-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.legend-percentage {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-burgundy);
}

/* SIC Overview */
.sic-overview {
    padding: var(--spacing-2xl) 0;
    background: var(--off-white);
}

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

.sic-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-accent);
    color: var(--dark-gray);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

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

.sic-detail-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
}

.sic-detail-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-burgundy);
}

.detail-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: var(--light-burgundy);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sic-detail-card:hover .detail-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-primary);
    color: white;
}

.sic-detail-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.sic-detail-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Shareholders Timeline */
.shareholders-timeline {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.timeline-horizontal {
    margin-top: var(--spacing-lg);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: var(--light-burgundy);
    z-index: 0;
}

.timeline-milestone {
    position: relative;
    z-index: 1;
}

.milestone-marker {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.marker-dot {
    width: 64px;
    height: 64px;
    background: white;
    border: 4px solid var(--primary-burgundy);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.marker-dot.active {
    background: var(--gradient-primary);
    border-width: 6px;
    box-shadow: 0 0 0 8px rgba(112, 56, 69, 0.2);
    animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {
    0%, 100% { box-shadow: 0 0 0 8px rgba(112, 56, 69, 0.2); }
    50% { box-shadow: 0 0 0 16px rgba(112, 56, 69, 0.05); }
}

.timeline-milestone:hover .marker-dot {
    transform: scale(1.1);
}

.milestone-content {
    text-align: center;
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.timeline-milestone:hover .milestone-content {
    background: var(--light-burgundy);
    transform: translateY(-8px);
}

.milestone-year {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary-burgundy);
    margin-bottom: 0.75rem;
}

.milestone-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.milestone-content p {
    font-size: 0.9375rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Investment Philosophy */
.investment-philosophy {
    padding: var(--spacing-2xl) 0;
    background: var(--light-gray);
}

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

.philosophy-principles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.principle-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.principle-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.principle-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.principle-content p {
    font-size: 0.9375rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.impact-metrics {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.impact-metric {
    text-align: center;
}

.metric-icon-large {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: var(--light-burgundy);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
}

.metric-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
}

/* Responsive - Our Shareholders */
@media (max-width: 1024px) {
    .ownership-visual {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .timeline-track {
        grid-template-columns: 1fr 1fr;
    }

    .timeline-track::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .ownership-circle {
        width: 280px;
        height: 280px;
    }

    .ownership-percentage {
        font-size: 4rem;
    }

    .sic-details-grid {
        grid-template-columns: 1fr;
    }

    .timeline-track {
        grid-template-columns: 1fr;
    }

    .impact-metrics {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .metric-number {
        font-size: 2.5rem;
    }
}

/* ===================================
   Our People Page Styles
   =================================== */

/* People Hero */
.people-hero {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--secondary-burgundy) 100%);
}

/* Leadership Introduction */
.leadership-intro {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content .large-text {
    margin-top: var(--spacing-md);
    line-height: 1.8;
}

/* Leadership Team */
.leadership-team {
    padding: var(--spacing-xl) 0;
    background: white;
}

.leader-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-burgundy);
}

/* Featured Leaders (CEO, Deputy CEO) */
.leader-card.featured {
    background: linear-gradient(135deg, rgba(112, 56, 69, 0.03) 0%, rgba(139, 70, 85, 0.03) 100%);
    border-left: 4px solid var(--primary-burgundy);
}

.leader-card.featured .leader-image {
    min-width: 200px;
}

.leader-card.featured .image-placeholder {
    width: 200px;
    height: 200px;
}

.leader-card.featured .image-placeholder svg {
    width: 100px;
    height: 100px;
}

/* Leader Image */
.leader-image {
    min-width: 150px;
    flex-shrink: 0;
}

.image-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 8px 24px rgba(112, 56, 69, 0.15);
}

.image-placeholder svg {
    width: 70px;
    height: 70px;
    color: var(--primary-burgundy);
    opacity: 0.6;
}

/* Leader Info */
.leader-info {
    flex: 1;
}

.leader-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--primary-burgundy);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.leader-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.leader-card.featured .leader-name {
    font-size: 2.5rem;
}

.leader-bio {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.leader-education {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 3px solid var(--accent-gold);
}

.leader-education svg {
    color: var(--primary-burgundy);
    flex-shrink: 0;
    margin-top: 2px;
}

.leader-education span {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Leaders Grid (for other team members) */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.leaders-grid .leader-card {
    flex-direction: column;
    padding: 2.5rem;
    margin-bottom: 0;
}

.leaders-grid .leader-image {
    min-width: auto;
    margin: 0 auto;
}

.leaders-grid .image-placeholder {
    width: 120px;
    height: 120px;
}

.leaders-grid .image-placeholder svg {
    width: 60px;
    height: 60px;
}

.leaders-grid .leader-info {
    text-align: center;
}

.leaders-grid .leader-badge {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
}

.leaders-grid .leader-name {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.leaders-grid .leader-bio {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.leaders-grid .leader-education {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.leaders-grid .leader-education svg {
    margin-top: 0;
}

/* Team Values */
.team-values {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-burgundy);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .leaders-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leader-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .leader-image {
        min-width: auto;
        margin: 0 auto;
    }

    .leader-card.featured .leader-image {
        min-width: auto;
    }

    .leader-education {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .leader-education svg {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .leader-card {
        padding: 2rem;
    }

    .leader-card.featured .leader-name {
        font-size: 2rem;
    }

    .leader-name {
        font-size: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .leaders-grid .leader-card {
        padding: 2rem;
    }
}



.team-values .value-card {
    opacity: 1 !important;
    transform: none !important;
}

/* ===================================
   Leader Profile Modal
   =================================== */
.leader-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.leader-modal.active .modal-overlay {
    opacity: 1;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10001;
}

.leader-modal.active .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(112, 56, 69, 0.1);
    color: var(--primary-burgundy);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1;
}

.modal-close:hover {
    background: var(--primary-burgundy);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    padding: 3rem;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 24px 24px 0 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.modal-image-placeholder {
    width: 120px;
    height: 120px;
    min-width: 120px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(112, 56, 69, 0.15);
}

.modal-image-placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--primary-burgundy);
    opacity: 0.6;
}

.modal-title-section {
    flex: 1;
}

.modal-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--primary-burgundy);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.modal-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    font-family: var(--font-heading);
    margin: 0;
}

.modal-body {
    padding: 3rem;
}

.modal-section {
    margin-bottom: 2.5rem;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-burgundy);
}

.modal-section p {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.modal-education {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
}

.modal-education svg {
    color: var(--primary-burgundy);
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-education span {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Make cards obviously clickable */
.leader-card {
    cursor: pointer;
    position: relative;
}

.leader-card::after {
    content: 'Click for details';
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    padding: 0.5rem 1rem;
    background: var(--primary-burgundy);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.leader-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .modal-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .modal-body {
        padding: 2rem;
    }

    .modal-name {
        font-size: 1.5rem;
    }

    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }

    .leader-card::after {
        display: none;
    }
}

/* Modal Additional Sections */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.expertise-tag {
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    color: var(--primary-burgundy);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--light-burgundy);
    transition: all 0.2s ease;
}

.expertise-tag:hover {
    background: var(--primary-burgundy);
    color: white;
    border-color: var(--primary-burgundy);
    transform: translateY(-2px);
}

.achievements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.achievements-list li {
    padding: 1rem 1.25rem 1rem 3rem;
    margin-bottom: 0.75rem;
    background: var(--light-gray);
    border-radius: 12px;
    position: relative;
    line-height: 1.7;
    color: var(--dark-gray);
    transition: all 0.2s ease;
}

.achievements-list li:hover {
    background: var(--light-burgundy);
    transform: translateX(5px);
}

.achievements-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--primary-burgundy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 165, 116, 0.2);
    color: var(--primary-burgundy);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.experience-badge svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* Improve modal body paragraph spacing */
.modal-section p {
    white-space: pre-line;
}

@media (max-width: 768px) {
    .expertise-tags {
        gap: 0.5rem;
    }

    .expertise-tag {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .achievements-list li {
        padding: 0.875rem 1rem 0.875rem 2.75rem;
    }

    .achievements-list li::before {
        left: 0.75rem;
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }
}

/* ===================================
   Overview Page Styles
   =================================== */

/* Overview Hero */
.overview-hero {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--secondary-burgundy) 100%);
}

/* Services Overview Section */
.services-overview-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.overview-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.overview-intro .large-text {
    margin-top: var(--spacing-md);
}

/* Service Overview Cards */
.service-overview-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
}

.service-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-burgundy);
}

/* Large Cards (K-12 and Higher Ed) */
.service-overview-card.large-card {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-card-visual {
    min-width: 280px;
    text-align: center;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
}

.service-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

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

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

.service-card-content {
    flex: 1;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--primary-burgundy);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

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

.service-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.brand-pill {
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    color: var(--primary-burgundy);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.brand-pill:hover {
    background: var(--light-burgundy);
    border-color: var(--primary-burgundy);
    transform: translateY(-2px);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-burgundy);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

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

.service-link svg {
    transition: transform 0.2s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* University Timeline */
.university-timeline {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.timeline-item {
    flex: 1;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: var(--light-burgundy);
    transform: translateY(-4px);
}

.timeline-item.highlight {
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.3) 100%);
    border: 2px solid var(--accent-gold);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-burgundy);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.timeline-name {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.95rem;
}

.new-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    padding: 0.25rem 0.75rem;
    background: var(--accent-gold);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
}

/* Services Grid (2 columns) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-icon-medium {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
}

.service-highlight-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.highlight-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-burgundy);
    font-family: var(--font-heading);
    line-height: 1;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 600;
}

/* Integration Features */
.integration-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.feature-item:hover {
    background: var(--light-burgundy);
    transform: translateX(5px);
}

.feature-item svg {
    color: var(--primary-burgundy);
    flex-shrink: 0;
}

.feature-item span {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Total Impact Section */
.total-impact {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.1) 100%);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.impact-stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.impact-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.impact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-burgundy);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.impact-label {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-overview-card.large-card {
        flex-direction: column;
        text-align: center;
    }

    .service-card-visual {
        min-width: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .university-timeline {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .service-overview-card {
        padding: 2rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .integration-features {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-number {
        font-size: 2.5rem;
    }
}

/* ===================================
   Education Services Page Styles
   =================================== */

/* Education Services Hero */
.education-services-hero {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--secondary-burgundy) 100%);
}

/* K-12 Section */
.k12-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

/* K-12 Stats Grid */
.k12-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.k12-stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.1) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.k12-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.k12-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-burgundy);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.k12-stat-label {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 600;
}

/* Curricula Section */
.curricula-section {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 24px;
}

.curricula-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.curricula-description {
    text-align: center;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.curricula-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.curriculum-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.curriculum-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-burgundy);
    box-shadow: var(--shadow-md);
}

.curriculum-card.highlight {
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-color: var(--accent-gold);
}

.curriculum-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.curriculum-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.curriculum-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* School Brands Section */
.school-brands-section {
    margin-top: 4rem;
}

.brands-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
}

.school-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.school-brand-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.school-brand-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-burgundy);
    box-shadow: var(--shadow-lg);
}

.brand-logo-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.school-brand-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.school-brand-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* Higher Education Section */
.higher-ed-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.universities-showcase {
    margin-top: 3rem;
}

.university-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.university-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-burgundy);
}

.university-card.highlight {
    background: linear-gradient(135deg, rgba(112, 56, 69, 0.03) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-color: var(--accent-gold);
}

.university-card.featured {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.university-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.5rem 1.25rem;
    background: var(--primary-burgundy);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
}

.university-badge.new {
    background: var(--accent-gold);
}

.university-visual {
    min-width: 280px;
    text-align: center;
}

.university-logo-large {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 8px 24px rgba(112, 56, 69, 0.15);
}

.university-logo-large img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.university-logo-medium {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.university-logo-medium img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.university-stats-inline {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.inline-stat {
    text-align: center;
}

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

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

.university-content {
    flex: 1;
}

.university-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.university-description {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.university-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.highlight-item svg {
    color: var(--primary-burgundy);
    flex-shrink: 0;
}

.highlight-item span {
    color: var(--dark-gray);
    font-weight: 600;
}

.university-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.uni-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.uni-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-burgundy);
    font-family: var(--font-heading);
    line-height: 1;
}

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

/* SEU Features */
.seu-features-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.seu-feature {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.seu-feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.seu-feature-text strong {
    display: block;
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.seu-feature-text p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Higher Ed Total Capacity */
.higher-ed-total {
    margin-top: 3rem;
}

.total-capacity-card {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--secondary-burgundy) 100%);
    color: white;
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
}

.total-capacity-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.capacity-visual {
    max-width: 600px;
    margin: 0 auto;
}

.capacity-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.capacity-fill {
    height: 100%;
    background: var(--accent-gold);
    border-radius: 50px;
    transition: width 2s ease;
    width: 0;
}

.capacity-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.total-capacity-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Nurseries Section */
.nurseries-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.nurseries-content {
    margin-top: 3rem;
}

.nurseries-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.nursery-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.nursery-brand-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nursery-brand-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-burgundy);
    box-shadow: var(--shadow-lg);
}

.nursery-brand-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
}

.nursery-logo-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nursery-logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nursery-brand-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.nursery-segment {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-burgundy);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.nursery-brand-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.nurseries-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.nursery-stat-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.1) 100%);
    border-radius: 16px;
}

.nursery-stat-icon {
    font-size: 3rem;
}

.nursery-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-burgundy);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.nursery-stat-label {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .k12-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .curricula-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .school-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .university-card.featured {
        flex-direction: column;
        text-align: center;
    }

    .university-visual {
        min-width: auto;
    }

    .nursery-brands-grid {
        grid-template-columns: 1fr;
    }

    .nurseries-stats {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .k12-stats-grid,
    .curricula-grid,
    .school-brands-grid {
        grid-template-columns: 1fr;
    }

    .university-card {
        padding: 2rem;
    }

    .university-content h3 {
        font-size: 1.5rem;
    }

    .capacity-number {
        font-size: 2.5rem;
    }

    .nursery-stat-box {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
   Integration and Value Creation Page
   =================================== */

/* Integration Hero */
.integration-hero {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--secondary-burgundy) 100%);
}

/* Integration Overview */
.integration-overview {
    padding: var(--spacing-xl) 0;
    background: white;
}

.overview-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.overview-content .large-text {
    margin: var(--spacing-md) 0 3rem;
    text-align: center;
}

.strategy-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.1) 100%);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

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

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

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--medium-gray);
}

/* Value Chain Section */
.value-chain-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.value-chain-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.chain-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    margin: 0 auto 1.5rem;
    background: var(--primary-burgundy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.step-visual {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
    transition: transform 0.3s ease;
}

.chain-step:hover .step-visual {
    transform: scale(1.1) rotate(5deg);
}

.chain-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.chain-step p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.step-metric {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-gold);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
}

.chain-arrow {
    font-size: 2rem;
    color: var(--primary-burgundy);
    font-weight: 700;
    padding: 0 1rem;
}

/* Integration Detail Sections */
.integration-detail {
    padding: var(--spacing-xl) 0;
}

.construction-section {
    background: white;
}

.transportation-section {
    background: var(--light-gray);
}

.healthcare-section {
    background: white;
}

.detail-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.detail-content.reverse {
    flex-direction: row-reverse;
}

.detail-visual {
    min-width: 350px;
    text-align: center;
}

.detail-icon-large {
    width: 160px;
    height: 160px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
    box-shadow: var(--shadow-md);
}

.detail-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.detail-stat {
    text-align: center;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.detail-stat.highlight {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--secondary-burgundy) 100%);
    color: white;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.detail-stat.highlight .stat-value {
    color: white;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--medium-gray);
}

.detail-stat.highlight .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.detail-highlight-box {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
}

.detail-highlight-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.detail-highlight-box p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.detail-text {
    flex: 1;
}

.detail-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--primary-burgundy);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

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

.detail-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.feature-row:hover {
    background: var(--light-burgundy);
    transform: translateX(8px);
}

.feature-row svg {
    color: var(--primary-burgundy);
    flex-shrink: 0;
}

.feature-row span {
    color: var(--dark-gray);
    font-weight: 600;
}

/* Investment Badge */
.investment-badge {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--secondary-burgundy) 100%);
    color: white;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
}

.investment-amount {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.investment-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* CAPMED Benefits */
.capmed-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.capmed-benefit-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.capmed-benefit-card:hover {
    background: var(--light-burgundy);
    transform: translateX(8px);
}

.capmed-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.capmed-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

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

.ownership-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: rgba(212, 165, 116, 0.15);
    border-left: 4px solid var(--accent-gold);
    border-radius: 8px;
}

.ownership-note svg {
    color: var(--primary-burgundy);
    flex-shrink: 0;
}

.ownership-note span {
    color: var(--dark-gray);
    font-weight: 600;
}

/* Integration Impact */
.integration-impact {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.1) 100%);
}

.impact-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.impact-metric-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.impact-metric-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.metric-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
}

.impact-metric-card .metric-value {
    position: static;
    transform: none;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-burgundy);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.impact-metric-card .metric-label {
    position: static;
    transform: none;
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.impact-metric-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .strategy-benefits {
        grid-template-columns: 1fr;
    }

    .value-chain-flow {
        flex-direction: column;
        padding: 2rem;
    }

    .chain-arrow {
        transform: rotate(90deg);
        padding: 1rem 0;
    }

    .detail-content,
    .detail-content.reverse {
        flex-direction: column;
        text-align: center;
    }

    .detail-visual {
        min-width: auto;
    }

    .impact-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .detail-title {
        font-size: 2rem;
    }

    .detail-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .capmed-benefit-card {
        flex-direction: column;
        text-align: center;
    }

    .impact-metrics-grid {
        grid-template-columns: 1fr;
    }

    .value-chain-flow {
        padding: 1.5rem;
    }

    .investment-amount {
        font-size: 2.5rem;
    }
}

/* ===================================
   CIRA Care Page Styles
   =================================== */

/* Care Hero Section */
.care-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.15) 100%);
    position: relative;
    overflow: hidden;
}

.care-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 165, 116, 0.2), transparent);
    pointer-events: none;
}

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

.care-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-burgundy);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.care-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-burgundy);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.care-hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.care-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.care-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.care-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.care-stat-label {
    font-size: 0.875rem;
    color: var(--medium-gray);
    line-height: 1.4;
}

.care-hero-image {
    position: relative;
}

.care-hero-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

/* Mission & Vision Section */
.care-mission-vision {
    padding: var(--spacing-xl) 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card,
.vision-card {
    padding: 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.mission-card {
    border-left: 4px solid var(--primary-burgundy);
}

.vision-card {
    border-left: 4px solid var(--accent-gold);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
}

.mission-card h3,
.vision-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* Care Economy Section */
.care-economy {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.care-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.care-category-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
}

.care-category-card h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
}

/* Care Programs Section */
.care-programs {
    padding: var(--spacing-xl) 0;
}

.program-detail {
    margin-top: 4rem;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.program-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, #8B4C5C 100%);
    color: white;
}

.program-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.3;
    line-height: 1;
}

.program-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.program-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    color: white;
}

.program-content {
    padding: 3rem;
}

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

.program-features h4,
.career-paths h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.program-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.program-feature:hover {
    background: var(--light-burgundy);
    transform: translateX(5px);
}

.program-feature svg {
    flex-shrink: 0;
    color: var(--primary-burgundy);
}

.program-feature strong {
    display: block;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

.program-feature p {
    font-size: 0.875rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

.pathway-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pathway-tag {
    padding: 0.75rem 1.5rem;
    background: var(--light-burgundy);
    color: var(--primary-burgundy);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pathway-tag:hover {
    background: var(--primary-burgundy);
    color: white;
    transform: translateY(-2px);
}

/* Program Highlights */
.program-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    font-size: 2rem;
}

.highlight-item strong {
    display: block;
    color: var(--primary-burgundy);
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-item p {
    font-size: 1rem;
    color: var(--dark-gray);
}

.registration-cta {
    margin-top: 2.5rem;
    text-align: center;
}

/* Additional Services Section */
.additional-services {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-alt {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

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

.service-icon-alt {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
}

.service-card-alt h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.service-card-alt p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* Partners Section */
.care-partners {
    padding: var(--spacing-xl) 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.partner-logo-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 120px;
}

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

.partner-logo-card img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Socioeconomic Impact Section */
.socioeconomic-impact {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.15) 100%);
}

.impact-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.impact-area-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.impact-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-burgundy), var(--accent-gold));
}

.impact-area-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.impact-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, #8B4C5C 100%);
    color: white;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.impact-area-card h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.impact-area-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* Responsive Styles for CIRA Care */
@media (max-width: 1024px) {
    .care-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .care-hero-title {
        font-size: 2.5rem;
    }

    .care-hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .care-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .program-highlights {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .impact-areas {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .care-hero {
        padding: 6rem 0 4rem;
    }

    .care-hero-title {
        font-size: 2rem;
    }

    .care-hero-stats {
        grid-template-columns: 1fr;
    }

    .care-stat-number {
        font-size: 2rem;
    }

    .care-categories {
        grid-template-columns: 1fr;
    }

    .program-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }

    .program-number {
        font-size: 3rem;
    }

    .program-header h3 {
        font-size: 1.5rem;
    }

    .program-content {
        padding: 2rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   Our Market Page Styles
   =================================== */

/* Market Hero Section */
.market-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, #8B4C5C 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.market-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15), transparent);
    pointer-events: none;
}

.market-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.market-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.market-hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 4rem;
    opacity: 0.95;
}

.market-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.market-stat-large {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.market-stat-large:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.market-stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: white;
}

.market-stat-label {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.market-stat-detail {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Market Opportunity Section */
.market-opportunity {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.opportunity-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    text-align: center;
}

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

.opportunity-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
}

.opportunity-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.opportunity-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.opportunity-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* Government Reforms Section */
.government-reforms {
    padding: var(--spacing-xl) 0;
}

.reform-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--light-burgundy);
    color: var(--primary-burgundy);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.reform-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.reform-achievements h3,
.reform-challenges h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
}

.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.achievement-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.achievement-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--light-burgundy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
}

.achievement-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.achievement-item p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--medium-gray);
}

.challenge-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.challenge-tag {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--light-burgundy);
    color: var(--primary-burgundy);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.reform-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card-market {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, #8B4C5C 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.stat-card-market:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.stat-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-card-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-card-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* CIRA Positioning Section */
.cira-positioning {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.1) 100%);
}

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

.positioning-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.positioning-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.positioning-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.highlight-card-large {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.highlight-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.highlight-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.comparison-item {
    text-align: center;
    padding: 1.5rem 2rem;
    border-radius: 16px;
}

.comparison-item.cira {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, #8B4C5C 100%);
    color: white;
}

.comparison-item.national {
    background: var(--light-gray);
    color: var(--dark-gray);
}

.comparison-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.comparison-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
}

.comparison-vs {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-burgundy);
}

.highlight-stat {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-big-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-burgundy);
    line-height: 1;
}

.highlight-unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.highlight-card-large h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.highlight-card-large p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

.positioning-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.feature-box-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
}

.feature-box h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.feature-box p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* Structural Challenges Section */
.structural-challenges {
    padding: var(--spacing-xl) 0;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.challenge-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #dc2626, #ea580c, #f59e0b);
}

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

.challenge-severity {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.challenge-card h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.challenge-stat-display {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.challenge-big-stat {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-burgundy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.challenge-stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.challenge-stat-note {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.challenge-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* Looking Ahead Section */
.looking-ahead {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.1) 100%);
}

.ahead-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.ahead-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.ahead-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ahead-point {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.point-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.ahead-point h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.ahead-point p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

.ahead-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.projection-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.projection-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.projection-year {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.projection-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-burgundy);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.projection-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.projection-growth {
    font-size: 0.875rem;
    color: #16a34a;
    font-weight: 600;
}

/* Responsive Styles for Our Market */
@media (max-width: 1024px) {
    .market-hero-title {
        font-size: 2.5rem;
    }

    .market-hero-stats {
        grid-template-columns: 1fr;
    }

    .opportunity-grid {
        grid-template-columns: 1fr;
    }

    .reform-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .reform-visual {
        flex-direction: row;
    }

    .positioning-highlights {
        grid-template-columns: 1fr;
    }

    .positioning-features {
        grid-template-columns: 1fr;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .ahead-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .market-hero {
        padding: 6rem 0 4rem;
    }

    .market-hero-title {
        font-size: 2rem;
    }

    .market-stat-number {
        font-size: 2rem;
    }

    .reform-text h2,
    .ahead-text h2 {
        font-size: 1.75rem;
    }

    .reform-visual {
        flex-direction: column;
    }

    .highlight-big-number {
        font-size: 3.5rem;
    }

    .comparison-value {
        font-size: 2rem;
    }

    .challenge-big-stat {
        font-size: 2.5rem;
    }

    .projection-value {
        font-size: 2.5rem;
    }
}

/* ===================================
   Contact Us Page Styles
   =================================== */

/* Contact Hero Section */
.contact-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, #8B4C5C 100%);
    color: white;
    text-align: center;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

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

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

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

.form-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.required {
    color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: white;
}

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

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    width: 100%;
    margin-top: 0.5rem;
}

.form-message {
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    text-align: center;
    display: none;
    margin-top: 1rem;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #dc2626;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card,
.business-hours-card,
.social-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3,
.business-hours-card h3,
.social-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.contact-info-intro {
    font-size: 0.9375rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

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

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
}

.contact-info-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-info-details a {
    display: block;
    font-size: 0.9375rem;
    color: var(--primary-burgundy);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 0.25rem;
}

.contact-info-details a:hover {
    color: #8B4C5C;
    text-decoration: underline;
}

.contact-info-details p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* Business Hours */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.hours-item .day {
    font-weight: 600;
    color: var(--dark-gray);
}

.hours-item .time {
    font-size: 0.9375rem;
    color: var(--medium-gray);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(212, 165, 116, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-burgundy);
    transition: all 0.3s ease;
}

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

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
}

/* Responsive Styles for Contact Us */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 3rem;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-description {
        font-size: 1.125rem;
    }

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

    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-info-card,
    .business-hours-card,
    .social-card {
        padding: 2rem;
    }

    .map-container {
        height: 350px;
    }
}
