/* CSS Variables and Global Settings */
:root {
    --primary: #0B3B3F;
    --primary-light: #15555A;
    --secondary: #AC6035;
    --secondary-light: #C57B4F;
    --accent: #C9862E;
    --accent-light: #E09C44;
    --bg-light: #FCFAF7;
    --bg-soft: #F1F5F7;
    --text-dark: #1C292A;
    --text-muted: #5F7375;
    --white: #ffffff;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography styling */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    width: 100%;
}

.centered {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(11, 59, 63, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 59, 63, 0.35);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(172, 96, 53, 0.25);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(172, 96, 53, 0.35);
}

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

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(252, 250, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(11, 59, 63, 0.05);
}

.main-header.scrolled {
    height: 70px;
    background-color: var(--bg-light);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 75px;
    max-height: 75px;
    width: auto;
    transition: var(--transition-smooth);
    padding: 4px 0;
}

.scrolled .nav-logo {
    height: 65px;
    max-height: 65px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-smooth);
}

.nav-item:hover {
    color: var(--secondary);
}

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

/* Brochure Nav Badge Link */
.brochure-badge-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.brochure-badge-link .badge {
    background-color: var(--accent);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
    transform-origin: left center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, -1px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 1px);
}

/* Mobile Navigation Dropdown */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

/* Hero Section Styling */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('assets/family.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(11, 59, 63, 0.8) 0%, rgba(11, 59, 63, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 24px 90px 24px; /* Added 90px bottom padding to reserve space for scroll indicator */
    animation: fadeIn 1s ease-out;
}

.hero-logo-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.hero-logo {
    max-height: 120px;
    width: auto;
    transition: var(--transition-smooth);
}

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

.tagline-pill {
    display: inline-block;
    background-color: rgba(201, 134, 46, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 4px;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--accent-light);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 24px; /* Reduced from 40px to pull buttons upward */
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.scroll-indicator:hover {
    color: var(--white);
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheelAnim 1.6s ease-out infinite;
}

@keyframes scrollWheelAnim {
    0% {
        top: 6px;
        opacity: 1;
    }
    50% {
        top: 14px;
        opacity: 0.5;
    }
    100% {
        top: 20px;
        opacity: 0;
    }
}

/* Our Story Section Styling */
.story-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image-block {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.story-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.story-badge-experience {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--white);
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 4px solid var(--accent);
}

.story-badge-experience .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-light);
    margin-bottom: 4px;
}

.story-badge-experience .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-align: center;
    line-height: 1.3;
}

.label-decor {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 24px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
    margin-top: 12px;
}

.section-title.centered::after {
    margin-left: auto;
    margin-right: auto;
}

.section-lead-center {
    max-width: 700px;
    margin: -10px auto 50px auto;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.lead-paragraph {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--primary-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.body-paragraph {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 24px;
}

.philosophy-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--secondary);
    border-left: 3px solid var(--secondary);
    padding-left: 20px;
    margin-top: 30px;
}

/* Pillars Section Styling */
.pillars-section {
    padding: 100px 0;
    background-color: var(--bg-soft);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar-card {
    background-color: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--primary);
}

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

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.pillar-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Excursions Section Styling */
.excursions-section {
    padding: 100px 0;
}

.excursion-split-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.excursion-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.excursion-card:hover {
    box-shadow: var(--shadow-lg);
}

.excursion-image-container {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.excursion-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.excursion-card:hover .excursion-img {
    transform: scale(1.04);
}

.category-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.tag-kids {
    background-color: var(--primary);
}

.tag-parents {
    background-color: var(--secondary);
}

.excursion-content {
    padding: 40px 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.excursion-content h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.excursion-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-list li {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.features-list li span {
    color: var(--accent);
    font-size: 1.1rem;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}

.features-list li strong {
    color: var(--primary);
    font-weight: 700;
}

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

.activity-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.activity-text p {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* Curated Experiences Image Container */
.activity-image-container {
    position: relative;
    height: 320px;
    overflow: hidden;
}

/* FAQ Accordion Styling */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: left;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-arrow {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-answer {
    padding: 0 24px 24px 24px;
    display: none;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-top: 1px solid rgba(11, 59, 63, 0.04);
}

/* Waitlist Form Styling */
.waitlist-section {
    padding: 100px 0;
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.waitlist-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 134, 46, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.waitlist-box {
    max-width: 750px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 60px 48px;
    box-shadow: var(--shadow-lg);
}

.waitlist-header {
    text-align: center;
    margin-bottom: 40px;
}

.waitlist-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.waitlist-header h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--white);
}

.waitlist-header p {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin: 0 auto;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(201, 134, 46, 0.25);
}

.form-group select option {
    background-color: var(--primary);
    color: var(--white);
}

/* Success Card */
.form-success-card {
    text-align: center;
    animation: scaleIn 0.5s ease-out;
}

.success-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 24px auto;
    box-shadow: 0 4px 15px rgba(201, 134, 46, 0.4);
}

.form-success-card h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--white);
}

.success-intro {
    font-size: 1.1rem;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.success-details {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer Section Styling */
.main-footer {
    background-color: #08292C;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition-smooth);
    width: fit-content;
}

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

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-email a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.contact-email a:hover {
    color: var(--accent-light);
}

.contact-phone {
    font-weight: 600;
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

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

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-image-block {
        padding-right: 0;
        padding-bottom: 0;
        max-width: 650px;
        margin: 0 auto;
    }

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

    .excursion-split-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav.active {
        display: flex;
    }

    .hero-title {
        font-size: 2.3rem;
    }

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

    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 320px;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .story-badge-experience {
        padding: 16px 24px;
    }

    .story-badge-experience .number {
        font-size: 2rem;
    }

    .excursion-image-container {
        height: 220px;
    }

    .schedule-timeline {
        padding: 24px;
    }

    .schedule-timeline::before {
        left: 24px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 12px;
        padding-left: 20px;
    }

    .time-badge {
        min-width: unset;
        width: fit-content;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .waitlist-box {
        padding: 32px 24px;
    }

    .waitlist-header h2 {
        font-size: 1.8rem;
    }

    .success-actions {
        flex-direction: column;
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 1;
    }
}
