/* ===== VARIABLES CSS - DARK LUXURY THEME WITH ROSE GOLD ===== */
:root {
    --primary-silver: #E8E8E8;
    --light-silver: #F5F5F5;
    --bright-silver: #FFFFFF;
    --metallic-silver: #C0C0C0;
    --dark-silver: #808080;
    --charcoal: #1a1a1a;
    --black: #0a0a0a;
    --bg-dark: #0f0f0f;
    --bg-darker: #050505;
    
    --rose-gold: #B8C5D6;
    --rose-gold-light: #D4DEE8;
    --rose-gold-dark: #8A98A9;
    --pink-glow: #C8D4E0;
    --gold-accent: #A8B8C8;
    
    --gradient-silver: linear-gradient(135deg, #FFFFFF 0%, #E8E8E8 50%, #C0C0C0 100%);
    --gradient-shine: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 50%, #E8E8E8 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    --gradient-bg: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    --gradient-rose-gold: linear-gradient(135deg, #B8C5D6 0%, #A8B8C8 100%);
    --gradient-rose-glow: linear-gradient(135deg, #C8D4E0 0%, #D4DEE8 50%, #A8B8C8 100%);
    
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Italiana', serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.7);
    --shadow-hard: 0 20px 60px rgba(0, 0, 0, 0.9);
    --shadow-glow: 0 0 40px rgba(255, 255, 255, 0.2);
    --shadow-silver: 0 0 30px rgba(232, 232, 232, 0.3);
    --shadow-rose-gold: 0 0 30px rgba(184, 197, 214, 0.4);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    visibility: visible;
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body,
html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-primary);
    color: var(--light-silver);
    line-height: 1.6;
    background: var(--bg-dark);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(184, 197, 214, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 184, 200, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(192, 192, 192, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        padding: 0 40px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9997;
}

.btn-whatsapp,
.btn-call {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
    animation: float-pulse 3s ease-in-out infinite;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.btn-whatsapp:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.btn-call {
    background: var(--gradient-rose-gold);
    color: white;
}

.btn-call:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 40px rgba(184, 197, 214, 0.6);
}

@keyframes float-pulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 968px) {
    .floating-buttons {
        bottom: 25px;
        right: 20px;
        gap: 12px;
    }
    
    .btn-whatsapp,
    .btn-call {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
    }
}

@media (max-width: 576px) {
    .floating-buttons {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }
    
    .btn-whatsapp,
    .btn-call {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-rose-gold);
    color: white;
    border-color: var(--rose-gold);
    box-shadow: var(--shadow-soft), var(--shadow-rose-gold);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-hard), 0 0 60px rgba(184, 197, 214, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--bright-silver);
    border: 2px solid var(--rose-gold-light);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--gradient-rose-gold);
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-rose-gold);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn:focus-visible {
    outline: 3px solid rgba(184, 197, 214, 0.6);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 0.85rem;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(184, 197, 214, 0.1);
    padding: 15px 0;
    border-bottom: 1px solid rgba(184, 197, 214, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-rose-gold);
    box-shadow: 0 0 10px rgba(184, 197, 214, 0.5);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--bright-silver);
    font-family: var(--font-heading);
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(184, 197, 214, 0.3);
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--rose-gold-light);
    letter-spacing: 4px;
    font-weight: 300;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-link {
    color: var(--primary-silver);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.9rem;
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-rose-gold);
    transform: translateX(-50%);
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(184, 197, 214, 0.5);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--rose-gold-light);
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(184, 197, 214, 0.5);
}

.nav-link:focus-visible {
    outline: 3px solid rgba(184, 197, 214, 0.6);
    outline-offset: 3px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 10001;
    background: transparent;
    border: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--bright-silver);
    border-radius: 3px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.hamburger:hover span {
    background: var(--rose-gold-light);
    box-shadow: 0 0 15px rgba(184, 197, 214, 0.6);
}

