/* ==========================================================================
   LIBERALIS - Tema Orgánico, Elegante y Claro
   ========================================================================== */

/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette */
    --bg-main: #F2F0EB;       /* Cream background */
    --bg-soft: #F9F8F6;       /* Lighter cream */
    --bg-white: #FFFFFF;
    
    --primary: #8C4A88;       /* Vibrant Purple - Dragonfly */
    --primary-light: #BFA4B6; /* Light Dusty Purple */
    --primary-muted: #8C6886; /* Muted Purple */
    --primary-dark: #6B3868;  /* Deep Purple for accents */
    
    --text-main: #291528;     /* Very dark, low contrast black/purple */
    --text-muted: #6B566A;    /* Soft elegant grey/purple */
    
    /* Typography */
    --font-heading: 'Lora', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Utility */
    --radius-soft: 24px;
    --radius-pill: 100px;
    --shadow-soft: 0 16px 40px rgba(41, 21, 40, 0.06);
    --shadow-hover: 0 20px 50px rgba(41, 21, 40, 0.1);
    
    --container-width: 1200px;
    --section-pad: 120px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px; /* Evita que el menú fijo tape el inicio de las secciones al hacer clic en los enlaces */
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-muted);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Efecto de textura Premium (Noise) */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.75" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.2;
}

em {
    font-style: italic;
    color: var(--primary);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
}

.logo-icon {
    width: 60px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 24px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--primary-dark);
}

.lang-sep {
    color: var(--primary-light);
    font-size: 12px;
}

/* Smooth Translating Effect */
[data-i18n] {
    transition: opacity 0.15s ease-out;
}

body.translating [data-i18n] {
    opacity: 0;
}

.btn-outline {
    border: 1px solid var(--primary-light);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    color: var(--primary) !important;
    transition: all 0.3s ease !important;
}

.btn-outline:hover {
    background-color: var(--primary);
    border-bottom: 2px solid var(--primary-light);
    color: white !important;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(140, 74, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.btn-primary:hover::after {
    left: 150%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 30px rgba(140, 74, 136, 0.4);
    background-color: var(--primary-dark);
}

.btn-text {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.btn-text span {
    transition: transform 0.3s ease;
}

.btn-text:hover {
    color: var(--primary);
}

.btn-text:hover span {
    transform: translateX(4px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--section-pad) 24px;
    overflow: hidden;
}

.hero-content {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
}

.badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-muted);
    background-color: rgba(255,255,255, 0.6);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 78px;
    margin-bottom: 8px; /* Reducido para compensar el padding */
    padding-bottom: 16px; /* Evita que la parte inferior de la "g" en cursiva se corte */
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary-muted) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

/* Blobs Abstractos y Orgánicos */
.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
    animation: floatBlob 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: 10%;
    left: 15%;
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    animation-delay: 0s;
}

.blob-2 {
    bottom: 10%;
    right: 15%;
    width: 500px;
    height: 400px;
    background: #e2d2df;
    animation-delay: -10s;
}

.hero-visual {
    position: absolute;
    left: 50%;
    margin-left: 320px; /* Mantiene la libélula siempre a la misma distancia del texto */
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.dragonfly-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

img.floating-dragonfly {
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(140, 74, 136, 0.15));
    animation: fly-soft 25s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
    position: absolute;
    transform-origin: center center;
}

.df-1 { width: 100%; z-index: 5; opacity: 0.85; }
.df-2 { width: 70%; z-index: 4; opacity: 0.65; }
.df-3 { width: 50%; z-index: 3; opacity: 0.45; }
.df-4 { width: 35%; z-index: 2; opacity: 0.3;  }
.df-5 { width: 20%; z-index: 1; opacity: 0.15; }

/* Esferas mágicas creativas orbitando */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.5;
    mix-blend-mode: multiply;
    animation: orbit 15s infinite linear;
    pointer-events: none;
    z-index: 1;
}

.orb-1 { width: 80px; height: 80px; top: 10%; left: -10%; animation-duration: 20s; }
.orb-2 { width: 120px; height: 120px; bottom: 0; right: -20%; background: radial-gradient(circle, var(--primary-muted) 0%, transparent 70%); animation-duration: 25s; animation-direction: reverse; }
.orb-3 { width: 60px; height: 60px; top: 40%; right: 90%; background: radial-gradient(circle, var(--primary) 0%, transparent 70%); opacity: 0.3; animation-duration: 18s; }

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.1); }
    100% { transform: translate(-30px, 30px) scale(0.9); }
}

