/* =============================
   VENÜS CAFE — PREMIUM STYLES
   ============================= */

/* ---------- Variables ---------- */
:root {
    --bg-hero: #150a15;
    --bg-dark: #1a0e1a;
    --bg-section: #f6eeea;
    --bg-cream: #fdf8f5;
    --bg-light: #faf6f3;
    --color-mauve: #7a4e6b;
    --color-mauve-light: #9e6b8e;
    --color-bordo: #5a1a3a;
    --color-bordo-deep: #3d0f28;
    --color-gold: #d4af37;
    --color-gold-light: #e8c76a;
    --color-gold-dark: #b8942e;
    --color-text: #2e1c24;
    --color-text-light: #6b515b;
    --color-text-muted: #9e8e96;
    --color-white: #ffffff;
    --color-border: rgba(0,0,0,0.07);

    --gradient-gold: linear-gradient(135deg, #e8c76a, #d4af37);
    --gradient-hero: linear-gradient(90deg, rgba(21,10,21,0.96) 0%, rgba(21,10,21,0.78) 45%, rgba(21,10,21,0.35) 100%);
    --gradient-pink: linear-gradient(135deg, #c98aaa, #7a4e6b);
    --gradient-icon: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(122,78,107,0.12));

    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 48px;

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: var(--space-md); }
.section { padding-block: var(--space-2xl); position: relative; }
.section-header { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: var(--space-xl); }

.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: var(--space-xs);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--color-bordo);
    line-height: 1.15;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 300;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-pink);
    color: var(--color-white);
    box-shadow: 0 4px 18px rgba(122, 78, 107, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(122, 78, 107, 0.5); filter: brightness(1.08); }

.btn-gold {
    background: var(--gradient-gold);
    color: #2e1c00;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5); }

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.btn-small { padding: 0.55rem 1.1rem; font-size: 0.82rem; border-radius: 10px; }

.btn-submit { width: 100%; padding: 1rem; font-size: 1rem; border-radius: var(--radius-md); margin-top: 0.5rem; }

.btn-ghost {
    background: transparent;
    color: var(--color-bordo);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0;
    gap: 0.3rem;
}
.btn-ghost:hover { gap: 0.5rem; color: var(--color-mauve); }

.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }

.btn-instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.btn-instagram:hover { filter: brightness(1.1); transform: translateY(-2px); }

.btn-secondary {
    background: rgba(255,255,255,0.6);
    color: var(--color-bordo);
    border: 1px solid rgba(197, 160, 89, 0.2);
}
.btn-secondary:hover { background: rgba(255,255,255,0.9); }

/* ---------- Glass ---------- */
.glass-bar {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

.glass-panel {
    background: rgba(255, 253, 250, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(107, 45, 60, 0.08);
}

/* ---------- Header ---------- */
.site-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding-block: var(--space-sm);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    position: fixed;
    background: rgba(21, 10, 21, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo svg { stroke: var(--color-gold); flex-shrink: 0; }

.main-nav { display: flex; align-items: center; gap: var(--space-md); }

.nav-list { display: flex; align-items: center; gap: var(--space-sm); }

.nav-link {
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active { color: var(--color-white); background: rgba(255,255,255,0.08); }

.header-actions { display: flex; align-items: center; gap: var(--space-sm); }

.menu-toggle {
    display: none;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: 10px;
    color: var(--color-white);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.desktop-only { display: inline-flex; }

@media (max-width: 768px) {
    .main-nav {
        position: fixed; inset: 0; top: 64px;
        background: rgba(21, 10, 21, 0.97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center; justify-content: flex-start;
        padding-top: var(--space-xl);
        gap: var(--space-lg);
        transform: translateX(100%);
        transition: transform var(--transition);
    }
    .main-nav.open { transform: translateX(0); }
    .nav-list { flex-direction: column; gap: var(--space-md); }
    .nav-link { font-size: 1.15rem; color: rgba(255,255,255,0.85); }
    .desktop-only { display: none !important; }
    .menu-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: var(--gradient-hero); }

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content { grid-template-columns: 1.1fr 1fr; min-height: 420px; }
}

.hero-text { max-width: 620px; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: var(--space-sm);
}

.spark { color: var(--color-gold); }

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.2vw, 4.2rem);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.5px;
}

.gradient-text {
    font-style: italic;
    background: linear-gradient(135deg, #e8c76a, #f0a8d0, #c98aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin-bottom: var(--space-lg);
    font-weight: 300;
    line-height: 1.7;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

/* Hero Features Bar */
.hero-features { position: relative; z-index: 2; margin-top: var(--space-xl); }

.feature-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: var(--space-md) var(--space-lg);
}

@media (min-width: 640px) { .feature-bar { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); } }
@media (min-width: 1024px) { .feature-bar { grid-template-columns: repeat(4, 1fr); padding: var(--space-md) var(--space-lg); } }

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm);
}

.feature-icon-wrap {
    width: 44px; height: 44px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: var(--color-gold-light);
}

.feature-item-text h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.2rem;
}