.hamburger:focus-visible {
    outline: 3px solid rgba(184, 197, 214, 0.6);
    outline-offset: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 968px) {
    .hamburger {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 70px !important;
        right: -100% !important;
        width: 80% !important;
        max-width: 400px !important;
        height: calc(100vh - 70px) !important;
        background: rgba(10, 10, 10, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 40px 30px !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        border-left: 1px solid rgba(184, 197, 214, 0.2) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        z-index: 999 !important;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8) !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
    
    .nav-menu li {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .nav-link {
        display: flex !important;
        color: var(--bright-silver) !important;
        width: 100% !important;
        padding: 18px 0 !important;
        border-bottom: 1px solid rgba(184, 197, 214, 0.15) !important;
        font-size: 1.1rem !important;
        min-height: 44px;
        align-items: center;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--rose-gold-light) !important;
        padding-left: 10px !important;
        transform: translateY(0) !important;
    }
    
    .nav-link::after {
        display: none !important;
    }
    
    .nav-menu .btn {
        width: 100% !important;
        text-align: center !important;
        margin-top: 20px !important;
        padding: 16px 0 !important;
    }
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
/* ===== HERO SECTION - VERSIÓN 4 + OPCIÓN C ===== */
/* VERSIÓN 4: COVER CON AJUSTE INTELIGENTE */
/* OPCIÓN C: BOTONES SEMI-TRANSPARENTES EN MÓVIL */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--bright-silver);
    overflow: hidden;
}

@media (min-width: 1024px) and (hover: hover) {
    .hero {
        background-attachment: fixed;
    }
}

@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(184, 197, 214, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(168, 184, 200, 0.1) 0%, transparent 40%);
    animation: heroShine 10s ease-in-out infinite;
    z-index: 2;
}

@keyframes heroShine {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ===== SLIDESHOW CONTAINER ===== */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* ===== INDIVIDUAL SLIDES - MEJOR POSICIÓN PARA EVITAR CORTES ===== */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* DESKTOP: Cover con mejor posición */
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    background-color: #0a0a0a;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 12s ease-out;
    will-change: opacity, transform;
}

/* GRADIENTES ESPECÍFICOS PARA CADA IMAGEN - SOLO DESKTOP */
@media (min-width: 769px) {
    /* Hero 1, 2, 4: Texto izquierda, rostro derecha → oscurecer izquierda */
    .hero-slide:nth-child(1)::after,
    .hero-slide:nth-child(2)::after,
    .hero-slide:nth-child(4)::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            to right,
            rgba(10, 10, 10, 0.85) 0%,
            rgba(10, 10, 10, 0.7) 25%,
            rgba(10, 10, 10, 0.5) 40%,
            rgba(10, 10, 10, 0.3) 60%,
            transparent 80%
        );
        pointer-events: none;
        z-index: 1;
    }

    /* Hero 3: Texto derecha, rostro izquierda → oscurecer derecha */
    .hero-slide:nth-child(3)::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            to left,
            rgba(10, 10, 10, 0.85) 0%,
            rgba(10, 10, 10, 0.7) 25%,
            rgba(10, 10, 10, 0.5) 40%,
            rgba(10, 10, 10, 0.3) 60%,
            transparent 80%
        );
        pointer-events: none;
        z-index: 1;
    }
}

/* MÓVIL: Contain para mostrar imagen completa */
@media (max-width: 768px) {
    .hero-slide {
        background-size: contain !important;
        background-position: center center !important;
    }
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Ken Burns Effect - Zoom muy suave */
.hero-slide.active {
    animation: kenBurnsSubtle 20s ease-out forwards;
}

@keyframes kenBurnsSubtle {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

/* Fade Out Effect */
.hero-slide.fade-out {
    opacity: 0;
    transition: opacity 1.5s ease-out;
}

/* ===== OVERLAY OSCURO ===== */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(26, 26, 26, 0.3) 50%,
        rgba(10, 10, 10, 0.5) 100%
    );
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(184, 197, 214, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(168, 184, 200, 0.1) 0%, transparent 40%);
    animation: heroShine 10s ease-in-out infinite;
}