@keyframes fly-soft {
    0%   { transform: translate(0px, 0px) rotate(0deg); }
    20%  { transform: translate(-300px, -120px) rotate(-15deg); }
    40%  { transform: translate(-100px, -250px) rotate(35deg); }
    60%  { transform: translate(250px, -80px) rotate(55deg); }
    80%  { transform: translate(150px, 120px) rotate(-20deg); }
    100% { transform: translate(0px, 0px) rotate(0deg); }
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(40px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
}

/* ===== MAIN SECTIONS ===== */
.section {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 10;
}

.accent-bg {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-soft) 50%, var(--bg-main) 100%);
}

.section-header {
    margin-bottom: 64px;
}

.section-header.center {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
}

/* Services Grid Clean */
.services-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 32px;
}

.service-item-clean {
    text-align: center;
    padding: 36px 24px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(191, 164, 182, 0.15);
    border-radius: var(--radius-soft);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
}

.service-item-clean::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.service-item-clean:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(140, 74, 136, 0.08);
    background: var(--bg-white);
    border-color: rgba(140, 74, 136, 0.2);
}

.service-item-clean:hover::before {
    transform: scaleX(1);
}

.service-icon-clean {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item-clean:hover .service-icon-clean {
    transform: translateY(-4px);
}

.service-icon-clean svg {
    width: 55px; /* Tamaño elegante y contenido por el line-art */
    height: 55px;
    color: var(--primary-muted); /* Estética lila pastel apagado al inicio */
    transition: all 0.4s ease;
}

.service-item-clean:hover .service-icon-clean svg {
    color: var(--primary-dark); /* Color intenso vibrante morado oscuro al hacer hover */
    transform: scale(1.15) rotate(-2deg); /* Micro-interacción premium */
}

.service-item-clean h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.service-item-clean p {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Split Section */
.container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 32px;
}

.elegant-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.elegant-list li {
    font-size: 16px;
    padding-left: 32px;
    position: relative;
    color: var(--text-main);
}

.elegant-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--primary-light);
    border-radius: 50%;
}

.organic-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    background-image: url('images/chica.png');
    background-size: cover;
    background-position: center;
    border-radius: 40px 140px 40px 140px;
    overflow: hidden;
    opacity: 1;
    box-shadow: 0 20px 40px rgba(140, 74, 136, 0.15);
}

.decorative-dots {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(var(--primary-muted) 2px, transparent 2px);
    background-size: 16px 16px;
    z-index: -1;
    opacity: 0.4;
}

.mt-4 { margin-top: 32px; }

.inspirational-box {
    background: rgba(140, 74, 136, 0.05);
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    border-radius: 0 8px 8px 0;
}

.inspirational-box p {
    margin-bottom: 0;
    font-size: 16.5px;
    color: var(--text-main);
}

/* ===== INFINITE MARQUEE TESTIMONIALS ===== */
.pt-0 { padding-top: 0 !important; }
.mb-32 { margin-bottom: 32px; }

.marquee-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Hace que el contenedor ocupe todo el ancho de la pantalla */
    overflow: hidden;
    background-color: var(--bg-soft);
    border-top: 1px solid rgba(191, 164, 182, 0.2);
    border-bottom: 1px solid rgba(191, 164, 182, 0.2);
    padding: 64px 0;
    position: relative;
    display: flex;
}

/* Difuminado en los bordes para mayor inmersión y suavidad */
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-soft), transparent);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-soft), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    gap: 32px;
    padding-right: 32px; /* Mismo valor que gap para enlace perfecto */
}

.marquee-card {
    width: 450px;
    max-width: 85vw; /* Diseño responsivo insertado sin queries adicionales */
    background: var(--bg-white);
    border-radius: var(--radius-soft);
    box-shadow: 0 16px 40px rgba(41, 21, 40, 0.04);
    border: 1px solid rgba(191, 164, 182, 0.15);
    padding: 48px;
    position: relative;
    text-align: left;
    flex-shrink: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.marquee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(140, 74, 136, 0.1);
}

