/* ============================================
   CSS Variables & Reset
   ============================================ */

:root {
    --primary-blue: #1e40af;
    --primary-blue-dark: #1e3a8a;
    --primary-blue-light: #3b82f6;
    --accent-blue: #2563eb;
    --secondary-gray: #64748b;
    --text-dark: #0f172a;
    --text-light: #475569;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><circle cx="24" cy="40" r="6" fill="rgba(0,0,0,0.7)"/></svg>') 24 40, auto;
}

/* ============================================
   Accessibility
   ============================================ */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 1.5px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-blue-dark);
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.7;
}

/* ============================================
   Container & Layout
   ============================================ */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

/* ============================================
   Ticker Bar
   ============================================ */

.ticker-bar {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    padding: 0.75rem 0;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
    color: #ffffff !important;
}

.ticker-wrapper {
    width: 100%;
}

.ticker-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.ticker-text {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #ffffff !important;
    margin: 0;
    padding: 0;
    display: block;
    visibility: visible !important;
    opacity: 1 !important;
}

.ten-pop {
    display: inline-block;
    padding: 0.12em 0.42em;
    margin: 0 0.08em;
    border-radius: 999px;
    background: linear-gradient(90deg, #facc15, #fb7185, #60a5fa);
    background-size: 200% 100%;
    color: #0b1220;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-shadow: none;
    box-shadow:
        0 10px 24px rgba(250, 204, 21, 0.20),
        0 14px 34px rgba(96, 165, 250, 0.18),
        0 2px 0 rgba(255, 255, 255, 0.35) inset;
    transform: translateZ(0);
    animation: ten-pop-pulse 1.9s ease-in-out infinite, ten-pop-shine 2.6s linear infinite;
}

.ticker-bar .ten-pop {
    box-shadow:
        0 10px 26px rgba(250, 204, 21, 0.26),
        0 16px 40px rgba(96, 165, 250, 0.20),
        0 2px 0 rgba(255, 255, 255, 0.35) inset;
}

.celebration .stat-number .ten-pop {
    padding: 0.08em 0.36em;
    border-radius: 18px;
    font-size: 0.95em;
    box-shadow:
        0 16px 40px rgba(250, 204, 21, 0.18),
        0 26px 60px rgba(96, 165, 250, 0.16),
        0 2px 0 rgba(255, 255, 255, 0.28) inset;
}

@keyframes ten-pop-pulse {
    0%, 100% {
        transform: scale(1) rotate(-1deg);
        filter: saturate(1);
    }
    50% {
        transform: scale(1.12) rotate(1deg);
        filter: saturate(1.15);
    }
}

@keyframes ten-pop-shine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ten-pop {
        animation: none;
    }
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333333%);
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    opacity: 0.9;
}

/* Hide text logo when image logo is present (image comes first in HTML) */
.logo-img ~ .logo-text {
    display: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.logo-accent {
    color: var(--primary-blue);
}

/* Show text logo on mobile if image fails to load */
@media (max-width: 768px) {
    .logo-text {
        display: inline;
        font-size: 1.25rem;
    }
    
    .logo-img {
        height: 120px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a:focus::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white !important;
    padding: 1.75rem 5rem !important;
    border-radius: 10px;
    min-height: 60px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.nav-cta span {
    position: relative;
    z-index: 1;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.nav-cta:hover .nav-cta-icon {
    transform: rotate(15deg) scale(1.1);
}

.nav-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 142px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
    pointer-events: none;
}

.carousel-prev,
.carousel-next {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.carousel-prev svg,
.carousel-next svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.carousel-dot:hover {
    border-color: white;
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .highlight {
    color: #ffffff;
    display: block;
    font-weight: 900;
}

.hero-slogan {
    font-size: clamp(1.1rem, 2vw, 2rem);
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.1s both;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    position: relative;
    padding-bottom: 3rem;
}

.hero-stats::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0.7;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.hero-stats::before {
    content: '';
    position: absolute;
    bottom: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ============================================
   Section Headers
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
}

.about-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-item .icon {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.about-image {
    position: relative;
}

.about-image-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
}

.placeholder-text {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.875rem;
    color: var(--secondary-gray);
}

/* ============================================
   Value Cards / Why Choose Us
   ============================================ */

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.08), 0 4px 8px rgba(30, 64, 175, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: visible;
    backdrop-filter: blur(10px);
}

.value-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue), var(--primary-blue-light));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover::after {
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.value-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 40px rgba(30, 64, 175, 0.15), 0 12px 16px rgba(30, 64, 175, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 12px 24px rgba(30, 64, 175, 0.25), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 16px 32px rgba(30, 64, 175, 0.35), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue-dark));
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.value-card:hover h3 {
    color: var(--primary-blue);
    transform: scale(1.05);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================================
   Value Proposition (Accordion UI)
   ============================================ */

.value-prop {
    max-width: 980px;
    margin: 0 auto;
}

.value-prop-surface {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 1px solid rgba(30, 64, 175, 0.10);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(30, 64, 175, 0.10), 0 6px 14px rgba(30, 64, 175, 0.06);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.value-prop-item {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.value-prop-item:last-child {
    border-bottom: none;
}

.value-prop-summary {
    list-style: none;
    display: grid;
    grid-template-columns: 56px 1fr 44px;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    user-select: none;
    position: relative;
    transition: background 0.25s ease, transform 0.25s ease;
}

details > summary.value-prop-summary::-webkit-details-marker {
    display: none;
}

.value-prop-item[open] > .value-prop-summary {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.06), rgba(37, 99, 235, 0.03));
}

.value-prop-item > .value-prop-summary:hover {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(37, 99, 235, 0.02));
}

.value-prop-item > .value-prop-summary:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 2px;
    border-radius: 16px;
}

.value-prop-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    box-shadow: 0 12px 24px rgba(30, 64, 175, 0.22), inset 0 2px 4px rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.28);
}

