/* =========================================================================
   Variables
   ========================================================================= */
:root {
    --primary: #8C1318;      /* Rojo carmesí del logo */
    --primary-light: #A31B22;
    --primary-dark: #630C10;
    
    --secondary: #D4660F;    /* Ámbar / Naranja del logo */
    --secondary-light: #F08027;
    
    --bg-light: #FDFCFB;     /* Crema / Blanco Hueso para el fondo */
    --bg-alt: #F4EFEB;       /* Fondo alternativo suave */
    
    --text-main: #2D2D2D;
    --text-muted: #5F5F5F;
    
    --white: #FFFFFF;
    --black: #111111;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    
    --radius: 12px;
    --radius-lg: 20px;
    
    --transition: all 0.3s ease;
}

/* =========================================================================
   Reset & Base Styles (Mobile First)
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--black);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

.section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--bg-alt);
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(140, 19, 24, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140, 19, 24, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 102, 15, 0.3);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 102, 15, 0.4);
}

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

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

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

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

/* =========================================================================
   Navbar
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(253, 252, 251, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-links::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links:hover::after, .nav-links.active::after {
    width: 100%;
}

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

.btn-nav {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(140, 19, 24, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    margin: 3px 0;
    transition: 0.4s;
    border-radius: 3px;
}

/* =========================================================================
   Hero Section — Split Screen
   ========================================================================= */
.hero-split {
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height: 700px;
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.hero-photo {
    position: relative;
    height: 55vh;
    min-height: 380px;
    width: 100%;
}

.hero-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.hero-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-radius: 36px 36px 0 0;
    padding: 2.5rem 1.5rem 3rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
}

.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--secondary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    transform: translateY(-50%);
    position: absolute;
    top: 0;
    box-shadow: 0 4px 15px rgba(240, 128, 39, 0.4);
}

.hero-card-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    line-height: 1.15;
    margin-top: 0.5rem;
}

.hero-card-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 500px;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.8rem;
}

.hero-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-alt);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-feature-pill i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.hero-cta {
    width: 100%;
    max-width: 380px;
    padding: 1.2rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
}

/* =========================================================================
   About Section
   ========================================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.about-text strong {
    color: var(--primary-dark);
}

.about-features {
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
}

.about-features i {
    color: var(--secondary);
    background-color: rgba(229, 115, 28, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    transition: transform 0.8s ease;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius) 0 0 0;
    box-shadow: -5px -5px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.about-badge span {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.about-badge strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-dark);
}

/* =========================================================================
   Rooms Section
   ========================================================================= */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.room-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-img {
    transform: scale(1.1);
}

.room-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.room-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-content h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.room-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.room-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 2rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.room-amenities li {
    font-size: 0.9rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-amenities i {
    color: var(--secondary);
}

/* =========================================================================
   Gallery Carousel
   ========================================================================= */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.carousel-track {
    display: flex;
    height: 500px;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--white);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.carousel-dots {
    display: none; /* Ocultamos los puntos porque hay 68 imágenes */
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    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);
}

.dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

/* =========================================================================
   Experiences & Amenities
   ========================================================================= */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.amenity-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    color: var(--primary-dark);
}

.amenity-item i {
    font-size: 2rem;
    color: var(--secondary);
}

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

.exp-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 5px solid transparent;
}

.exp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--secondary);
}

.exp-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.exp-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.exp-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================================================
   Footer / Contact
   ========================================================================= */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

/* Decoración geométrica sutil inspirada en el logo */
.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(229, 115, 28, 0.1);
    transform: rotate(45deg);
    z-index: 0;
}

.footer-cta {
    background: var(--primary);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.cta-title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.footer-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-content {
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 4rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
    /* Aplicar un filtro para que resalte sobre oscuro si el logo original tiene fondo blanco. 
       Como el logo es img JPG, le pondremos un background blanco redondeado */
    background: white;
    padding: 10px;
    border-radius: var(--radius);
}

.footer-desc {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.footer-links ul li, .footer-contact ul li {
    margin-bottom: 1rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    background: #4A080B;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* =========================================================================
   Animations & Reveal Classes
   ========================================================================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* =========================================================================
   Media Queries (Responsive)
   ========================================================================= */
@media screen and (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-wrapper {
        margin-top: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--primary-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        color: var(--white);
        font-size: 1.2rem;
    }
    
    .nav-links:hover {
        color: var(--secondary);
    }
    
    .nav-links::after {
        display: none;
    }
    
    .btn-nav {
        background-color: transparent;
        border: 2px solid var(--white);
        margin-top: 1rem;
    }

    /* Animate Hamburger */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .carousel-track {
        height: 350px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

@media screen and (max-width: 480px) {
    .section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .carousel-track {
        height: 320px;
    }
    
    .slide-caption {
        font-size: 1.2rem;
        padding: 1rem;
    }
}

/* =========================================================================
   Amenities Detailed Section
   ========================================================================= */
.amenities-grid-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.amenity-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.1);
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-light);
}

.amenity-img-box {
    height: 180px;
    overflow: hidden;
}

.amenity-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.amenity-card:hover .amenity-img-box img {
    transform: scale(1.1);
}

.amenity-icon-box {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    font-size: 4rem;
}

.amenity-card-content {
    padding: 1.5rem;
    text-align: center;
}

.amenity-card-content h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.amenity-card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* =========================================================================
   WhatsApp Button Styles
   ========================================================================= */
.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background-color: #1EBE5D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    color: var(--white);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =========================================================================
   Mobile Improvements
   ========================================================================= */
/* Hero subtitle — pill with high contrast */
.hero-subtitle {
    font-size: clamp(0.95rem, 3vw, 1.2rem) !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-block;
}

/* Carousel caption contrast */
.slide-caption {
    text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.4);
}

/* Transparent navbar on hero */
.navbar.at-top {
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.navbar.at-top .logo-text {
    color: var(--white);
}

.navbar.at-top .nav-links {
    color: rgba(255,255,255,0.9);
}

.navbar.at-top .bar {
    background-color: var(--white);
}

/* Mobile amenities 2 columns */
@media screen and (max-width: 768px) {
    .amenities-grid-detail {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .amenity-img-box {
        height: 160px;
    }

    .amenity-icon-box {
        height: 160px;
        font-size: 3rem;
    }

    .amenity-card-content {
        padding: 1rem;
    }

    .amenity-card-content h3 {
        font-size: 1rem;
    }

    .amenity-card-content p {
        font-size: 0.8rem;
    }

    .carousel-track {
        height: 400px;
    }

    /* Bigger carousel buttons for touch */
    .carousel-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        font-size: 1.1rem;
    }

    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}
