@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@400;500&display=swap');

:root {
    /* Design Tokens from Reference Site */
    --primary: 187 65% 35%; /* Teal */
    --secondary: 18 85% 54%; /* Orange */
    --primary-foreground: 0 0% 100%;
    --secondary-foreground: 0 0% 100%;
    --background: 0 0% 100%;
    --foreground: 222 47% 11%; /* Dark Slate/Navy */
    --muted: 210 40% 96%;
    --muted-foreground: 215 16% 47%;
    --border: 214 32% 91%;
    --radius: 0.75rem;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: hsl(var(--foreground));
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
h6.section-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
    display: block;
}

/* Navbar Refinement */
.navbar {
    background-color: transparent !important;
    padding: 1.5rem 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.navbar.scrolled .nav-link {
    color: hsl(var(--foreground)) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    background-color: hsla(var(--primary), 0.1) !important;
    color: hsl(var(--primary)) !important;
}

/* Buttons - Premium Rounded Style */
.btn {
    border-radius: 9999px;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: hsl(var(--secondary)) !important;
    border: none !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: hsl(var(--secondary) / 0.9) !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px hsla(var(--secondary), 0.2);
}

.btn-secondary {
    background-color: hsl(var(--primary)) !important;
    border: none !important;
    color: white !important;
}

.btn-secondary:hover {
    background-color: hsl(var(--primary) / 0.9) !important;
    transform: translateY(-1px);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background-color: transparent !important;
    color: white !important;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: white !important;
}

.glass-pill {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 0.375rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white !important;
    font-size: 0.875rem;
    font-weight: 500;
}

.glass-pill i {
    color: #eab308 !important; /* Tailwind yellow-500 */
}

.glass-counter-box,
.countdown-item {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 1.5rem;
    min-width: 100px;
    text-align: center;
    color: white;
}

.countdown-number {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
}

.internal-hero {
    min-height: 450px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.internal-hero-content {
    position: relative;
    z-index: 2;
}

.hero-pill {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-circle-decoration {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: hsl(var(--secondary));
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

/* Countdown */
.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 100px;
    height: 120px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Partners */
.partner-logo {
    max-height: 50px;
    filter: none;
    opacity: 1;
    transition: var(--transition-base);
}

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

/* Race Categories Section */
.race-categories-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.race-categories-intro {
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: rgb(98, 115, 132);
}

/* Home race categories & activities page — card title/body typography */
.race-categories-section .card .card-body h5,
.activities-cards-section .card .card-body h5 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: rgb(29, 38, 48);
}

.race-categories-section .card .card-body > p,
.activities-cards-section .card .card-body > p {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22.75px;
    color: rgb(98, 115, 132);
    flex-grow: 1;
}

.race-categories-section .card .card-body > a {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: rgb(31, 134, 147);
    text-decoration: none;
}

.race-categories-section .card .card-body > a:hover {
    color: rgb(24, 108, 118);
}

.race-categories-header {
    text-align: center;
    margin-bottom: 60px;
}

.race-categories-label {
    color: hsl(var(--primary)) !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.race-categories-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0 auto 20px;
    line-height: 1.2;
    max-width: 600px;
}

.race-categories-subtitle {
    color: #666666;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.category-card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.category-card .card-img-top {
    height: 250px;
    object-fit: cover;
    display: block;
}

.category-card .card-body,
.card .card-body {
    padding: 1.25rem; /* p-5 */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.category-card h5 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 16px;
    line-height: 1.3;
}

.category-card p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.category-card a {
    color: hsl(var(--primary));
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.category-card a:hover {
    color: hsl(var(--primary));
    gap: 12px;
}

.category-card a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.category-card a:hover i {
    transform: translateX(3px);
}

.category-img {
    height: 250px;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    background-color: hsl(var(--primary));
    color: white;
    padding: 100px 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -150px;
    left: -150px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
}

/* Internal Hero */
.internal-hero {
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
}

.internal-hero .container {
    position: relative;
    z-index: 1;
}

/* Values Grid */
.value-card {
    background: white;
    padding: 30px;
    border-radius: 1rem;
    height: 100%;
    transition: var(--transition-base);
    border: 1px solid hsl(var(--border));
}

.value-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: hsl(var(--muted));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: hsl(var(--primary));
}

/* Activity Details */
.activity-hero {
    padding: 100px 0 60px;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.activity-icon-badge {
    width: 60px;
    height: 60px;
    background: hsl(var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.info-box {
    background: white;
    padding: 20px;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.info-box-icon {
    width: 40px;
    height: 40px;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expect-list {
    list-style: none;
    padding: 0;
}

.expect-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.expect-number {
    width: 30px;
    height: 30px;
    background: hsl(var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.target-box {
    background: #fcf8f3;
    padding: 30px;
    border-radius: 1rem;
    margin: 40px 0;
}

/* Header active pill */
.active-pill {
    background-color: hsl(var(--muted));
    border-radius: 50px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    color: hsl(var(--primary)) !important;
}

/* Footer refinement */
.footer {
    background-color: #1a242d !important;
    /* Deep Navy/Black from screenshot */
    color: rgba(255, 255, 255, 0.8);
}

.footer h5 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none !important;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 12px;
    transition: var(--transition-base);
}

.footer-link:hover {
    color: hsl(var(--secondary));
}

/* Dropdown Hover */
.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-item {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    transition: var(--transition-base);
}

.dropdown-item:hover {
    background-color: hsl(var(--primary) / 0.05);
    color: hsl(var(--primary));
    padding-left: 1.75rem;
}

/* Countdown Refinement */
.countdown-item {
    background: hsla(var(--foreground), 0.6);
    backdrop-filter: blur(8px);
    width: 90px;
    height: 110px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-number {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Hero Section Refinements */
.hero-section h1 {
    color: white !important;
}

.hero-section .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.hero-section {
    padding-bottom: 2.5rem;
    box-sizing: border-box;
}

.hero-section .countdown-container {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
}

.hero-section .hero-title {
    margin-top: 2.25rem;
}

.hero-illustration {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 100px 0;
    position: relative;
}

.hero-illustration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    /* Subtle overlay for text readability */
    z-index: 1;
}

.hero-illustration>* {
    position: relative;
    z-index: 2;
}

/* Numbered Lists (What to Expect) */
.numbered-list {
    list-style: none;
    padding: 0;
}

.numbered-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.number-badge {
    background-color: hsl(var(--primary));
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: bold;
}

/* Info Boxes */
.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    transition: var(--transition-base);
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    background-color: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Value Cards for About Us */
.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: var(--transition-base);
}

.value-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.value-icon {
    color: #0d9488;
    /* Teal color from screenshot */
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.bg-light-box {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
}

/* Buttons */
.btn-teal {
    background-color: hsl(var(--primary));
    color: white;
    border: none;
}

.btn-teal:hover {
    background-color: hsl(var(--primary) / 0.9);
    color: white;
}

.btn-outline-white {
    border: 1px solid white;
    color: white;
    background: transparent;
}

.btn-outline-white:hover {
    background: white;
    color: #1a242d;
}

/* CTA Circle Decorations */
.cta-circle {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.cta-circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
}

.cta-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* Footer bottom alignment */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Event Page Components */
.info-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.event-info-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    height: 100%;
}

.event-info-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(31, 134, 147, 0.1);
    color: rgb(31, 134, 147);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.numbered-list-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.numbered-list-circle {
    width: 36px;
    height: 36px;
    background: rgb(31, 134, 147);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.who-box {
    background: #fdfaf7;
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    border: 1px solid rgba(31, 134, 147, 0.05);
}

.event-hero-icon {
    width: 80px;
    height: 80px;
    background: hsl(var(--primary));
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
    box-shadow: 0 10px 20px hsla(var(--primary), 0.3);
}

@media (max-width: 768px) {
    .info-card-container {
        grid-template-columns: 1fr;
        margin-top: -40px;
        padding: 0 15px;
        gap: 15px;
    }
    
    .event-info-card {
        padding: 20px;
    }
    
    .who-box {
        padding: 25px;
    }
    
    .event-hero-icon {
        width: 65px;
        height: 65px;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    /* Stack buttons on event pages on mobile */
    .col-lg-10 .d-flex.flex-wrap.gap-3.mt-5 {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .col-lg-10 .d-flex.flex-wrap.gap-3.mt-5 .btn {
        width: 100% !important;
        text-align: center;
    }

    /* Form responsiveness */
    .card.p-5 {
        padding: 25px !important;
    }

    .form-control, .form-select {
        font-size: 16px !important; /* Prevent iOS zoom */
        padding: 12px 15px !important;
    }
}

/* Mobile Responsive Overrides */
@media (max-width: 991px) {
    .navbar-brand {
        padding: 5px 10px !important;
    }

    .brand-logo-img {
        height: 25px !important;
    }

    .brand-logo-vr {
        height: 15px !important;
    }

    .hero-section {
        min-height: 80vh !important;
        padding-top: 140px !important;
        padding-bottom: 100px !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem;
    }

    .display-1 {
        font-size: 3rem !important;
    }

    .display-2 {
        font-size: 2.5rem !important;
    }

    .display-3 {
        font-size: 2.25rem !important;
    }

    .display-4 {
        font-size: 2rem !important;
    }

    .display-5 {
        font-size: 1.75rem !important;
    }

    .display-6 {
        font-size: 1.5rem !important;
    }

    .glass-counter-box,
    .countdown-item {
        min-width: 70px !important;
        width: 75px !important;

        padding: 1rem 0.5rem !important;
        margin: 0 4px !important;
    }

    .glass-counter-box .display-5,
    .countdown-number {
        font-size: 1.5rem !important;
    }

    .glass-counter-box .small,
    .countdown-label {
        font-size: 0.6rem !important;
    }

    .hero-section .d-flex.gap-3 {
        gap: 0.75rem !important;
    }

    .hero-section .btn {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }

    /* Reduce vertical gaps in mobile */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .container.py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem !important;
    }

    .glass-pill {
        font-size: 0.75rem !important;
        padding: 4px 15px !important;
    }

    .hero-section .hero-cta-buttons,
    .hero-section .d-flex.justify-content-center.gap-3.mb-5 {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section .btn {
        width: 100%;
    }

    .countdown-separator {
        display: none;
    }
}

/* ----- Form pages (register / contact — aligned with Base44 reference) ----- */
.form-page-hero {
    position: relative;
    overflow: hidden;
    /* pt-32 pb-16 md:pt-40 md:pb-20 (stall + team) */
    padding: 8rem 0 4rem;
}

@media (min-width: 768px) {
    .form-page-hero {
        padding: 10rem 0 5rem;
    }
}

/* Activity hero: pt-32 pb-12 md:pt-40 md:pb-16 */
.form-page-hero--pad-activity {
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .form-page-hero--pad-activity {
        padding-bottom: 4rem;
    }
}

.form-page-hero--primary {
    background-color: hsl(var(--primary));
    color: #fff;
}

.form-page-hero--secondary {
    background-color: #f16522;
    color: #fff;
}

.form-page-hero-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.35) 0%, transparent 45%);
}

.form-page-hero-decoration--secondary {
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.35) 0%, transparent 50%);
}

.form-page-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.form-page-pill--secondary {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.form-page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
}

.form-page-hero-lead {
    font-family: var(--font-body);
    font-size: 1rem;
    max-width: 42rem;
}

@media (min-width: 768px) {
    .form-page-hero-lead {
        font-size: 1.125rem;
    }
}

.form-page-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2rem;
    font-size: 0.875rem;
}

.form-page-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.form-page-section {
    background-color: hsl(var(--background));
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .form-page-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.form-page-frame {
    max-width: 42rem;
}

.form-page-frame--narrow {
    max-width: 36rem;
}

.form-page-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.form-page-card-sub {
    font-family: var(--font-body);
}

.form-page-label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.form-page-control {
    font-family: var(--font-body);
    border-radius: 0.5rem;
    border: 1px solid hsl(var(--border));
    padding: 0.625rem 0.875rem;
    min-height: 2.75rem;
}

.form-page-control:focus {
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsla(var(--primary), 0.18);
}

textarea.form-page-control {
    min-height: auto;
}

.form-page-btn-primary {
    background-color: hsl(var(--primary));
    border: none;
    color: #fff;
    min-height: 2.75rem;
    font-size: 1rem;
}

.form-page-btn-primary:hover {
    background-color: hsl(187 65% 30%);
    color: #fff;
}

.form-page-btn-secondary {
    background-color: #f16522;
    border: none;
    color: #fff;
    min-height: 2.75rem;
    font-size: 1rem;
}

.form-page-btn-secondary:hover {
    background-color: #d95516;
    color: #fff;
}

.form-page-icon-tile {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: hsla(var(--primary), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-page-social {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.form-page-social:hover {
    background: hsl(var(--primary));
    color: #fff;
}

.form-page-back svg,
.form-page-back i,
.form-page-meta svg,
.form-page-pill svg,
.form-page-icon-tile svg,
.form-page-social svg,
.form-page-btn-primary svg,
.form-page-btn-secondary svg {
    flex-shrink: 0;
}

.lucide-16 {
    width: 16px;
    height: 16px;
}

.lucide-20 {
    width: 20px;
    height: 20px;
}

.lucide-activity {
    width: 40px;
    height: 40px;
    color: #fff;
}

.form-page-activity-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-page-activity-icon--primary {
    background-color: #f16522;
}

.form-page-activity-icon--secondary {
    background-color: hsl(var(--primary));
}

.form-page-activity-icon--accent {
    background-color: hsl(45 90% 55%);
}

.form-page-activity-icon--accent .lucide-activity {
    color: hsl(210 25% 15%);
}

/* Base44 reference — image heroes, venue, contact grid */
.ref-hero-image {
    position: relative;
    overflow: hidden;
    padding: 8rem 0 5rem;
}

@media (min-width: 768px) {
    .ref-hero-image {
        padding: 10rem 0 6rem;
    }
}

.ref-hero-image-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ref-hero-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ref-hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.ref-hero-image-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.ref-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
}

.ref-hero-lead {
    font-family: var(--font-body);
    font-size: 1rem;
    max-width: 42rem;
}

@media (min-width: 768px) {
    .ref-hero-lead {
        font-size: 1.125rem;
    }
}

.ref-page-section {
    background-color: hsl(var(--background));
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .ref-page-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.ref-max-6xl {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.ref-aspect-video {
    aspect-ratio: 16 / 9;
}

.ref-venue-photo-wrap {
    border-radius: 1.5rem;
}

.ref-venue-h2 {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.ref-venue-body {
    line-height: 1.625;
}

.ref-btn-maps {
    background-color: hsl(var(--primary));
    color: #fff;
    border: none;
    min-height: 2.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-weight: 600;
}

.ref-btn-maps:hover {
    background-color: hsl(187 65% 30%);
    color: #fff;
}

.ref-sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.ref-link-muted:hover {
    color: hsl(var(--primary)) !important;
}

.ref-btn-submit-primary {
    background-color: hsl(var(--primary));
    color: #fff;
    border: none;
    min-height: 2.75rem;
    font-size: 1rem;
}

.ref-btn-submit-primary:hover {
    background-color: hsl(187 65% 30%);
    color: #fff;
}

.ref-input-tight {
    min-height: 2.25rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .ref-input-tight {
        font-size: 0.875rem;
    }
}

.ref-form-stack {
    gap: 1.25rem !important;
}

.ref-contact-form-body .form-page-label {
    margin-bottom: 0;
}

/* Corporate page — Base44 reference (sizes + layout) */
.corp-intro-section {
    background-color: hsl(var(--background));
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .corp-intro-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.corp-max-4xl {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.corp-max-7xl {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.corp-max-3xl {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.corp-kicker {
    letter-spacing: 0.06em;
}

.corp-intro-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    line-height: 1.2;
}

@media (min-width: 576px) {
    .corp-intro-heading {
        font-size: clamp(2rem, 3.5vw, 2.25rem);
    }
}

.corp-intro-lead {
    max-width: 48rem;
    line-height: 1.625;
    font-size: 1rem;
}

.corp-packages-section {
    background-color: hsl(var(--background));
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .corp-packages-section {
        padding-bottom: 6rem;
    }
}

.corp-package-card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.corp-package-card--featured {
    box-shadow: 0 0 0 2px hsl(var(--primary)), 0 20px 40px rgba(0, 0, 0, 0.08);
}

.corp-pkg-header {
    padding: 1.5rem;
}

.corp-pkg-header--platinum {
    background-color: hsl(210 25% 15%);
    color: #fff;
}

.corp-pkg-header--gold {
    background-color: hsl(45 90% 55%);
    color: hsl(210 25% 15%);
}

.corp-pkg-header--silver {
    background-color: hsl(30 30% 94%);
    color: hsl(210 25% 15%);
    border-bottom: 1px solid hsl(var(--border));
}

.corp-pkg-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.55rem;
    border-radius: 0.35rem;
}

.corp-pkg-header--platinum .corp-pkg-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.corp-pkg-header--gold .corp-pkg-badge {
    background: rgba(0, 0, 0, 0.08);
    color: hsl(210 25% 15%);
}

.corp-pkg-header--silver .corp-pkg-badge {
    background: rgba(0, 0, 0, 0.06);
    color: hsl(210 25% 15%);
}

.corp-pkg-header-icon {
    width: 32px;
    height: 32px;
    opacity: 0.6;
    flex-shrink: 0;
}

.corp-pkg-header--platinum .corp-pkg-header-icon {
    color: #fff;
}

.corp-pkg-header--gold .corp-pkg-header-icon,
.corp-pkg-header--silver .corp-pkg-header-icon {
    color: hsl(210 25% 15%);
}

.corp-pkg-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
}

.corp-pkg-header--platinum .corp-pkg-card-title {
    color: #fff;
}

.corp-pkg-body {
    padding: 1.5rem;
}

.corp-pkg-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.corp-pkg-li {
    align-items: flex-start;
}

.corp-pkg-check {
    width: 16px;
    height: 16px;
    color: hsl(var(--primary));
    margin-top: 2px;
}

.corp-pkg-benefit-text {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
}

.corp-cta-section {
    background-color: hsl(var(--primary));
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.corp-cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.8vw, 1.875rem);
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 576px) {
    .corp-cta-heading {
        font-size: clamp(1.75rem, 3vw, 1.875rem);
    }
}

.corp-cta-lead {
    max-width: 42rem;
    font-size: 1rem;
}

.corp-cta-btn {
    background-color: #f16522;
    border: none;
    color: #fff;
    padding: 0.625rem 2rem;
    min-height: 2.75rem;
    font-size: 1rem;
}

.corp-cta-btn:hover {
    background-color: #d95516;
    color: #fff;
}

.corp-cta-btn svg,
.corp-cta-btn i[data-lucide] {
    flex-shrink: 0;
}

/* Fix for horizontal scroll issues in rows */
.row {
    margin-right: 0;
    margin-left: 0;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}