.marquee-card .quote-mark {
    font-family: var(--font-heading);
    font-size: 64px;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.3;
}

.marquee-card .testimonial-text {
    font-size: 17.5px;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 24px;
    font-style: italic;
}

.marquee-card .testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

@keyframes scroll-marquee {
    to {
        transform: translateX(-50%);
    }
}

/* ===== FOOTER OVERRIDES & EXTRAS ===== */

/* ===== BOOKING SECTION ===== */
.booking-wrapper {
    background: #FFFFFF;
    border-radius: 40px;
    padding: 64px;
    box-shadow: 0 40px 80px rgba(140, 74, 136, 0.12);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
    border: 1px solid rgba(191, 164, 182, 0.25);
    position: relative;
    overflow: hidden;
}



/* ===== BOOKING SECTION (INTEGRATED CALENDAR) ===== */
.booking-section {
    background-color: var(--bg-soft);
}

.booking-calendar-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.tidycal-embed-wrapper {
    background: var(--bg-white);
    border-radius: 30px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(41, 21, 40, 0.05);
    border: 1px solid rgba(191, 164, 182, 0.2);
    min-height: 600px;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    background: var(--bg-white);
    padding: 64px;
    border-radius: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(191, 164, 182, 0.2);
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 40px;
    }
}

.booking-text, .booking-widget {
    position: relative;
    z-index: 1;
}

.booking-text h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.booking-text p {
    font-size: 18px;
    margin-bottom: 40px;
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
}

.perk-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(140, 74, 136, 0.1);
    color: var(--primary);
    border-radius: 50%;
    font-size: 12px;
}

.booking-badge {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 16px;
}

.booking-headline {
    font-size: 48px;
    color: var(--text-main);
    margin: 0 0 48px;
}

.karyna-card {
    background: var(--bg-white);
    border-radius: 35px;
    padding: 48px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(41, 21, 40, 0.05);
    border: 1px solid rgba(191, 164, 182, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.karyna-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(140, 74, 136, 0.12);
}

.karyna-avatar-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 32px;
    border: 4px solid var(--primary-light);
    padding: 6px;
    background: var(--bg-white);
}

.karyna-avatar-ring .image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: none;
}

.karyna-name {
    font-size: 28px;
    color: var(--text-main);
    margin-bottom: 12px;
}

.karyna-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 16px;
}

.karyna-btn {
    display: block;
    background: var(--primary);
    color: var(--bg-white) !important;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    box-shadow: 0 10px 20px rgba(140, 74, 136, 0.2);
    transition: all 0.3s ease;
}

.karyna-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(140, 74, 136, 0.3);
}

.secure-payment {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 14px;
}

.secure-payment img {
    height: 18px;
    opacity: 0.6;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--bg-white);
    border-top: 1px solid rgba(191, 164, 182, 0.2);
    padding: 64px 0 24px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 64px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
}

.footer-logo-icon {
    width: 48px;
    height: auto;
    color: var(--primary);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(191, 164, 182, 0.2);
    padding-top: 24px;
    font-size: 14px;
}

.trust-pill {
    padding: 6px 16px;
    background-color: rgba(140, 74, 136, 0.05);
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-weight: 500;
}

/* ===== SCROLL ANIMATIONS (Intersection Observer) ===== */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}
.fade-in.visible {
    opacity: 1;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(140, 74, 136, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(140, 74, 136, 0.4);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .hero-title {
        font-size: 56px;
        padding-bottom: 16px;
    }
    
    .hero-visual {
        margin-left: 200px;
        transform: translateY(-50%) scale(0.6);
        opacity: 0.5;
    }
    
    .carousel-container {
        position: relative;
    }
    
    .testimonial-card {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 80px;
    }
    
    .nav-menu {
        display: none; /* simple mobile hide for now */
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .services-grid-clean {
        grid-template-columns: 1fr;
    }
    
    .footer-top, .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .carousel-btn {
        position: absolute;
        bottom: -60px;
    }
    .carousel-btn.prev {
        left: calc(50% - 60px);
    }
    .carousel-btn.next {
        right: calc(50% - 60px);
    }
    .carousel-container {
        margin-bottom: 60px;
    }
}