/* ===== HERO CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HERO LOGO ===== */
.hero-logo {
    margin-bottom: 40px;
    position: relative;
}

.hero-logo::before,
.hero-logo::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: var(--gradient-rose-gold);
    box-shadow: 0 0 20px rgba(184, 197, 214, 0.5);
}

.hero-logo::before {
    top: -35px;
}

.hero-logo::after {
    bottom: -35px;
}

.hero-title {
    font-size: 5.5rem;
    font-family: var(--font-heading);
    margin-bottom: 15px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 5px;
    color: var(--bright-silver);
    text-shadow: 
        0 0 30px rgba(184, 197, 214, 0.5),
        0 0 60px rgba(168, 184, 200, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.8);
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 
            0 0 30px rgba(184, 197, 214, 0.5),
            0 0 60px rgba(168, 184, 200, 0.3),
            0 2px 10px rgba(0, 0, 0, 0.8);
    }
    50% { 
        text-shadow: 
            0 0 40px rgba(184, 197, 214, 0.8),
            0 0 80px rgba(168, 184, 200, 0.5),
            0 2px 15px rgba(0, 0, 0, 0.9);
    }
}

.hero-subtitle-small {
    font-size: 1.2rem;
    letter-spacing: 7px;
    font-weight: 300;
    opacity: 0.9;
    color: var(--rose-gold-light);
    text-shadow: 0 0 20px rgba(184, 197, 214, 0.3), 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 1.5px;
    color: var(--light-silver);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 50px;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 35px;
    background: rgba(184, 197, 214, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(184, 197, 214, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(184, 197, 214, 0.1);
}

.stars {
    color: var(--gold-accent);
    font-size: 1.3rem;
    filter: drop-shadow(0 0 10px rgba(168, 184, 200, 0.5));
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 10px rgba(168, 184, 200, 0.5)); 
    }
    50% { 
        transform: scale(1.1); 
        filter: drop-shadow(0 0 20px rgba(168, 184, 200, 0.8)); 
    }
}

/* ===== SLIDESHOW CONTROLS - DESKTOP ===== */
.hero-slide-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(184, 197, 214, 0.4);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(184, 197, 214, 0.6);
    color: var(--bright-silver);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0.8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-slide-control:hover {
    opacity: 1;
    background: rgba(184, 197, 214, 0.7);
    border-color: var(--rose-gold-light);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 0 40px rgba(184, 197, 214, 0.8);
}

.hero-slide-control.prev {
    left: 30px;
}

.hero-slide-control.next {
    right: 30px;
}

/* ===== SLIDE INDICATORS ===== */
.hero-slide-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
}

.hero-slide-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-slide-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.hero-slide-indicator.active {
    background: var(--rose-gold-light);
    border-color: var(--rose-gold-light);
    box-shadow: 0 0 20px rgba(184, 197, 214, 1);
    transform: scale(1.4);
}

