:root {
    --primary: #e65c00;
    --primary-dark: #bf4d00;
    --black: #111111;
    --dark: #1a1a1a;
    --gray-100: #f5f5f5;
    --gray-800: #222222;
    --gold: #fcd116;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--gray-800);
    background: #fff;
    line-height: 1.6;
}

/* ── SITE HEADER (sticky wrapper) ───────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* ── TOP BAR ─────────────────────────────────────────────────── */
.top-bar {
    background: #0a0a0a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 24px;
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
}

.top-bar a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar a:hover {
    color: var(--gold);
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-icon {
    margin-right: 6px;
    color: white;
}

/* ── NAV BAR ─────────────────────────────────────────────────── */
.navbar {
    background: var(--gold);
    padding: 0 24px;
    border-top: 2px solid rgba(0, 0, 0, 0.15);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

/* Banner logo */
.navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.navbar-logo {
    height: 64px;
    width: auto;
    display: block;
}

/* Nav links pushed right */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin-left: auto;
}

.nav-links a {
    display: block;
    padding: 6px 14px;
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    background: var(--primary);
}

/* Log In item — stands out slightly */
.nav-links .nav-login {
    background: var(--black);
    color: var(--gold) !important;
    margin-left: 10px;
    border-radius: 6px;
    padding: 6px 16px;
}

.nav-links .nav-login:hover {
    background: var(--primary);
    color: white !important;
}

/* Burger button — hidden on desktop */
.burger {
    display: none;
    background: none;
    border: 2px solid rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    padding: 7px 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    margin-left: 16px;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Burger → X animation */
.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
    opacity: 0;
}
.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .top-bar-right {
        display: none;
    }

    .burger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-left: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--gold);
        padding: 8px 16px 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        z-index: 300;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 16px;
        font-size: 15px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        border-radius: 0;
    }

    .nav-links .nav-login {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
        border-radius: 6px;
    }

    .navbar-inner {
        position: relative;
    }

    .navbar {
        padding: 0 16px;
    }

    .navbar-logo {
        height: 52px;
    }
}

/* ── HERO VIDEO ──────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 80px 20px;
    max-width: 900px;
}

.hero h1 {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 16px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
}

.hero h1 span {
    color: var(--gold);
}

.hero h1 .hero-orange {
    color: var(--primary);
}

.hero p {
    font-size: 21px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
    padding: 18px 52px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(230, 92, 0, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(230, 92, 0, 0.7);
}

/* ── TRIPADVISOR BANNER ──────────────────────────────────────── */
.ta-banner {
    background: #34e0a1;
    text-align: center;
    width: 100%;
}

.ta-banner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    width: 100%;
    transition: background 0.2s;
}

.ta-banner-link:hover {
    background: rgba(0,0,0,0.08);
}

.ta-banner-stars {
    color: #f5a623;
    font-size: 17px;
    letter-spacing: 2px;
}

.ta-banner-owl {
    font-size: 20px;
}

.ta-banner-arrow {
    font-size: 16px;
}


.hero-banner-img {
    width: 100%;
    line-height: 0;
}

.hero-banner-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .hero-banner-img img {
        height: 220px;
    }
}

/* ── TOUR INTRO ──────────────────────────────────────────────── */
.intro {
    background: #0a0a0a;
    color: white;
    text-align: center;
    padding: 60px 20px 0;
}

.intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    font-style: italic;
}

.intro p strong {
    color: var(--primary);
    font-style: normal;
}