.feature-item-text p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    line-height: 1.45;
}

/* ---------- Services (Home) ---------- */
.section-services { background: var(--bg-section); }

.services-home-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .services-home-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-zenith {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.service-zenith:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(90, 26, 58, 0.12);
}

.zenith-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.zenith-icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-icon);
    border-radius: var(--radius-sm);
    color: var(--color-bordo);
}

.zenith-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}

.zenith-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.zenith-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
}

.zenith-price {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-bordo);
}

.zenith-price span { font-size: 0.8rem; font-weight: 400; color: var(--color-text-muted); margin-left: 2px; }

.services-cta { text-align: center; margin-top: var(--space-lg); }

/* ---------- Services (Page) ---------- */
.section-services-page { background: var(--bg-cream); }

.services-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .services-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .services-page-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-detail {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.service-detail:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(90, 26, 58, 0.12);
}

.service-detail .detail-body {
    flex-grow: 1;
    margin-bottom: var(--space-md);
}

.service-detail .detail-body p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: var(--space-sm);
}

.service-detail .detail-body ul {
    list-style: disc;
    padding-left: 1.2rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 300;
}

.service-detail .detail-body ul li { margin-bottom: 0.3rem; }

.service-detail .detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
}

/* ---------- About ---------- */
.section-about { background: var(--bg-cream); }

.about-box {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.about-box p {
    color: var(--color-text-light);
    font-weight: 300;
    margin-bottom: var(--space-sm);
    line-height: 1.75;
    font-size: 1.05rem;
}

/* ---------- Why ---------- */
.section-why { background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-section) 100%); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.why-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(90, 26, 58, 0.12);
}

.why-icon {
    width: 52px; height: 52px;
    margin-inline: auto;
    margin-bottom: var(--space-sm);
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(122,78,107,0.1));
    border-radius: 50%;
    color: var(--color-bordo);
}

.why-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-bordo);
    margin-bottom: 0.4rem;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 300;
    line-height: 1.55;
}

/* ---------- Testimonials ---------- */
.section-testimonials { background: var(--bg-section); }

.testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .testi-grid { grid-template-columns: repeat(3, 1fr); }
}

.testi-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(90, 26, 58, 0.12);
}

.testi-stars {
    display: flex;
    gap: 3px;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.testi-quote {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.testi-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-bordo);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

/* ---------- Booking ---------- */
.section-booking { background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-cream) 100%); }

.booking-wrapper {
    padding: var(--space-xl) var(--space-lg);
    max-width: 720px;
    margin-inline: auto;
}

.booking-header { text-align: center; margin-bottom: var(--space-lg); }

.booking-form { display: flex; flex-direction: column; gap: var(--space-md); }

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .form-row { grid-template-columns: repeat(2, 1fr); }
    .form-row:has(> :nth-child(3)) { grid-template-columns: repeat(3, 1fr); }
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-text-light);
    padding-left: 0.2rem;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 0.9rem;
    color: var(--color-text-muted);
    pointer-events: none;
    z-index: 2;
}

.input-wrap input,
.input-wrap select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.6rem;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--color-text);
    background: rgba(255,255,255,0.7);
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-group textarea { padding-left: 1rem; resize: vertical; }

.input-wrap input:focus,
.input-wrap select:focus,
.form-group textarea:focus {
    border-color: var(--color-mauve-light);
    box-shadow: 0 0 0 3px rgba(122, 78, 107, 0.12);
    background: #fff;
}

/* ---------- Footer (Zenith Style) ---------- */
.site-footer {
    background: var(--bg-light);
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
}

@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; align-items: start; }
}

.footer-brand .logo { color: var(--color-bordo); margin-bottom: var(--space-sm); }
.footer-brand .logo svg { stroke: var(--color-gold); }

.footer-desc {
    font-size: 0.88rem;
    color: var(--color-text-light);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.footer-social-row {
    display: flex;
    gap: 0.6rem;
}

.footer-social-row a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-bordo);
    transition: all var(--transition);
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.footer-social-row a:hover {
    background: var(--color-bordo);
    color: #fff;
    border-color: var(--color-bordo);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-bordo);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
}

.footer-links { display: flex; flex-direction: column; gap: 0.35rem; }