/* ===== SCROLL INDICATOR ===== */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.hero-scroll i {
    font-size: 2.5rem;
    color: var(--rose-gold-light);
    filter: drop-shadow(0 0 20px rgba(184, 197, 214, 0.5));
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 968px) {
    .hero {
        padding-top: 80px;
        min-height: 100vh;
        height: auto;
    }

    .hero-content {
        padding-top: 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-slide-control {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .hero-slide-control.prev {
        left: 15px;
    }
    
    .hero-slide-control.next {
        right: 15px;
    }
    
    .hero-slide-indicators {
        bottom: 120px;
        gap: 10px;
    }
    
    .hero-slide-indicator {
        width: 11px;
        height: 11px;
    }
}

/* ===== RESPONSIVE - MÓVIL (BOTONES MÁS PEQUEÑOS Y TRANSPARENTES) ===== */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    /* BOTONES BOOK NOW Y VIEW SERVICES TOTALMENTE TRANSPARENTES EN MÓVIL */
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        background: transparent !important;
        border: 2px solid rgba(255, 255, 255, 0.7) !important;
        color: var(--bright-silver) !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .hero-buttons .btn-primary:active,
    .hero-buttons .btn-secondary:active {
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: var(--bright-silver) !important;
        transform: translateY(-2px) scale(1.02) !important;
    }
    
    /* BOTONES DE NAVEGACIÓN DEL SLIDESHOW - MUY PEQUEÑOS Y CASI INVISIBLES */
    .hero-slide-control {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
        /* CASI INVISIBLES */
        opacity: 0.3;
        background: transparent !important;
        border: 1.5px solid rgba(255, 255, 255, 0.25);
        color: rgba(255, 255, 255, 0.6);
        backdrop-filter: none;
    }
    
    /* Al tocar aparecen un poco */
    .hero-slide-control:active {
        opacity: 0.9 !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.6) !important;
        color: rgba(255, 255, 255, 1) !important;
        transform: translateY(-50%) scale(1.1) !important;
    }
    
    .hero-slide-control.prev {
        left: 8px;
    }
    
    .hero-slide-control.next {
        right: 8px;
    }
    
    /* Indicadores MÁS pequeños y discretos */
    .hero-slide-indicators {
        bottom: 100px;
        gap: 7px;
    }
    
    .hero-slide-indicator {
        width: 8px;
        height: 8px;
        opacity: 0.4;
        background: rgba(255, 255, 255, 0.3);
        border: 1.5px solid rgba(255, 255, 255, 0.4);
    }
    
    .hero-slide-indicator.active {
        opacity: 0.9;
        background: var(--rose-gold-light);
        border-color: var(--rose-gold-light);
        transform: scale(1.3);
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.hero-slide {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* ===== SECTIONS BASE ===== */
section {
    padding: 120px 0;
    position: relative;
    background: var(--bg-dark);
}

@media (max-width: 968px) {
    section {
        padding: 80px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-rose-gold);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(184, 197, 214, 0.3);
}

.section-label {
    display: inline-block;
    color: var(--rose-gold-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    position: relative;
    padding: 0 25px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--rose-gold));
    box-shadow: 0 0 10px rgba(184, 197, 214, 0.3);
}

.section-label::before {
    left: -55px;
}

.section-label::after {
    right: -55px;
    background: linear-gradient(to left, transparent, var(--rose-gold));
}

.section-title {
    font-size: 3.8rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--bright-silver);
    font-weight: 400;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.section-description {
    font-size: 1.15rem;
    color: var(--metallic-silver);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

@media (max-width: 968px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(26, 26, 26, 0.95));
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 197, 214, 0.08) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(80px, 80px) rotate(180deg); }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    padding-right: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--metallic-silver);
    margin-bottom: 25px;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(184, 197, 214, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(184, 197, 214, 0.15);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(184, 197, 214, 0.1);
    border-color: var(--rose-gold);
    box-shadow: 0 20px 60px rgba(184, 197, 214, 0.3);
}

.feature-item i {
    font-size: 3rem;
    color: var(--rose-gold-light);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(184, 197, 214, 0.4));
}

.feature-item h4 {
    font-size: 1.3rem;
    color: var(--bright-silver);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--metallic-silver);
    line-height: 1.6;
    margin: 0;
}

.about-slideshow {
    position: relative;
}