.section-title-over,
h2.section-title-over {
    color: var(--primary) !important;
    text-align: center;
    margin-bottom: 24px;
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about {
    padding: 20px 20px 20px;
    background: url('/images/StKitts2.jpeg') center center / cover no-repeat;
    background-attachment: fixed;
}

.about-inner {
    max-width: 860px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 48px 52px;
}

.about-inner .section-title {
    margin-bottom: 32px;
}

.about-inner .section-title span {
    color: var(--dark);
}

.about-inner p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-divider {
    border: none;
    border-top: 2px solid var(--gray-100);
    margin: 40px 0;
}

.about-subheading {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .about,
    .tours,
    .reviews,
    .features,
    .faq-section {
        background-attachment: scroll;
    }
}
.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-subtitle {
    display: table;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: var(--primary);
    padding: 8px 24px;
    border-radius: 99px;
    margin: 0 auto 48px;
}

@media (max-width: 600px) {
    .section-subtitle {
        max-width: 90%;
        font-size: 14px;
        padding: 8px 16px;
        white-space: normal;
        line-height: 1.4;
    }
}

/* ── TOURS ───────────────────────────────────────────────────── */
.tours {
    padding: 20px 20px 80px;
    background: url('/images/StKitts2.jpeg') center center / cover no-repeat;
    background-attachment: fixed;
}

.tour-row {
    max-width: 860px;
    margin: 0 auto 40px;
    display: block;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.tour-row:last-child {
    margin-bottom: 0;
}

.tour-row-reverse {
    direction: ltr;
}

.tour-row-body {
    padding: 40px 48px;
}

.tour-row-reverse .tour-row-body {
    padding: 40px 48px;
}

.tour-row-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.tour-row-price {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
    text-align: right;
}

.tour-row-price span {
    font-size: 14px;
    font-weight: 600;
    color: #888;
}

.tour-row-price-grey {
    font-size: 14px;
    font-weight: 600;
    color: #888;
}

@media (max-width: 600px) {
    .tour-row-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .tour-row-price {
        text-align: left;
    }
}

.tour-row-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 99px;
    margin-bottom: 0;
}

.tour-row-tag-gold {
    background: var(--gold);
    color: var(--black);
}

.tour-row-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.tour-row-body p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

.tour-row-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0 24px;
}

.tour-row-detail {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    background: var(--gray-100);
    padding: 6px 14px;
    border-radius: 99px;
}

.tour-row-detail-link {
    text-decoration: none;
    background: #fdeee2;
    color: var(--primary-dark);
    transition: background 0.2s, color 0.2s;
}

.tour-row-detail-link:hover {
    background: var(--primary);
    color: white;
}

.tour-stops {
    background: var(--gray-100);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 16px 0;
}

.tour-stops-alt {
    background: #fff8ee;
    border-left: 3px solid var(--gold);
}

.tour-stops-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tour-stops-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tour-stops-list li {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
}

.tour-stops-list li::before {
    content: '•';
    color: var(--primary);
    font-weight: 900;
    position: absolute;
    left: 0;
}

.tour-tagline {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
    margin-bottom: 6px !important;
}

@media (max-width: 900px) {
    .tour-row-body,
    .tour-row-reverse .tour-row-body {
        padding: 28px;
    }
}

/* ── GUIDE ───────────────────────────────────────────────────── */
.guide {
    padding: 80px 20px 20px;
    background: var(--black);
}

.guide-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.guide-img {
    width: 100%;
    border-radius: 0;
    object-fit: cover;
    height: 100%;
    min-height: 400px;
    display: block;
}

.guide-text {
    background: var(--black);
    padding: 48px 40px;
    border: 1px solid rgba(255,255,255,0.1);
}

.guide-text p {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .guide-inner {
        grid-template-columns: 1fr;
    }

    .guide-img {
        min-height: 260px;
        height: 260px;
    }

    .guide-text {
        padding: 32px 24px;
    }
}

/* ── REVIEWS ─────────────────────────────────────────────────── */
.reviews {
    padding: 80px 20px;
    background: url('/images/StKitts1.jpeg') center center / cover no-repeat;
    background-attachment: fixed;
}

.reviews-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.review-stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}

/* ── FEATURES ────────────────────────────────────────────────── */
.features {
    padding: 80px 20px 20px;
    background: url('/images/StKitts1.jpeg') center center / cover no-repeat;
    background-attachment: fixed;
}

