:root {
    --primary: #ff3131;
    /* Brand Red */
    --primary-hover: #ff5555;
    --secondary: #38b6ff;
    /* Brand Blue */
    --secondary-hover: #5fc6ff;
    --accent-green: #32CD32;
    /* Lime Green for fun accents */
    --accent-tan: #c1a781;
    /* Gray Orange (brand) */
    --accent-olive: #8d8b54;
    /* Gray Olive (brand) */
    --light-bg: #ffffff;
    --section-bg: #f0f9ff;
    /* Very light blue tint */
    --card-bg: #ffffff;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --gradient: linear-gradient(135deg, #ff3131 0%, #ff5e5e 100%);
    --gradient-blue: linear-gradient(135deg, #38b6ff 0%, #0091e6 100%);
    /* Poppins stands in for Negrita Pro (a paid font). Swap via @font-face later. */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Screen-reader-only text (for SEO/accessibility, not visible) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accent {
    color: var(--primary);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 6px 18px rgba(255, 49, 49, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 49, 49, 0.32);
}

.btn-secondary {
    background: var(--secondary);
    border: 2px solid var(--secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(56, 182, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--secondary-hover);
    border-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 182, 255, 0.5);
}

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

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

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

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 18px 55px;
    font-size: 1.4rem;
}

/* Hero call-to-action: bigger, glowing, gently pulsing */
.hero .btn-large {
    font-size: 1.2rem;
    padding: 15px 42px;
    letter-spacing: 0.5px;
    color: #fff;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 35px rgba(255, 49, 49, 0.65), 0 0 0 rgba(255, 49, 49, 0.5);
    animation: ctaPulse 2.2s ease-in-out infinite;
}

.hero .btn-large:hover {
    transform: scale(1.07);
    box-shadow: 0 14px 45px rgba(255, 49, 49, 0.8);
    animation-play-state: paused;
}

/* Floating "sign the waiver" mascot popup (bottom-right) */
.waiver-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 990;
    width: 270px;
    background: #fff;
    border: 3px solid var(--secondary);
    border-radius: 20px;
    padding: 16px 16px 16px 14px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
    animation: popupIn 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28) 0.2s both;
}

.waiver-popup.dismissed {
    display: none;
}

/* little speech-bubble tail */
.waiver-popup::after {
    content: '';
    position: absolute;
    bottom: -11px;
    right: 36px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-right: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
    transform: rotate(45deg);
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.85);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.waiver-popup-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.waiver-popup-mascot {
    font-size: 2.8rem;
    line-height: 1;
    flex-shrink: 0;
    animation: mascotBob 1.6s ease-in-out infinite;
}

@keyframes mascotBob {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-6px) rotate(5deg);
    }
}

.waiver-popup-text {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 9px;
}

.waiver-popup-btn {
    display: inline-block;
    background: var(--gradient);
    color: #fff;
    font-size: 0.78rem;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(255, 49, 49, 0.3);
}

.waiver-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 49, 49, 0.45);
}

.waiver-popup-close {
    position: absolute;
    top: 4px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.2s ease;
}

.waiver-popup-close:hover {
    color: var(--primary);
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 35px rgba(255, 49, 49, 0.6), 0 0 0 0 rgba(255, 49, 49, 0.5);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(255, 49, 49, 0.75), 0 0 0 14px rgba(255, 49, 49, 0);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Turns the brand red once you scroll (home), and stays red on inner pages */
.navbar.scrolled,
body:not(.home) .navbar {
    background: var(--primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary);
    display: flex;
    align-items: center;
}

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

.nav-links a:not(.btn) {
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.nav-links a:not(.btn):hover {
    color: #fff;
    opacity: 0.8;
}

/* Header buttons: white so they stay visible over the video and the red bar */
.navbar .btn-small {
    font-family: var(--font-heading);
    border-radius: 50px;
    text-transform: none;
    transition: all 0.25s ease;
}

.navbar .btn-nav-solid {
    background: #fff;
    color: var(--primary);
    border: 2px solid #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.navbar .btn-nav-solid:hover {
    transform: translateY(-2px);
    background: #fff;
    color: var(--primary);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.navbar .btn-nav-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.navbar .btn-nav-outline:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    overflow: hidden;
    background: #ffffff;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px);
    }
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    z-index: 1;
    position: relative;
}

.hero .hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 7.5rem;
    line-height: 1.02;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.6);
}