.slideshow-container {
    position: relative;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(184, 197, 214, 0.2);
    border: 2px solid rgba(184, 197, 214, 0.2);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: var(--rose-gold-light);
    border-color: var(--rose-gold-light);
    box-shadow: 0 0 15px rgba(184, 197, 214, 0.6);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        padding-right: 0;
    }

    .slideshow-container {
        height: 400px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .slideshow-container {
        height: 300px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: linear-gradient(135deg, rgba(184, 197, 214, 0.05) 0%, rgba(10, 10, 10, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 197, 214, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(184, 197, 214, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px 35px;
    border: 1px solid rgba(184, 197, 214, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 184, 200, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--rose-gold);
    box-shadow: 0 25px 60px rgba(184, 197, 214, 0.4);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-rose-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(184, 197, 214, 0.4);
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    color: var(--bright-silver);
    margin-bottom: 5px;
}

.testimonial-stars {
    color: var(--gold-accent);
    font-size: 1rem;
    filter: drop-shadow(0 0 10px rgba(168, 184, 200, 0.3));
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--light-silver);
    font-style: italic;
    position: relative;
    padding-left: 25px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--rose-gold);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-date {
    font-size: 0.85rem;
    color: var(--rose-gold-light);
    margin-top: 20px;
    opacity: 0.8;
}

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    background: linear-gradient(135deg, #E8EEF3 0%, #F5F8FA 50%, #E8EEF3 100%);
    position: relative;
    overflow: hidden;
}


/* Estilos específicos para texto en services-overview */
.services-overview .section-label {
    color: #2c3e50 !important;
}

.services-overview .section-label::before,
.services-overview .section-label::after {
    background: linear-gradient(to right, transparent, #6c7a89);
    box-shadow: 0 0 10px rgba(108, 122, 137, 0.3);
}

.services-overview .section-label::after {
    background: linear-gradient(to left, transparent, #6c7a89);
}

.services-overview .section-title {
    color: #1a1a1a !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services-overview .section-description {
    color: #4a5568 !important;
}
.services-overview::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 197, 214, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card-image {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    border: 1px solid rgba(184, 197, 214, 0.15);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7), rgba(184, 197, 214, 0.4));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card-overlay i {
    font-size: 3.5rem;
    color: var(--rose-gold-light);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(184, 197, 214, 0.5));
    transition: var(--transition);
}

.service-card-overlay h3 {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--bright-silver);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.service-card-overlay p {
    font-size: 1.1rem;
    color: var(--gold-accent);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(168, 184, 200, 0.3);
}

.service-card-link:hover .service-card-image {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(184, 197, 214, 0.3);
    border-color: var(--rose-gold);
}

.service-card-link:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-link:hover .service-card-overlay {
    background: linear-gradient(135deg, rgba(184, 197, 214, 0.6), rgba(168, 184, 200, 0.3));
}

.service-card-link:hover .service-card-overlay i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(184, 197, 214, 0.8));
}

.services-cta-button {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card-image {
        height: 300px;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--gradient-bg);
}

.gallery-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    height: 420px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(184, 197, 214, 0.3);
    border-color: var(--rose-gold);
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 197, 214, 0.9), rgba(10, 10, 10, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(168, 184, 200, 0.2) 0%, transparent 60%);
}

.gallery-overlay i {
    font-size: 4rem;
    color: var(--bright-silver);
    filter: drop-shadow(0 0 30px rgba(184, 197, 214, 0.8));
    animation: zoomIn 0.6s ease;
    position: relative;
    z-index: 1;
}