.value-prop-icon svg {
    width: 28px;
    height: 28px;
}

.value-prop-title {
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.4px;
    font-size: 1.05rem;
}

.value-prop-chevron {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    background: rgba(30, 64, 175, 0.06);
    transition: transform 0.25s ease, background 0.25s ease;
}

.value-prop-chevron svg {
    width: 20px;
    height: 20px;
}

.value-prop-item[open] .value-prop-chevron {
    transform: rotate(180deg);
    background: rgba(30, 64, 175, 0.10);
}

.value-prop-panel {
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.value-prop-panel p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    max-width: 75ch;
}

/* ============================================
   Services Section
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-blue));
    transform: scaleY(1);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.02), rgba(37, 99, 235, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(30, 64, 175, 0.2), 0 10px 10px -5px rgba(30, 64, 175, 0.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(30, 64, 175, 0.2));
}

.service-card:hover .service-icon {
    transform: scale(1.15);
    color: var(--accent-blue);
    filter: drop-shadow(0 6px 12px rgba(30, 64, 175, 0.3));
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-blue);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Industries Section
   ============================================ */

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-blue));
    transform: scaleY(1);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.industry-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.02), rgba(37, 99, 235, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.industry-card:hover::after {
    opacity: 1;
}

.industry-card:hover {
    transform: translateX(8px) translateY(-3px);
    border-color: var(--primary-blue);
    border-left-width: 6px;
    box-shadow: 0 20px 25px -5px rgba(30, 64, 175, 0.2), 0 10px 10px -5px rgba(30, 64, 175, 0.1);
}

.industry-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.industry-card:hover h3 {
    color: var(--accent-blue);
}

.industry-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ============================================
   Projects Section
   ============================================ */

.projects-pagination-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 4rem;
}

.projects-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 10;
    padding: 0;
    flex-shrink: 0;
}

.projects-nav-btn:hover:not(:disabled) {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(30, 64, 175, 0.3), 0 4px 6px -2px rgba(30, 64, 175, 0.2);
}

.projects-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: var(--border-color);
    color: var(--secondary-gray);
}

.projects-nav-prev {
    left: -28px;
}

.projects-nav-next {
    right: -28px;
}

.projects-nav-btn svg {
    width: 24px;
    height: 24px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
    flex: 1;
}

.project-card.hidden {
    display: none;
}

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.02), rgba(37, 99, 235, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.project-card:hover::after {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue-light);
    box-shadow: 0 20px 25px -5px rgba(30, 64, 175, 0.2), 0 10px 10px -5px rgba(30, 64, 175, 0.1);
}

.project-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-light);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-image .image-placeholder {
    border-radius: 0;
    aspect-ratio: 16/10;
}

.project-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: white;
}

.project-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.project-card:hover .project-info h3 {
    color: var(--primary-blue);
}

.project-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.project-scope {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.9em;
    color: rgba(15, 23, 42, 0.72);
    font-weight: 600;
}

/* ============================================
   Celebration Section
   ============================================ */

.celebration {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.celebration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.celebration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.celebration-text {
    max-width: 600px;
}

.celebration.is-visible .celebration-text,
.celebration.is-visible .celebration-images {
    animation: celebration-rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes celebration-rise {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.celebration .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.celebration .section-title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 2px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    position: relative;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
}

.celebration .section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 8px;
    z-index: -1;
    filter: blur(20px);
}

.celebration-slogan {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    text-align: center;
}

.celebration-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.celebration-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.celebration-stat {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 0.75rem;
}

.celebration-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
    color: white;
    margin-bottom: 0.5rem;
}

.celebration-stat .stat-number::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #facc15, #f97316);
    opacity: 0.8;
}

.celebration-stat .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.celebration-images {
    position: relative;
}

