/* ==========================================================
   Hotel San Carlos Yautepec - Stylesheet
   ========================================================== */

:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #d1fae5;
    --dark-navy: #0f172a;
    --darker-navy: #0b1120;
    --navy-soft: #1e293b;
    --bg-cream: #f9f6ef;
    --bg-light: #f8fafc;
    --text-main: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --white: #ffffff;
    --border: #e2e8f0;
    --border-dark: rgba(255, 255, 255, 0.1);
    --wa-green: #25D366;
    --wa-green-dark: #1ebe5d;
    --amber: #f59e0b;
    --amber-light: #fef3c7;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 35px -5px rgba(0,0,0,0.1), 0 10px 15px -5px rgba(0,0,0,0.04);
    --transition: all 0.3s ease;
    --header-height: 84px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 999px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

/* Reset */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

@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;
    }
}

:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    z-index: 2000;
    border-radius: 0 0 8px 0;
    font-weight: 600;
}
.skip-link:focus { top: 0; }

h1,h2,h3,h4 {
    color: var(--dark-navy);
    line-height: 1.2;
    font-weight: 700;
}

.serif-title {
    font-family: var(--font-serif);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.serif-title.light { color: var(--white); }

.overline {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================
   HEADER
   ========================================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.header.scrolled .nav-link { color: var(--text-main); }
.header.scrolled .mobile-menu-btn { color: var(--text-main); }
.header.scrolled .logo-svg circle { fill: #fbbf24; }
.header.scrolled .logo-svg path:nth-of-type(1) { fill: #b45309; }
.header.scrolled .logo-svg path:nth-of-type(2) { fill: #10b981; }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }

.logo-svg {
    width: 70px;
    height: 36px;
}

.header:not(.scrolled) .logo-svg circle { fill: #fbbf24; }
.header:not(.scrolled) .logo-svg path:nth-of-type(1) { fill: rgba(255, 255, 255, 0.6); }
.header:not(.scrolled) .logo-svg path:nth-of-type(2) { fill: var(--white); }
.header:not(.scrolled) .logo-svg path[stroke] { stroke: var(--white); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
}

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

.nav-link:hover::after,
.nav-link:focus-visible::after { width: 100%; }

.nav-cta {
    padding: 11px 24px !important;
    font-size: 0.9rem !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    padding: 6px;
    transition: var(--transition);
    position: relative;
    z-index: 1001;
}
.mobile-menu-btn .icon-close { display: none; }
.mobile-menu-btn[aria-expanded="true"] .icon-menu { display: none; }
.mobile-menu-btn[aria-expanded="true"] .icon-close { display: block; }

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1.2;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white) !important;
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

.btn-white {
    background-color: var(--white);
    color: var(--dark-navy) !important;
}
.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-success {
    background-color: var(--wa-green);
    color: var(--white) !important;
}
.btn-success:hover {
    background-color: var(--wa-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.btn-dark {
    background-color: var(--dark-navy);
    color: var(--white) !important;
}
.btn-dark:hover {
    background-color: var(--navy-soft);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}
.link-arrow:hover { gap: 10px; color: var(--primary-dark); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 40px) 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    /* Fallback gradient si imagen falla */
    background:
        linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f766e 100%);
    background-image:
        url('https://cf.bstatic.com/xdata/images/hotel/max1024x768/345945684.jpg?k=5935741e36c46327c2ebc1f4b10f42d0cbdcf27fc9e967fabf227d4ac91bd2cf&o='),
        linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f766e 100%);
    background-size: cover;
    background-position: center;
    background-color: var(--dark-navy);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(15, 23, 42, 0.75) 40%,
        rgba(15, 23, 42, 0.55) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 760px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--primary);
    padding: 7px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.badge-dark {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.05;
    max-width: 720px;
}

.highlight { color: var(--primary); }

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;
}

.features-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 9px 18px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pill svg {
    color: var(--primary);
}

.wave-divider {
    position: absolute;
    bottom: -1px; left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 70px;
}

.wave-divider svg path { fill: var(--bg-cream); }

/* ==========================================================
   SECTION HEADERS
   ========================================================== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header.align-left { text-align: left; }

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header.align-left p { margin: 0; }

/* ==========================================================
   EXPERIENCE SECTION
   ========================================================== */
.experience-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.exp-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b, #334155);
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

.exp-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.exp-floating-card {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-30%);
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 200px;
}

.exp-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.exp-floating-title {
    font-weight: 700;
    color: var(--dark-navy);
    font-size: 0.95rem;
}

.exp-floating-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.exp-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 24px;
}

.exp-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.exp-text p:last-of-type {
    margin-bottom: 30px;
}

/* ==========================================================
   SERVICES SECTION
   ========================================================== */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-card.highlighted {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-blue { background: #dbeafe; color: #3b82f6; }
.service-icon-purple { background: #ede9fe; color: #8b5cf6; }
.service-icon-amber { background: #fef3c7; color: var(--amber); }

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================
   REVIEWS SECTION
   ========================================================== */
.reviews-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-stars svg {
    width: 20px;
    height: 20px;
}

.review-card blockquote {
    font-style: italic;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.review-name {
    font-weight: 600;
    color: var(--dark-navy);
}

.review-banner {
    margin: 48px auto 0;
    max-width: 600px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 16px 24px;
    border-radius: var(--radius-full);
    text-align: center;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.review-banner {
    display: flex;
    width: fit-content;
}

.review-banner svg { color: var(--primary); flex-shrink: 0; }

/* center the banner */
.reviews-section .container > .review-banner {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================
   ROOMS
   ========================================================== */
.rooms {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.rooms-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.rooms-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 8px;
}

.rooms-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0;
}

.season-banner {
    background: var(--amber-light);
    border: 1px solid #fde68a;
    color: #92400e;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.season-dot {
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

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

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.room-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.room-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' opacity='0.15'%3E%3Cpath d='M3 9.5L12 3l9 6.5V20a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9.5z'/%3E%3Cpath d='M9 22V12h6v10'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80px;
    z-index: 0;
}

.room-main-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.room-thumbs {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    background: var(--white);
    overflow-x: auto;
    scrollbar-width: none;
}

.room-thumbs::-webkit-scrollbar { display: none; }

.thumb {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    flex-shrink: 0;
    transition: var(--transition);
    opacity: 0.7;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ocultar texto alt si la imagen falla */
    font-size: 0;
    color: transparent;
}

.thumb.active {
    border-color: var(--primary);
    opacity: 1;
    transform: scale(1.05);
}

.thumb:hover {
    opacity: 1;
}

.room-content {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.room-head h3 {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.3;
}

.room-badge {
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.room-bed {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.room-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

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

.room-features svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.room-price {
    color: var(--text-muted);
    margin-bottom: 16px;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px dashed var(--border);
    font-size: 0.9rem;
}

.room-price strong {
    color: var(--dark-navy);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 2px;
}

.room-price span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================
   LOCATION SECTION (dark)
   ========================================================== */
.location-section {
    padding: 100px 0;
    background: var(--dark-navy);
    background-image:
        radial-gradient(circle at 0% 50%, rgba(16, 185, 129, 0.06), transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.04), transparent 50%);
    color: var(--white);
}

.loc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.loc-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 36px;
}

.loc-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 28px;
}

.loc-features li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.loc-icon {
    width: 44px;
    height: 44px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.loc-features h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.loc-features p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.loc-card-highlight {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 14px;
    align-items: center;
}

.loc-icon-sm {
    width: 34px;
    height: 34px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.loc-card-highlight h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.loc-card-highlight p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.loc-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
    background: var(--navy-soft);
}

.loc-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.accordion-item:hover { border-color: var(--primary); }

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.accordion-heading {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.accordion-header > span { flex: 1; }

.accordion-header .icon {
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--text-muted);
    flex-shrink: 0;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding: 0 24px 22px;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
    background-color: var(--darker-navy);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.logo-svg-footer {
    width: 90px;
    height: 45px;
    margin-bottom: 24px;
}

.footer-brand p { max-width: 400px; line-height: 1.6; }

.footer h4 {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.5;
}

.footer-contact svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.875rem;
}

.footer-slogan {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
}

.dev-credits a {
    color: var(--white);
    font-weight: 600;
}

/* ==========================================================
   FLOATING WHATSAPP
   ========================================================== */
.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: var(--wa-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-wa 2.5s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), var(--shadow-lg); }
    50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), var(--shadow-lg); }
}

/* ==========================================================
   RESERVATION MODAL
   ========================================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.open {
    display: flex;
    animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-dialog {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    animation: modalSlide 0.3s ease;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

@keyframes modalSlide {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-light);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--border);
    color: var(--dark-navy);
}

.modal-header {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-right: 30px;
}

.modal-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-header h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.date-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.date-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.date-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark-navy);
    background: var(--white);
    transition: var(--transition);
}

.date-field input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.date-field input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
}

.date-field input:invalid {
    border-color: var(--border);
}

.nights-info {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.season-alert {
    background: var(--amber-light);
    border: 1px solid #fde68a;
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.season-alert-icon {
    color: var(--amber);
    flex-shrink: 0;
    margin-top: 2px;
}

.season-alert-title {
    font-weight: 700;
    color: #92400e;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.season-alert-text {
    color: #78350f;
    font-size: 0.875rem;
    line-height: 1.5;
}

body.modal-open {
    overflow: hidden;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 992px) {
    .exp-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .exp-image {
        max-width: 600px;
        margin: 0 auto;
    }
    .loc-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(320px, 85vw);
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 90px 28px 30px;
        gap: 8px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-menu.open { transform: translateX(0); }

    .nav-menu .nav-link {
        color: var(--text-main);
        padding: 14px 16px;
        border-radius: 8px;
        font-size: 1.05rem;
    }

    .nav-menu .nav-link:hover { background: var(--bg-light); }
    .nav-menu .nav-link::after { display: none; }

    .nav-menu .nav-cta {
        margin-top: 12px;
        align-self: stretch;
    }

    .mobile-menu-btn[aria-expanded="true"] {
        color: var(--dark-navy);
    }

    body.menu-open { overflow: hidden; }

    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 998;
        animation: modalFadeIn 0.3s ease;
    }

    .hero {
        padding: calc(var(--header-height) + 30px) 0 80px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn { width: 100%; }

    .experience-section,
    .services-section,
    .reviews-section,
    .rooms,
    .location-section,
    .faq-section { padding: 70px 0; }

    .rooms-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .exp-floating-card {
        transform: translateX(-50%);
        left: 50%;
        bottom: -30px;
    }

    .experience-section { padding-bottom: 100px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .floating-wa {
        width: 56px; height: 56px;
        bottom: 20px; right: 20px;
    }

    .modal-dialog {
        padding: 24px 22px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }

    .date-fields {
        grid-template-columns: 1fr;
    }
}

@media print {
    .header, .floating-wa, .mobile-menu-btn,
    .hero-actions, .wave-divider, .modal {
        display: none !important;
    }
    .hero { min-height: auto; padding: 40px 0; }
    .hero-bg, .hero-overlay { display: none; }
    .hero-title, .hero-subtitle { color: var(--dark-navy); }
}