@keyframes zoomIn {
    from { 
        transform: scale(0) rotate(-180deg); 
    }
    to { 
        transform: scale(1) rotate(0deg); 
    }
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.15);
    filter: brightness(0.5);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.btn-social {
    padding: 12px 30px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-social i {
    font-size: 1.2rem;
}

@media (max-width: 968px) {
    .gallery-grid-home {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item {
        height: 350px;
    }

    .gallery-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn-social {
        width: 100%;
        justify-content: center;
    }
}

/* ===== INSTAGRAM FEED SECTION ===== */
.instagram-widget-container {
    margin: 40px 0;
    min-height: 400px;
    position: relative;
}

.instagram-fallback {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.instagram-fallback.active {
    display: block;
}

.fallback-content {
    max-width: 800px;
    margin: 0 auto;
}

.fallback-categories {
    margin: 30px 0;
}

.category-grid-fallback {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 20px auto 0;
}

.category-card-fallback {
    text-decoration: none;
    padding: 25px;
    background: rgba(201, 160, 95, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(201, 160, 95, 0.2);
}

.category-card-fallback:hover {
    background: rgba(201, 160, 95, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201, 160, 95, 0.3);
}

.category-card-fallback i {
    font-size: 2.5em;
    color: var(--rose-gold-light);
}

.category-card-fallback span {
    color: var(--bright-silver);
    font-weight: 600;
}

/* ===== BOOKING SECTION ===== */
.booking {
    background: var(--bg-darker);
    color: var(--bright-silver);
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(184, 197, 214, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(168, 184, 200, 0.08) 0%, transparent 50%);
    animation: bookingPulse 10s ease-in-out infinite;
}

@keyframes bookingPulse {
    0%, 100% { 
        opacity: 0.4; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.1); 
    }
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.booking-info .section-label {
    color: var(--rose-gold-light);
}

.booking-info .section-title {
    color: var(--bright-silver);
    text-align: left;
}

.booking-info p {
    opacity: 0.9;
    margin-bottom: 35px;
    font-size: 1.1rem;
    color: var(--metallic-silver);
}

.booking-benefits {
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 18px;
    background: rgba(184, 197, 214, 0.08);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(184, 197, 214, 0.15);
}

.benefit:hover {
    background: rgba(184, 197, 214, 0.12);
    transform: translateX(10px);
    border-color: var(--rose-gold);
    box-shadow: 0 0 30px rgba(184, 197, 214, 0.2);
}

.benefit i {
    font-size: 1.8rem;
    color: var(--rose-gold-light);
    background: rgba(184, 197, 214, 0.15);
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(184, 197, 214, 0.3);
}

.booking-button-alt {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: var(--gradient-rose-gold);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 30px rgba(184, 197, 214, 0.4);
    text-decoration: none;
}

.booking-button-alt:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 60px rgba(184, 197, 214, 0.6);
}

.booking-form-container {
    background: rgba(184, 197, 214, 0.05);
    padding: 50px 45px;
    border-radius: 25px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 0 40px rgba(184, 197, 214, 0.08);
    border: 1px solid rgba(184, 197, 214, 0.2);
    backdrop-filter: blur(10px);
}

.booking-form .form-group {
    margin-bottom: 25px;
}

.booking-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--bright-silver);
    letter-spacing: 0.5px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(184, 197, 214, 0.2);
    border-radius: 12px;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.03);
    color: var(--bright-silver);
    font-size: 1rem;
}

.booking-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B76E79' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.booking-form select option {
    background: #1a1a1a;
    color: var(--bright-silver);
    padding: 12px;
    font-weight: 500;
}

.booking-form select option:hover,
.booking-form select option:checked {
    background: var(--gradient-rose-gold);
    color: white;
}

.booking-form select optgroup {
    background: #0f0f0f;
    color: var(--bright-silver);
    font-weight: 700;
    font-style: normal;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--rose-gold);
    box-shadow: 0 0 30px rgba(184, 197, 214, 0.3);
    transform: translateY(-2px);
    background: rgba(184, 197, 214, 0.05);
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

@media (max-width: 968px) {
    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-form-container {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== MULTI-SERVICE SELECTION STYLES ===== */
.services-selection {
    margin: 25px 0;
}

.service-categories {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201, 160, 95, 0.2);
}

.service-category {
    border-bottom: 1px solid rgba(201, 160, 95, 0.1);
}

.service-category:last-child {
    border-bottom: none;
}

.category-header {
    width: 100%;
    padding: 18px 20px;
    background: rgba(201, 160, 95, 0.05);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bright-silver);
    text-align: left;
}

.category-header:hover {
    background: rgba(201, 160, 95, 0.1);
}

.category-header.active {
    background: rgba(201, 160, 95, 0.15);
    color: var(--rose-gold-light);
}

.category-header i.fa-chevron-down {
    transition: transform 0.3s ease;
    color: var(--rose-gold-light);
}

.category-header.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.category-header span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.category-content.active {
    max-height: 800px;
    padding: 15px 10px;
}

