/* ======================================
   Athletic Progress - Main Styles
   Color Scheme: Blue, Orange, Green
   Modern & Energetic Design
   ====================================== */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors */
    --blue-primary: #0066FF;
    --blue-dark: #0047B3;
    --blue-light: #3385FF;
    --blue-glow: rgba(0, 102, 255, 0.3);
    
    /* Accent Colors - Orange (Energy) */
    --orange-primary: #FF6B00;
    --orange-dark: #CC5500;
    --orange-light: #FF8533;
    --orange-glow: rgba(255, 107, 0, 0.3);
    
    /* Secondary Colors - Green (Cycling / logo-matched) */
    --green-primary: #5DB832;
    --green-dark: #4A9828;
    --green-light: #79CC48;
    --green-glow: rgba(93, 184, 50, 0.3);

    /* Light-theme surfaces */
    --surface-bg: #F4F7FC;       /* page background */
    --surface-alt: #E8EDF7;      /* alternate section background */
    --card-bg: #FFFFFF;          /* card / content surface */
    /* Footer */
    --footer-bg: #001233;        /* deep navy anchor, derived from brand blue */
    /* Text */
    --text-white: #FFFFFF;
    --text-body: #1A1A1A;        /* charcoal — matches logo wordmark */
    --text-muted: #64748B;

    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #0066FF 0%, #00CCFF 100%);
    --gradient-orange: linear-gradient(135deg, #FF6B00 0%, #FFB800 100%);
    --gradient-green: linear-gradient(135deg, #5DB832 0%, #A8E063 100%);
    --gradient-hero: linear-gradient(135deg, #F4F7FC 0%, #E8EDF7 50%, #DCE4F5 100%);
    --gradient-energetic: linear-gradient(135deg, #0066FF 0%, #FF6B00 50%, #5DB832 100%);
    --gradient-red: linear-gradient(135deg, #DC3545 0%, #FF6B6B 100%);
    --red-glow: rgba(220, 53, 69, 0.3);
}

/* ===== Base Styles ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--surface-bg);
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

/* ===== Typography Scale ===== */
h1, .h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

h2, .h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.3px;
}

h3, .h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
}

h4, .h4 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
}

small, .small {
    font-size: 13px;
}

/* Eyebrow / race-bib label treatment */
.eyebrow {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* ===== Navbar Styles ===== */
.navbar {
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    padding: 0.8rem 1rem;
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.navbar.navbar-scrolled,
.navbar.navbar-solid {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
    height: 60px;
    max-height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--blue-glow));
    transition: height 0.3s ease;
}

.navbar.navbar-scrolled .navbar-brand img,
.navbar.navbar-solid .navbar-brand img {
    height: 48px;
    max-height: 48px;
}

.navbar-toggler i {
    color: var(--orange-primary);
    font-size: 1.3rem;
}

.navbar-text {
    color: inherit;
}

.live-pulse-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff3b3b;
    box-shadow: 0 0 6px #ff3b3b;
    animation: live-pulse 1.2s infinite;
    flex-shrink: 0;
}

.navbar .nav-link {
    color: #fff !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar.navbar-scrolled .nav-link,
.navbar.navbar-solid .nav-link {
    color: var(--text-body) !important;
}

.navbar .nav-link:hover {
    color: var(--orange-primary) !important;
    background: rgba(255, 107, 0, 0.1);
}

.navbar .nav-link.active {
    background: var(--orange-primary) !important;
    color: #fff !important;
}

.navbar .nav-link i {
    color: inherit;
    transition: color 0.3s ease;
}

.navbar.navbar-scrolled .nav-link i,
.navbar.navbar-solid .nav-link i {
    color: var(--blue-primary);
}

.navbar .nav-link:hover i {
    color: var(--orange-primary);
}

.navbar .dropdown-menu {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 0.5rem;
}

.navbar .dropdown-item {
    color: var(--text-body);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background: var(--gradient-orange);
    color: white;
}

.navbar .dropdown-divider {
    border-color: rgba(0, 0, 0, 0.1);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    padding: 80px 0 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 2px;
}

.section-header.blue h2 {
    color: var(--blue-primary);
}

.section-header.orange h2 {
    color: var(--orange-primary);
}

.section-header.green h2 {
    color: var(--green-primary);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 1000px;
    margin: 20px auto 0;
}

/* ===== Service Cards ===== */
.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.3);
}

.service-card.orange:hover {
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.2);
    border-color: rgba(255, 107, 0, 0.3);
}

.service-card.orange::before {
    background: var(--gradient-orange);
}

.service-card.green:hover {
    box-shadow: 0 20px 60px rgba(0, 204, 102, 0.2);
    border-color: rgba(0, 204, 102, 0.3);
}

.service-card.green::before {
    background: var(--gradient-green);
}

.service-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 10px 30px var(--blue-glow);
}