.features-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ── CTA ─────────────────────────────────────────────────────── */
.cta {
    background: linear-gradient(135deg, var(--black) 0%, #2d1a00 100%);
    color: white;
    text-align: center;
    padding: 40px 20px 80px;
}

.cta h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta p {
    font-size: 20px;
    opacity: 0.85;
    margin-bottom: 36px;
}

/* ── FAQ ACCORDION ───────────────────────────────────────────── */
.faq-section {
    padding: 20px 20px 20px;
    background: url('/images/StKitts1.jpeg') center center / cover no-repeat;
    background-attachment: fixed;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    text-align: left;
    transition: color 0.2s;
    gap: 16px;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question[aria-expanded="true"] {
    color: var(--primary);
}

.faq-icon {
    font-size: 22px;
    font-weight: 300;
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.3s;
    line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    padding: 0 28px;
}

.faq-answer.open {
    max-height: 800px;
    padding: 0 28px 20px;
}

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery {
    background: var(--black);
    padding: 20px 20px 40px;
}

.carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-track {
    overflow: hidden;
    border-radius: 0;
}

.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 600px;
    height: 600px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    font-size: 36px;
    line-height: 1;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.carousel-prev { left: -60px; }
.carousel-next { right: -60px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary);
}

@media (max-width: 768px) {
    .carousel {
        max-width: 100%;
    }

    .carousel-slide img {
        width: 100%;
        height: 340px;
    }

    .carousel-prev { left: 4px; }
    .carousel-next { right: 4px; }
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
    background: var(--gold);
    color: var(--black);
    padding: 56px 24px 0;
    width: 100%;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--black);
    margin-bottom: 16px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-list li {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.5;
}

.footer-list a {
    color: rgba(0, 0, 0, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-list a:hover {
    color: var(--primary);
}

.footer-cards {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-card-logo {
    height: 50px;
    width: auto;
    background: white;
    border-radius: 6px;
    padding: 6px 9px;
}

.footer-hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    margin: 40px 0 16px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 24px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom-inner a {
    color: var(--black);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-inner a:hover {
    color: var(--primary);
}

@media (max-width: 600px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ── COOKIE CONSENT ──────────────────────────────────────────── */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--black);
    color: white;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    z-index: 9999;
    max-width: 280px;
    display: none;
}

.cookie-consent a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-btn {
    margin-top: 10px;
    display: block;
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-btn:hover {
    background: var(--primary-dark);
}

/* ── RESPONSIVE (page content) ───────────────────────────────── */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }

    .section-title {
        font-size: 30px;
    }

    .header-tagline {
        display: none;
    }

    .cta h2 {
        font-size: 28px;
    }

    .guide-inner {
        grid-template-columns: 1fr;
    }

    .guide-img {
        height: 260px;
    }
}

/* ── BOOKING MODAL ───────────────────────────────────────────── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.modal-box {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    margin: 40px auto;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.modal-header {
    background: var(--primary);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    color: white;
    font-size: 20px;
    font-weight: 900;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 0;
}

.modal-close:hover { opacity: 1; }

.modal-body {
    padding: 28px;
}

.modal-intro {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.required { color: var(--primary); }

.form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: var(--dark);
    transition: border-color 0.2s;
    background: white;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-whatsapp:hover { background: #1db954; }

.modal-error {
    background: #fff0f0;
    border-left: 4px solid #e53e3e;
    padding: 12px 16px;
    border-radius: 6px;
    color: #c53030;
    font-size: 14px;
    margin-top: 12px;
}

.modal-success {
    text-align: center;
    padding: 20px 0;
}

.modal-success-icon { font-size: 48px; margin-bottom: 16px; }
.modal-success h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.modal-success p { color: #555; font-size: 15px; line-height: 1.6; margin-bottom: 8px; }
.modal-ref { font-weight: 700; color: var(--primary); font-size: 16px; }

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .modal-actions { flex-direction: column; }
    .modal-actions .btn-primary,
    .modal-actions .btn-whatsapp { width: 100%; justify-content: center; }
}

/* ── SKULL MASK PROMO STRIP ──────────────────────────────────── */
.promo-strip {
    background: var(--black);
    color: white;
    text-align: center;
    padding: 20px 20px 40px;
}

.promo-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.promo-desc {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 28px;
    line-height: 1.5;
}

.promo-desc strong {
    color: var(--primary);
}

.promo-skull {
    font-size: 16px;
}

.promo-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.promo-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.promo-btn-ta {
    background: #34e0a1;
    color: var(--black);
}

.promo-btn-email {
    background: var(--primary);
    color: white;
}

.promo-share {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    margin-top: 20px;
    font-style: italic;
}

@media (max-width: 600px) {
    .promo-title {
        font-size: 28px;
    }

    .promo-desc {
        font-size: 17px;
    }
}