.hero .hero-title .accent {
    color: var(--primary);
}

.hero-tagline {
    margin: 28px auto 0;
    max-width: 900px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Hero logo (text stand-in until an image logo is added) */
.hero-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 5rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.hero-logo .accent {
    color: var(--primary);
}

/* Full-screen hero video background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.logo-img {
    height: 72px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 110px;
    width: auto;
    display: block;
}


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

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: white;
    position: relative;
    z-index: 10;
}

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

.feature-block {
    padding: 30px;
    border-radius: 20px;
    color: white;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-block:hover {
    transform: translateY(-10px);
}

.feature-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.feature-block p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Fun, vibrant feature boxes */
.block-orange {
    background: #ff3131;
}

.block-blue {
    background: linear-gradient(135deg, #38b6ff, #1893f0);
}

.block-green {
    background: #ff3131;
}

.block-purple {
    background: linear-gradient(135deg, #38b6ff, #1893f0);
}

/* Packages Section */
.packages-section {
    padding: 100px 0;
    background-color: var(--section-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 49, 49, 0.15);
}

.card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, rgba(255, 49, 49, 0.05) 0%, var(--card-bg) 100%);
}

.badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    font-family: var(--font-heading);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-heading);
}

.price .period {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.features {
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

.features .icon {
    color: var(--accent-green);
    font-weight: bold;
}

.card.featured .features li {
    color: var(--text-dark);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: white;
}

.team-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.team-text {
    flex: 1;
    min-width: 300px;
}

.team-text h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.team-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.team-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.tyler-img {
    width: 350px;
    height: auto;
    max-width: 100%;
    border-radius: 20px;
    background: white;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Locations Section */
.locations-section {
    padding: 100px 0;
    background-color: var(--section-bg);
    text-align: center;
}

.locations-intro {
    text-align: center;
    color: var(--text-gray);
    margin: -40px auto 50px;
    max-width: 600px;
}

.locations-list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.location-item {
    flex: 1;
    min-width: 280px;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.location-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 49, 49, 0.15);
}

.location-item h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.location-item p {
    color: var(--text-gray);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-box h2 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-box p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
}

/* Select: match the gray placeholder look + custom single caret */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 44px;
    color: var(--text-gray);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
}

/* Once a real option is chosen, show it in the normal dark text */
select:has(option:not([value=""]):checked) {
    color: var(--text-dark);
}

select option {
    color: var(--text-dark);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--section-bg);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 700;
    margin: 0;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--primary);
    font-weight: bold;
    transition: transform 0.3s;
    font-family: var(--font-heading);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    margin-top: 15px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
    color: var(--text-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 900;
    color: var(--secondary);
}

.footer-tagline {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: white;
    background: var(--primary);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-gray);
    transition: 0.3s;
}

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

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

.footer-bottom p {
    color: var(--text-gray);
}

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

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

/* Package details (expandable) */
.package-details {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
}

.card.expanded .package-details {
    display: block;
    animation: fadeInUp 0.4s forwards;
}