.service-card.orange .service-card-icon {
    background: var(--gradient-orange);
    box-shadow: 0 10px 30px var(--orange-glow);
}

.service-card.green .service-card-icon {
    background: var(--gradient-green);
    box-shadow: 0 10px 30px var(--green-glow);
}

.service-card img {
    max-height: 80px;
    filter: brightness(1.1);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-body);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== Buttons ===== */
.btn-blue {
    background: var(--gradient-blue);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--blue-glow);
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--blue-glow);
    color: white;
}

.btn-orange {
    background: var(--gradient-orange);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--orange-glow);
}

.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--orange-glow);
    color: white;
}

.btn-green {
    background: var(--gradient-green);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--green-glow);
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--green-glow);
    color: white;
}

.btn-red {
    background: var(--gradient-red);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--red-glow);
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--red-glow);
    color: white;
}

.btn-outline-energy {
    background: transparent;
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-energy:hover {
    background: var(--gradient-orange);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px var(--orange-glow);
}

/* ===== Button Size Variants ===== */
.btn-blue.btn-sm, .btn-orange.btn-sm, .btn-green.btn-sm, .btn-red.btn-sm,
.btn-outline-blue.btn-sm, .btn-outline-orange.btn-sm, .btn-outline-green.btn-sm {
    padding: 6px 18px;
    font-size: 0.82rem;
}

.btn-blue.btn-lg, .btn-orange.btn-lg, .btn-green.btn-lg, .btn-red.btn-lg,
.btn-outline-blue.btn-lg, .btn-outline-orange.btn-lg, .btn-outline-green.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ===== Ghost / Outline Button Variants ===== */
.btn-outline-blue {
    background: transparent;
    border: 2px solid var(--blue-primary);
    color: var(--blue-primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-outline-blue:hover {
    background: var(--gradient-blue);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px var(--blue-glow);
}

.btn-outline-orange {
    background: transparent;
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-outline-orange:hover {
    background: var(--gradient-orange);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px var(--orange-glow);
}

.btn-outline-green {
    background: transparent;
    border: 2px solid var(--green-primary);
    color: var(--green-primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-outline-green:hover {
    background: var(--gradient-green);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px var(--green-glow);
}

/* ===== Form Styles ===== */
.form-control,
.form-select {
    border-radius: 50px;
    border: 1.5px solid #CBD5E1;
    padding: 10px 20px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px var(--blue-glow);
    outline: none;
}

.form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-body);
    margin-bottom: 6px;
    display: block;
}

textarea.form-control {
    border-radius: 16px;
    padding: 12px 20px;
}

/* ===== Badges ===== */
.badge-blue {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    color: var(--blue-primary);
    border: 1px solid rgba(0, 102, 255, 0.25);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    padding: 4px 12px;
}

.badge-orange {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--orange-dark);
    border: 1px solid rgba(255, 107, 0, 0.25);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    padding: 4px 12px;
}

.badge-green {
    display: inline-block;
    background: rgba(93, 184, 50, 0.1);
    color: var(--green-dark);
    border: 1px solid rgba(93, 184, 50, 0.25);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    padding: 4px 12px;
}

.badge-red {
    display: inline-block;
    background: rgba(220, 53, 69, 0.1);
    color: #B02A37;
    border: 1px solid rgba(220, 53, 69, 0.25);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    padding: 4px 12px;
}

.badge-neutral {
    display: inline-block;
    background: rgba(100, 116, 139, 0.1);
    color: var(--text-muted);
    border: 1px solid rgba(100, 116, 139, 0.2);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    padding: 4px 12px;
}

/* ===== Feature Sections ===== */
.feature-section {
    padding: 80px 0;
    position: relative;
}

.feature-section:nth-child(even) {
    background: var(--surface-alt);
}

.feature-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-body);
    margin-bottom: 20px;
}

.feature-content h2 span {
    color: var(--orange-primary);
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.feature-image {
    position: relative;
}

.feature-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.feature-image:hover img {
    transform: scale(1.03);
}

.feature-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--blue-primary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--gradient-energetic);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 28, 0.85);
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== Dividers ===== */
.energy-divider {
    height: 4px;
    background: var(--gradient-energetic);
    border: none;
    margin: 60px 0;
    border-radius: 2px;
}

.featurette-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-primary), var(--orange-primary), var(--green-primary), transparent);
    border: none;
    margin: 60px 0;
}

/* ===== Animations ===== */
@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px var(--blue-glow));
    }
    33% {
        filter: drop-shadow(0 0 20px var(--orange-glow));
    }
    66% {
        filter: drop-shadow(0 0 20px var(--green-glow));
    }
}

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