.service-checkbox {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin: 5px 0;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-checkbox:hover {
    background: rgba(201, 160, 95, 0.08);
}

.service-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    position: relative;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    border: 2px solid rgba(201, 160, 95, 0.5);
    border-radius: 3px;
    margin-right: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    display: inline-block;
}

.service-checkbox:hover .checkbox-custom {
    border-color: var(--rose-gold-light);
    box-shadow: 0 0 8px rgba(201, 160, 95, 0.3);
}

.service-checkbox input[type="checkbox"]:checked ~ .checkbox-custom {
    background: linear-gradient(135deg, #c9a05f, #b8935a);
    border-color: var(--rose-gold-light);
}

.service-checkbox input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a1a;
    font-size: 12px;
}

.service-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.service-name {
    color: var(--bright-silver);
    font-size: 0.95rem;
    font-weight: 500;
}

.service-price {
    color: var(--rose-gold-light);
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 10px;
}

.service-checkbox input[type="checkbox"]:checked ~ .service-info .service-name {
    color: var(--rose-gold-light);
}

.selected-services-summary {
    margin-top: 20px;
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}

.summary-header span {
    color: #4caf50;
    font-weight: 600;
    font-size: 1rem;
}

.clear-all-btn {
    background: none;
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.clear-all-btn:hover {
    background: rgba(244, 67, 54, 0.1);
    border-color: #f44336;
}

.summary-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.summary-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(201, 160, 95, 0.15);
    border: 1px solid rgba(201, 160, 95, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--bright-silver);
}

.summary-item .remove-service {
    background: none;
    border: none;
    color: #f44336;
    cursor: pointer;
    font-size: 1rem;
    padding: 0 5px;
    transition: all 0.2s ease;
}

.summary-item .remove-service:hover {
    transform: scale(1.2);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--gradient-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 70px;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--bright-silver);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.contact-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding: 20px;
    background: rgba(184, 197, 214, 0.05);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(184, 197, 214, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(184, 197, 214, 0.15);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(184, 197, 214, 0.2);
    border-color: var(--rose-gold);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--rose-gold-light);
    flex-shrink: 0;
    filter: drop-shadow(0 0 15px rgba(184, 197, 214, 0.4));
}

.contact-item h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bright-silver);
}

.contact-item p {
    color: var(--metallic-silver);
}

.contact-item a {
    color: var(--metallic-silver);
    transition: var(--transition);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--rose-gold-light);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 18px;
    margin-top: 40px;
}

.social-links a {
    width: 55px;
    height: 55px;
    background: rgba(184, 197, 214, 0.15);
    color: var(--rose-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.4rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(184, 197, 214, 0.2);
}

.social-links a:hover {
    background: var(--gradient-rose-gold);
    color: white;
    transform: translateY(-8px) scale(1.1) rotate(360deg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7), 0 0 30px rgba(184, 197, 214, 0.5);
}

.contact-map {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    height: 550px;
    border: 2px solid rgba(184, 197, 214, 0.2);
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map {
        height: 400px;
    }
}
/* ===== FOOTER ===== */
.footer {
    background: var(--bg-darker);
    color: var(--light-silver);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(184, 197, 214, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: 
        radial-gradient(circle at 30% 0%, rgba(184, 197, 214, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 0%, rgba(168, 184, 200, 0.03) 0%, transparent 50%);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    color: var(--bright-silver);
    text-shadow: 0 0 20px rgba(184, 197, 214, 0.3);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.9;
    color: var(--metallic-silver);
}

.footer-section h3 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--bright-silver);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li i {
    color: var(--rose-gold-light);
    width: 16px;
}

.footer-section a {
    opacity: 0.8;
    transition: var(--transition);
    color: var(--metallic-silver);
    text-decoration: none;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--rose-gold-light);
    transform: translateX(5px);
    display: inline-block;
    text-shadow: 0 0 15px rgba(184, 197, 214, 0.4);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(184, 197, 214, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid rgba(184, 197, 214, 0.2);
}

.footer-social a:hover {
    background: var(--gradient-rose-gold);
    color: white;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 0 30px rgba(184, 197, 214, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(184, 197, 214, 0.2);
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 8px 0;
    color: var(--metallic-silver);
}

.footer-bottom i {
    color: var(--rose-gold);
    animation: heartBeat 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(184, 197, 214, 0.4));
}

@keyframes heartBeat {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.2); 
    }
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-section ul li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 190px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-rose-gold);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9998;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7), 0 0 30px rgba(184, 197, 214, 0.4);
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { 
        transform: translateY(0); 
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7), 0 0 30px rgba(184, 197, 214, 0.4); 
    }
    50% { 
        transform: translateY(-10px); 
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.9), 0 0 50px rgba(184, 197, 214, 0.6); 
    }
}