.footer-links a {
    font-size: 0.88rem;
    color: var(--color-text-light);
    font-weight: 300;
    transition: color var(--transition), transform var(--transition);
    display: inline-block;
}

.footer-links a:hover { color: var(--color-bordo); transform: translateX(3px); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--color-text-light);
    font-weight: 300;
    margin-bottom: 0.4rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--color-gold-dark);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-block: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

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

/* ---------- Reveal Animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* Full-width featured service card override */
.service-detail[id="venus"] {
    grid-column: 1 / -1;
}

@media (max-width: 640px) {
    .service-detail[id="venus"] {
        grid-column: auto;
    }
}

/* ---------- Fixed Booking Button ---------- */
#fixedBookingBtn {
    position: fixed !important;
    top: 12px;
    right: 50px;
    z-index: 200;
}

/* ---------- Mobile adjustments ---------- */
@media (max-width: 480px) {
    .hero { min-height: 640px; padding-top: 80px; }
    .hero-title { font-size: 2.1rem; }
    .feature-bar { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .services-home-grid { grid-template-columns: 1fr; }
    .services-page-grid { grid-template-columns: 1fr; }
    .booking-wrapper { padding: var(--space-lg) var(--space-md); }
    .form-row { grid-template-columns: 1fr !important; }
    .payment-options { grid-template-columns: 1fr !important; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding-block: var(--space-xl); }
    .services-page-grid { grid-template-columns: 1fr; }
}

/* =============================
   NEW COMPONENTS
   ============================= */

/* ---------- Cookie Banner ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 300;
    background: rgba(21, 10, 21, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-md);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.show { transform: translateY(0); }

.cookie-inner {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cookie-inner p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    flex: 1;
    min-width: 260px;
}

.cookie-inner a { color: var(--color-gold-light); text-decoration: underline; }

.cookie-btn {
    padding: 0.55rem 1.4rem;
    font-size: 0.85rem;
    border-radius: 10px;
    white-space: nowrap;
}

/* ---------- Fixed WhatsApp ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem; right: 1.5rem;
    z-index: 150;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: waPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 1.5rem; left: 1.5rem;
    z-index: 150;
    width: 44px; height: 44px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-bordo);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    cursor: pointer;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-bordo); color: #fff; border-color: var(--color-bordo); }

/* ---------- Toast Notification ---------- */
.toast-container {
    position: fixed;
    top: 1.5rem; right: 1.5rem;
    z-index: 400;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    pointer-events: none;
}

.toast {
    background: var(--color-white);
    border-left: 4px solid var(--color-gold);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    font-size: 0.88rem;
    color: var(--color-text);
    font-weight: 400;
    max-width: 320px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.toast.show { transform: translateX(0); }

.toast.error { border-left-color: #c0392b; }

/* ---------- Team / Expert ---------- */
.team-section { background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-section) 100%); }

.team-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
    max-width: 800px;
    margin-inline: auto;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

@media (min-width: 768px) {
    .team-card { grid-template-columns: 280px 1fr; }
}

.team-photo-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    max-width: 280px;
    margin-inline: auto;
    width: 100%;
}

.team-photo-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--transition);
}

.team-photo-wrap:hover img { transform: scale(1.03); }

.team-info h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-bordo);
    margin-bottom: 0.2rem;
}

.team-role {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: var(--space-sm);
}

.team-info p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.team-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.team-stat {
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(122,78,107,0.08));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    text-align: center;
}

.team-stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-bordo);
}

.team-stat span {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- FAQ ---------- */
.faq-section { background: var(--bg-section); }

.faq-list {
    max-width: 720px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-md);
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-bordo);
    text-align: left;
    transition: background var(--transition);
}

.faq-question:hover { background: rgba(243,229,224,0.3); }

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--color-gold-dark);
}

.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.35s;
    padding: 0 var(--space-md);
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 var(--space-md) var(--space-md);
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 300;
    line-height: 1.65;
}

/* ---------- Form Validation ---------- */
.input-error {
    border-color: #c0392b !important;
    box-shadow: 0 0 0 3px rgba(192,57,43,0.1) !important;
}

.error-message {
    font-size: 0.78rem;
    color: #c0392b;
    margin-top: 0.25rem;
    padding-left: 0.2rem;
    display: none;
}

.error-message.show { display: block; }

/* ---------- Legal Pages ---------- */
.legal-page { padding-top: var(--space-xl); }

.legal-content h2 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-bordo);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.3rem;
    margin-bottom: var(--space-sm);
}

.legal-content ul li {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0.4rem;
}

.legal-content a { color: var(--color-mauve); text-decoration: underline; }
.legal-content a:hover { color: var(--color-bordo); }

/* ---------- 404 Page ---------- */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-section) 100%);
}