@keyframes live-pulse {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 6px #ff3b3b; }
    50%       { transform: scale(1.5); opacity: 0.6; box-shadow: 0 0 12px #ff3b3b; }
}

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

.animate-on-scroll {
    animation: slideUp 0.6s ease-out forwards;
}

/* ===== Partners / Thank You Section ===== */
.partners-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.partners-section .section-header h2 {
    color: var(--text-body);
}

.partners-section .section-header h2 span {
    background: var(--gradient-energetic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.partner-logo-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    padding: 12px 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    max-width: 250px;
    max-height: 200px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.partner-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 102, 255, 0.15);
    border-color: var(--blue-primary);
}

.partner-logo-card img {
    max-width: 180px;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.partner-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.partner-logo-card:hover .partner-label {
    color: var(--blue-primary);
}

/* ===== Event Detail — Info Strip ===== */
.event-detail-title h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin: 0;
}

.event-title-bar {
    height: 4px;
    width: 72px;
    background: var(--gradient-energetic);
    border-radius: 2px;
    margin-top: 10px;
}

.event-info-strip {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    padding: 20px 32px;
    gap: 0;
    flex-wrap: wrap;
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 180px;
    padding: 8px 12px;
}

.event-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.card-body .card-text {
    word-wrap: break-word;
    overflow-wrap: anywhere;
}
.card-body .card-text img,
.card-body .card-text video,
.card-body .card-text iframe {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.25rem auto;
    object-fit: contain;
}
.card-body .card-text figure {
    margin: 1.5rem 0;
}

.event-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-info-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
}

.event-info-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-body);
    line-height: 1.2;
}

.event-info-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.event-info-divider {
    width: 1px;
    height: 48px;
    background: rgba(0, 0, 0, 0.09);
    flex-shrink: 0;
    align-self: center;
}

@media (max-width: 767px) {
    .event-info-strip {
        padding: 16px 20px;
    }
    .event-info-divider {
        width: 100%;
        height: 1px;
        margin: 4px 0;
    }
    .event-info-item {
        width: 100%;
    }
}

/* ===== Footer Styles ===== */
.footer {
    background: var(--footer-bg);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-energetic);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column h3 i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.9rem;
}

.footer-column.blue h3 {
    color: var(--blue-primary);
}

.footer-column.blue h3 i {
    background: var(--gradient-blue);
    color: white;
}

.footer-column.orange h3 {
    color: var(--orange-primary);
}

.footer-column.orange h3 i {
    background: var(--gradient-orange);
    color: white;
}

.footer-column.green h3 {
    color: var(--green-primary);
}

.footer-column.green h3 i {
    background: var(--gradient-green);
    color: white;
}

.footer-column.blue-alt h3 {
    color: var(--blue-light);
}

.footer-column.blue-alt h3 i {
    background: var(--gradient-blue);
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--orange-primary);
    padding-left: 5px;
}

.footer-column ul a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Brand column tagline */
.footer-brand-tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social a:hover {
    background: var(--gradient-orange);
    color: white;
    transform: translateY(-5px);
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-bottom .energy-text {
    background: var(--gradient-energetic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .feature-image::before {
        display: none;
    }
}

/* ===== Offcanvas Navbar Links ===== */
#navOffcanvas {
    max-width: 300px;
    background: #fff;
}

.offcanvas-header {
    padding: 1.2rem 1.5rem;
}

.offcanvas-title img {
    height: 44px;
    max-height: 44px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
}

.offcanvas .nav-link {
    color: var(--text-body);
    font-weight: 600;
    padding: 0.6rem 1rem !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
    background: var(--orange-primary);
    color: #fff !important;
}

/* ===== Responsive Table → Card pattern ===== */
@media (max-width: 767px) {
    .table-card-mobile thead {
        display: none;
    }
    .table-card-mobile tr {
        display: block;
        background: var(--card-bg);
        border-radius: 12px;
        border: 1px solid rgba(0,0,0,0.07);
        margin-bottom: 12px;
        padding: 12px 16px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .table-card-mobile td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 4px 0;
        border: none;
        font-size: 0.9rem;
    }
    .table-card-mobile td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-muted);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        flex-shrink: 0;
        margin-right: 8px;
    }
}

/* ===== Spacing Scale ===== */
.section-sm { padding-top: 24px; padding-bottom: 24px; }
.section-md { padding-top: 48px; padding-bottom: 48px; }
.section-lg { padding-top: 96px; padding-bottom: 96px; }

/* ===== Container Max Width ===== */
.container {
    max-width: 1200px;
}

/* ===== Image Utilities ===== */
.event-cover-img {
    aspect-ratio: 1.91 / 1;
    object-fit: cover;
    width: 100%;
    border-radius: 12px;
}

.img-placeholder {
    aspect-ratio: 1.91 / 1;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--orange-primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder img {
    max-height: 80px;
    opacity: 0.8;
    filter: brightness(0) invert(1);
}

/* ===== Utility Classes ===== */
.text-blue {
    color: var(--blue-primary) !important;
}

.text-orange {
    color: var(--orange-primary) !important;
}

.text-green {
    color: var(--green-primary) !important;
}

.bg-dark-card {
    background: var(--dark-card);
}

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