.scroll-top:hover {
    background: rgba(184, 197, 214, 0.9);
    color: white;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 60px rgba(184, 197, 214, 0.8);
}

.scroll-top:focus-visible {
    outline: 3px solid rgba(184, 197, 214, 0.6);
    outline-offset: 3px;
}

@media (max-width: 968px) {
    .scroll-top {
        bottom: 155px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .scroll-top {
        bottom: 135px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */

/* GPU Acceleration for smooth animations */
.service-card-image img,
.gallery-image img,
.about-slideshow img,
.hero {
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Optimize touch interactions */
.hamburger,
.btn,
.scroll-top,
.btn-whatsapp,
.btn-call,
.nav-link,
.service-nav-link,
.filter-btn,
.category-header {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Better touch targets on mobile */
@media (max-width: 768px) {
    .nav-link,
    .service-nav-link,
    .filter-btn,
    .category-header {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Accessibility improvements */
.service-item:focus-visible,
.gallery-item:focus-visible,
.filter-btn:focus-visible,
.service-nav-link:focus-visible,
.category-header:focus-visible {
    outline: 3px solid rgba(184, 197, 214, 0.6);
    outline-offset: 4px;
}

/* Prevent FOUC (Flash of Unstyled Content) */
html {
    visibility: visible;
    opacity: 1;
}

/* Prevent horizontal scroll */
body,
html {
    overflow-x: hidden;
}

/* Smooth scrolling with offset for fixed navbar */
html {
    scroll-padding-top: 80px;
}

/* iOS Safari viewport height fix */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-slide-control,
    .hero-slide-indicator,
    .service-tooltip,
    .tooltip-content,
    .tooltip-book-btn,
    .service-item.has-tooltip,
    .hamburger span,
    .btn::before {
        transition: none !important;
        animation: none !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .floating-buttons,
    .scroll-top,
    .hero-slide-control,
    .hero-slide-indicators,
    .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        height: auto;
        padding: 40px 0;
        background: none;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-silver: #FFFFFF;
        --bright-silver: #FFFFFF;
        --metallic-silver: #CCCCCC;
        --rose-gold: #FF69B4;
        --rose-gold-light: #C8D4E0;
    }
    
    .btn-primary,
    .btn-secondary {
        border-width: 3px;
    }
    
    .nav-link:focus-visible,
    .btn:focus-visible {
        outline-width: 4px;
    }
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
    /* Already dark by default, but can add overrides if needed */
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
    cursor: wait;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid rgba(184, 197, 214, 0.3);
    border-top-color: var(--rose-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Utility classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

/* Focus visible support for better accessibility */
:focus-visible {
    outline: 3px solid rgba(184, 197, 214, 0.6);
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: rgba(184, 197, 214, 0.3);
    color: var(--bright-silver);
}

::-moz-selection {
    background: rgba(184, 197, 214, 0.3);
    color: var(--bright-silver);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
    border-radius: 6px;
    border: 2px solid var(--bg-darker);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--rose-gold-light), var(--rose-gold));
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--rose-gold) var(--bg-darker);
}

/* Ensure images are loaded progressively */
img {
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}

/* Prevent layout shift */
img[width][height] {
    height: auto;
}

/* Smooth font rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Prevent text overflow */
h1, h2, h3, h4, h5, h6, p {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Better line breaks */
p {
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}