.celebration-video {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.celebration-video-player {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.celebration-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.celebration-image-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.celebration-image-item:nth-child(1) {
    transform: rotate(-2deg);
}

.celebration-image-item:nth-child(2) {
    transform: rotate(2deg);
}

.celebration-image-item:nth-child(3) {
    transform: rotate(-1deg);
}

.celebration-image-item:nth-child(4) {
    transform: rotate(1deg);
}

.celebration-image-item:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 2;
}

.celebration-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.celebration-image-item:hover img {
    transform: scale(1.1);
}

/* ============================================
   Events Section
   ============================================ */

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.event-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    margin: 0;
    padding: 0;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.event-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(30, 64, 175, 0.2), 0 10px 10px -5px rgba(30, 64, 175, 0.1);
}

/* ============================================
   Partners/Clients Section
   ============================================ */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    align-items: center;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 150px;
    position: relative;
    overflow: hidden;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.partner-item:hover::before {
    transform: scaleX(1);
}

.partner-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue-light);
    box-shadow: 0 8px 16px rgba(30, 64, 175, 0.15);
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ============================================
   Leadership Section
   ============================================ */

.leadership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.ceo-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 3px solid var(--primary-blue-light);
    position: relative;
    overflow: hidden;
}

.ceo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
}

.ceo-image {
    width: 200px;
    height: 240px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid var(--primary-blue);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.ceo-info h3 {
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
    color: var(--text-dark);
}

.leader-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-bio {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 1rem;
    text-align: left;
}

.team-list {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.team-list-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.team-members {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
    background: var(--bg-light);
    transition: var(--transition);
}

.team-member:hover {
    background: rgba(30, 64, 175, 0.05);
    border-left-color: var(--accent-blue);
    transform: translateX(5px);
}

.team-member-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.team-member-title {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue-light);
}

.contact-card.highlight-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    border: none;
}

.contact-card.highlight-card::before {
    background: rgba(255, 255, 255, 0.2);
}

.contact-card.highlight-card h3,
.contact-card.highlight-card p {
    color: white;
}

.contact-card.highlight-card .contact-link {
    color: white;
    font-weight: 600;
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue));
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 16px rgba(30, 64, 175, 0.2);
    transition: var(--transition);
}

.contact-card.highlight-card .contact-card-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-icon svg {
    width: 36px;
    height: 36px;
}

.contact-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.contact-card.highlight-card h3 {
    color: white;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-card.highlight-card p {
    color: rgba(255, 255, 255, 0.95);
}

.contact-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

.contact-card.highlight-card .contact-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.contact-cta-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.contact-cta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

.contact-cta-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.contact-cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-cta-section > p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.contact-cta-buttons .btn svg {
    width: 20px;
    height: 20px;
}

.contact-cta-buttons .btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.contact-cta-buttons .btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 240px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta-section {
        padding: 3rem 2rem;
    }
    
    .contact-cta-section h3 {
        font-size: 1.75rem;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
    }
    
    .contact-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .section-padding {
        padding: 3rem 0;
    }
    
    .ticker-bar {
        top: 120px;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .carousel-controls {
        padding: 0 1rem;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev svg,
    .carousel-next svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-dots {
        bottom: 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition);
        gap: 1rem;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 1.5rem 2rem;
        font-size: 1rem;
    }
    
    .nav-cta-icon {
        width: 20px;
        height: 20px;
    }

    .ticker-bar {
        top: 120px;
        padding: 0.5rem 0;
    }
    
    .ticker-text {
        font-size: 0.75rem;
    }
    
    .hero {
        min-height: 90vh;
        padding-top: 120px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .projects-pagination-wrapper {
        gap: 1rem;
        padding: 0 1rem;
        flex-direction: column;
    }
    
    .projects-nav-btn {
        position: relative;
        top: auto;
        transform: none;
        width: 48px;
        height: 48px;
    }
    
    .projects-nav-prev {
        left: 0;
        order: 1;
    }
    
    .projects-nav-next {
        right: 0;
        order: 3;
    }
    
    .projects-grid {
        order: 2;
    }
    
    .celebration-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .celebration-stats {
        gap: 2rem;
    }
    
    .celebration-stat .stat-number {
        font-size: 2.5rem;
    }
    
    .celebration-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .celebration-image-item {
        transform: none !important;
    }
    
    .celebration-image-item:hover {
        transform: scale(1.03) !important;
    }
    
    .value-grid,
    .services-grid,
    .projects-grid,
    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-prop {
        max-width: 100%;
    }

    .value-prop-summary {
        grid-template-columns: 52px 1fr 40px;
        padding: 1.1rem 1.1rem;
    }

    .value-prop-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .value-prop-panel {
        padding: 0 1.1rem 1.1rem 1.1rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 2rem;
    }
    
    .partner-item {
        padding: 1.5rem;
        height: 120px;
    }

    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .leadership-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ceo-card {
        padding: 2.5rem 2rem;
    }
    
    .ceo-image {
        width: 180px;
        height: 216px;
    }
    
    .team-list {
        padding: 2rem;
    }

    .contact-card {
        padding: 2rem;
    }
    
    .contact-cta-section {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */


@media print {
    .navbar,
    .hero-cta,
    .footer {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}