.detail-heading {
    font-size: 1rem;
    margin: 20px 0 10px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-heading:first-child {
    margin-top: 0;
}

.detail-heading.included {
    color: #228B22;
}

.included-list .icon {
    color: var(--accent-green);
}

.plain-list li {
    color: var(--text-gray);
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}

.plain-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.perfect-for {
    margin-top: 18px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.toggle-details {
    display: inline-block;
    margin: 16px 0 4px;
    padding: 0;
    background: none;
    border: none;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.toggle-details:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.book-btn {
    margin-top: 20px;
}

.all-packages {
    max-width: 700px;
    margin: 60px auto 0;
    background: white;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.all-packages h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.all-packages-list {
    margin-bottom: 0;
}

/* Gallery / Instagram Section */
.gallery-section {
    padding: 100px 0;
    background: white;
}

.gallery-intro {
    text-align: center;
    color: var(--text-gray);
    margin: -40px auto 50px;
    max-width: 600px;
}

.gallery-intro a {
    color: var(--primary);
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f9ff, #e0f2ff);
    color: var(--secondary);
    font-weight: 600;
    text-align: center;
    padding: 10px;
}

/* Standalone pages (info, waiver) */
.page-section {
    padding: 140px 0 80px;
    background: var(--section-bg);
    min-height: 80vh;
}

.container.narrow {
    max-width: 820px;
}

.page-title {
    font-size: 2.6rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.page-subtitle {
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.info-block {
    background: white;
    border-radius: 16px;
    padding: 30px 35px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: var(--primary);
}

.info-block h3 {
    font-size: 1.1rem;
    margin: 18px 0 6px;
    color: var(--text-dark);
}

.info-block p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.info-block a:not(.btn) {
    color: var(--primary);
    font-weight: 600;
}

.info-block a:not(.btn):hover {
    text-decoration: underline;
}

.info-block .btn {
    color: #fff;
    margin-top: 8px;
}

/* Waiver */
.waiver-terms {
    background: white;
    border-radius: 16px;
    padding: 30px 35px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.waiver-terms h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
    color: var(--primary);
}

.waiver-terms p {
    color: var(--text-gray);
    margin-bottom: 14px;
}

.waiver-terms ol {
    margin: 0 0 14px 20px;
    color: var(--text-gray);
}

.waiver-terms ol li {
    margin-bottom: 10px;
    list-style: decimal;
}

.waiver-form {
    background: white;
    border-radius: 16px;
    padding: 30px 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.waiver-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============ Tablet / Mobile ============ */
@media (max-width: 768px) {

    /* Nav: full-width red dropdown that joins the bar with no gap */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 8px 20px 22px;
        margin: 0;
        background: var(--primary);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
    }

    .nav-links.open {
        display: flex;
    }

    /* When the menu is open, the bar itself goes red so it's one solid panel */
    .navbar.menu-open {
        background: var(--primary);
        box-shadow: none;
        border-bottom-color: transparent;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a:not(.btn) {
        display: block;
        padding: 12px 0;
        text-shadow: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .navbar .btn-small {
        display: block;
        width: 100%;
        margin-top: 8px;
        padding: 13px 0;
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .navbar {
        padding: 8px 0;
    }

    .logo-img {
        height: 48px;
    }

    /* Hero: shrink everything so it fits the phone screen */
    .hero {
        margin-top: 0;
        height: 100vh;
        padding: 0;
    }

    .hero-content {
        margin-top: -8vh;
        padding: 0 16px;
    }

    .hero .hero-title {
        font-size: 4.2rem;
        margin-bottom: 16px;
    }

    .hero-btns {
        gap: 12px;
        flex-wrap: wrap;
    }

    .hero .btn-large {
        font-size: 0.95rem;
        padding: 13px 26px;
        border-width: 2px;
    }

    .hero-tagline {
        font-size: 0.92rem;
        margin-top: 20px;
        max-width: 92%;
    }

    /* Section spacing + headings */
    .packages-section,
    .features-section,
    .faq-section,
    .gallery-section,
    .locations-section,
    .contact-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .gallery-intro,
    .locations-intro {
        margin: -22px auto 35px;
    }

    /* Cards */
    .card {
        padding: 30px 24px;
    }

    .price {
        font-size: 2.4rem;
    }

    .pricing-grid {
        gap: 30px;
    }

    .feature-block {
        padding: 26px 24px;
    }

    /* Gallery: keep two columns on phones */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* Areas of service stack */
    .locations-list {
        gap: 20px;
        flex-direction: column;
    }

    /* Contact */
    .contact-box {
        padding: 32px 22px;
    }

    /* Standalone pages */
    .page-section {
        padding: 100px 0 60px;
    }

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

    .info-block,
    .waiver-terms,
    .waiver-form,
    .all-packages {
        padding: 24px 20px;
    }

    .footer-grid {
        gap: 30px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo-img {
        height: 90px;
        margin: 0 auto 15px;
    }
}

/* ============ Small phones ============ */
@media (max-width: 480px) {

    .container {
        padding: 0 16px;
    }

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

    .hero .btn-large {
        font-size: 0.9rem;
        padding: 12px 22px;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

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

    .price {
        font-size: 2.1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    .waiver-popup {
        width: 205px;
        right: 12px;
        bottom: 12px;
        padding: 11px 12px 11px 10px;
        border-radius: 16px;
    }

    .waiver-popup-inner {
        gap: 9px;
    }

    .waiver-popup-mascot {
        font-size: 2rem;
    }

    .waiver-popup-text {
        font-size: 0.82rem;
        margin-bottom: 7px;
    }

    .waiver-popup-btn {
        font-size: 0.72rem;
        padding: 7px 14px;
    }

    .waiver-popup-close {
        font-size: 1.2rem;
    }
}