/* ============================================
   POUSADA FLOR DE LÓTUS - STYLESHEET
   Modern, Clean, White Theme
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #8B6F47;
    --primary-dark: #6B5535;
    --primary-light: #A8956F;
    --primary-lighter: #D4C5A9;
    --secondary: #2C3E50;
    --accent: #C9A96E;
    --gold: #D4AF37;
    --success: #27ae60;
    --danger: #e74c3c;
    --warning: #f39c12;

    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --gray-100: #F0F0F0;
    --gray-200: #E0E0E0;
    --gray-300: #CCCCCC;
    --gray-400: #999999;
    --gray-500: #777777;
    --gray-600: #555555;
    --gray-700: #333333;
    --dark: #1a1a1a;

    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.16);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.lotus-loader span {
    font-size: 4rem;
    display: inline-block;
    animation: lotusFloat 2s ease-in-out infinite;
}

.loader p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 1rem;
    letter-spacing: 3px;
}

@keyframes lotusFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* --- Container & Layout --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition-slow);
}

.header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 1rem 0; /* aumentar para acomodar logo maior */
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
}

.logo-icon {
    font-size: 2rem;
    line-height: 1;
}

/* Logo image sizing */
.logo-icon img.logo-img,
.loader-logo {
    display: block;
    height: 5.2rem; /* ainda maior para ficar mais proporcional ao texto */
    width: auto;
    object-fit: contain;
    margin-right: 0.6rem;
}

/* Preloader much larger logo */
.lotus-loader img.loader-logo {
    height: 9rem; /* destaque grande no preloader */
}

/* Scrolled (smaller) logo image */
.header.scrolled .logo-icon img.logo-img {
    height: 5.2rem; /* manter grande mesmo ao scrollear */
}

/* Preloader layout and text styling - use same font as header */
.lotus-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.lotus-loader .logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lotus-loader .logo-name {
    color: var(--primary);
    font-size: 2.6rem;
    line-height: 1;
}

.lotus-loader .logo-sub {
    color: var(--primary-dark);
    font-size: 0.75rem;
    letter-spacing: 4px;
}

.logo-name {
    font-family: 'Brittany', var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--white);
    display: block;
    line-height: 1;
    letter-spacing: 0.6px;
    transition: var(--transition);
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    transition: var(--transition);
}

.header.scrolled .logo-name {
    color: var(--gray-700);
    font-size: 1.4rem;
    font-weight: 400;
}

.header.scrolled .logo-sub {
    color: var(--primary);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header.scrolled .nav-link {
    color: var(--gray-600);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    display: block;
}

.header.scrolled .menu-toggle span {
    background: var(--gray-700);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: var(--transition-slow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 2px;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--accent);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.82rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139,111,71,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-success {
    background: var(--success);
    color: var(--white);
    border-color: var(--success);
}

.btn-success:hover {
    background: #219a52;
    border-color: #219a52;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39,174,96,0.3);
}

.btn-success:disabled,
.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-badge {
    font-size: 0.8rem;
    letter-spacing: 5px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--white);
    margin-top: 0.5rem;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 60px; }
}

/* --- Booking Bar --- */
.booking-bar {
    background: var(--white);
    padding: 0;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.booking-bar-inner {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    background: var(--white);
    padding: 2rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.booking-field {
    flex: 1;
}

.booking-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.booking-field label i {
    color: var(--primary);
    margin-right: 0.3rem;
}

.booking-field input,
.booking-field select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-700);
    background: var(--off-white);
    transition: var(--transition);
    cursor: pointer;
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(139,111,71,0.1);
}

.booking-bar-btn {
    flex-shrink: 0;
}

/* --- Section Styling --- */
.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 3rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--primary);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--gray-700);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 600px;
    font-weight: 300;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.exp-text {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.about-text {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.about-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.2rem;
}

.about-feature p {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* --- Stats Section --- */
.stats-section {
    background: var(--primary);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
}

/* --- Accommodations --- */
.accommodation-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--gray-200);
    background: var(--white);
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.accommodation-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.accommodation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.accommodation-card.hidden {
    display: none;
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.accommodation-card:hover .card-image img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.badge-superior { background: #2980b9; }
.badge-luxo { background: var(--gold); color: var(--dark); }
.badge-master { background: linear-gradient(135deg, #8B6F47, #D4AF37); }

.card-price {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;
}

.card-price span {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.accommodation-card:hover .card-image-overlay {
    opacity: 1;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.card-content > p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.card-amenities span {
    font-size: 0.78rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card-amenities i {
    color: var(--primary);
    font-size: 0.85rem;
}

.card-actions {
    border-top: 1px solid var(--gray-100);
    padding-top: 1.25rem;
}

/* --- Parallax Section --- */
.parallax-section {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.parallax-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.parallax-content p {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-lg {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.gallery-overlay i {
    font-size: 1.5rem;
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* --- Experiences --- */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.experience-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-lighter);
}

.experience-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-lighter), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.experience-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.experience-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.experience-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.experience-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

/* --- Video Section --- */
.video-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16/9;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 15px rgba(255,255,255,0.2);
}

.play-button i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-left: 4px;
}

.video-text {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    color: var(--white);
    z-index: 2;
}

.video-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.video-text p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.video-player {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* --- Testimonials --- */
.testimonials {
    background: var(--light-gray);
}

.testimonials-swiper {
    padding-bottom: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-stars i {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--gray-400);
}

/* Ensure testimonial slides/cards are equal height and content aligns nicely */
.testimonials-swiper .swiper-slide {
    display: flex;
    align-items: stretch;
    padding: 1rem 0.75rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 340px; /* consistent visual height */
}

.testimonial-text {
    /* allow the text area to grow and push author to bottom */
    flex: 1 1 auto;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    margin-top: auto; /* keep author block at bottom */
}

.swiper-pagination-bullet {
    background: var(--primary) !important;
}

/* --- Booking Section --- */
.booking {
    background: var(--off-white);
}

.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    transition: var(--transition);
}

.step.active {
    opacity: 1;
}

.step.completed {
    opacity: 0.7;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.step.completed .step-number {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.step span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray-500);
    letter-spacing: 0.5px;
}

.step-line {
    width: 80px;
    height: 2px;
    background: var(--gray-200);
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
}

/* --- Booking Dates --- */
.booking-dates-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.booking-calendar-section h3,
.booking-options-section h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.booking-calendar-section h3 i,
.booking-options-section h3 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.date-inputs-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.date-input-group {
    flex: 1;
}

.date-input-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-input-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--white);
    color: var(--gray-700);
}

.date-input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

#inlineCalendar {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

#inlineCalendar .flatpickr-calendar {
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
}

/* --- Guest Selector --- */
.guest-selector {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    margin-bottom: 1.5rem;
}

.guest-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.guest-type:last-child {
    border-bottom: none;
}

.guest-type strong {
    font-size: 0.9rem;
    color: var(--gray-700);
    display: block;
}

.guest-type span {
    font-size: 0.78rem;
    color: var(--gray-400);
}

.guest-counter {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guest-counter button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--gray-600);
}

.guest-counter button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.guest-counter span {
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    color: var(--gray-700);
}

/* --- Booking Summary Mini --- */
.booking-summary-mini {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.88rem;
}

.summary-row span:first-child {
    color: var(--gray-500);
}

.summary-row span:last-child {
    font-weight: 600;
    color: var(--gray-700);
}

/* --- Available Rooms (Step 2) --- */
.available-rooms {
    display: grid;
    gap: 1.5rem;
}

.available-room-card {
    display: grid;
    grid-template-columns: 300px 1fr auto;
    gap: 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.available-room-card:hover {
    box-shadow: var(--shadow-md);
}

.available-room-card.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,111,71,0.15);
}

.available-room-img {
    height: 100%;
    min-height: 200px;
}

.available-room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.available-room-info {
    padding: 1.5rem 0;
}

.available-room-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.available-room-info p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.room-amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.room-amenities-list span {
    background: var(--light-gray);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    color: var(--gray-600);
}

.available-room-pricing {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-left: 1px solid var(--gray-100);
    min-width: 200px;
}

.room-price-display {
    text-align: center;
}

.room-price-display .price-per-night {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.room-price-display .price-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.room-price-display .price-total {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* --- Checkout Grid --- */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.personal-info-form h3,
.payment-section h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.personal-info-form h3 i,
.payment-section h3 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* --- Form Styles --- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-700);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(139,111,71,0.1);
}

.form-group textarea {
    resize: vertical;
}

/* --- Extras --- */
.extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.extra-option {
    cursor: pointer;
}

.extra-option input {
    display: none;
}

.extra-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.extra-option input:checked + .extra-content {
    border-color: var(--primary);
    background: rgba(139,111,71,0.05);
}

.extra-content i {
    font-size: 1.5rem;
    color: var(--primary);
}

.extra-content strong {
    font-size: 0.88rem;
    color: var(--gray-700);
}

.extra-content span {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

/* --- Order Summary --- */
.order-summary {
    position: sticky;
    top: 120px;
}

.order-summary h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.order-summary h3 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.summary-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.summary-card .summary-room-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.summary-card .summary-room-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.summary-card .summary-room-category {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.summary-card hr {
    border: none;
    border-top: 1px solid var(--gray-100);
    margin: 1rem 0;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.88rem;
}

.summary-line .label { color: var(--gray-500); }
.summary-line .value { color: var(--gray-700); font-weight: 500; }

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0 0;
    margin-top: 0.5rem;
    border-top: 2px solid var(--gray-200);
    font-size: 1.1rem;
    font-weight: 700;
}

.summary-total .value {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

/* --- Payment Methods --- */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.payment-method {
    cursor: pointer;
}

.payment-method input {
    display: none;
}

.payment-method-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.payment-method input:checked + .payment-method-content {
    border-color: var(--primary);
    background: rgba(139,111,71,0.05);
}

.payment-method-content i {
    font-size: 1.2rem;
    color: var(--primary);
}

.payment-method-content span {
    font-size: 0.88rem;
    font-weight: 500;
}

/* --- Card Preview --- */
.card-preview {
    background: linear-gradient(135deg, #2C3E50, #4CA1AF);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
    aspect-ratio: 16/9;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-chip {
    width: 45px;
    height: 32px;
    background: linear-gradient(135deg, #D4AF37, #F5E6A8);
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.card-number-preview {
    font-size: 1.3rem;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
    margin-bottom: 1.5rem;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-bottom small {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    display: block;
    margin-bottom: 0.25rem;
}

.card-bottom div:last-child {
    font-size: 0.9rem;
}

/* --- PIX / Boleto --- */
.pix-info, .boleto-info {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.pix-info i, .boleto-info i {
    color: var(--primary);
    margin-bottom: 1rem;
}

.pix-info p, .boleto-info p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* --- Terms --- */
.terms-check {
    margin-top: 1.5rem;
}

.terms-check label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--gray-600);
}

.terms-check input {
    margin-top: 3px;
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

.terms-check a {
    color: var(--primary);
    font-weight: 600;
}

.terms-check a:hover {
    text-decoration: underline;
}

/* --- Booking Navigation --- */
.booking-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

/* --- Confirmation --- */
.confirmation-content {
    text-align: center;
    padding: 3rem 0;
}

.confirmation-icon {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 1.5rem;
    animation: confirmPulse 1s ease;
}

@keyframes confirmPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.confirmation-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.confirmation-content > p {
    color: var(--gray-500);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.confirmation-details {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: left;
    box-shadow: var(--shadow-md);
}

.confirmation-details .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}

.confirmation-details .detail-row:last-child {
    border-bottom: none;
}

.confirmation-details .detail-label {
    color: var(--gray-500);
}

.confirmation-details .detail-value {
    color: var(--gray-700);
    font-weight: 600;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.1rem;
}

.contact-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.3rem;
}

.contact-item p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* --- Map --- */
.map-section {
    line-height: 0;
}

.map-section iframe {
    filter: grayscale(0.3);
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-logo .logo-sub {
    color: var(--accent);
}

.footer-col > p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

/* Ensure icon glyphs are perfectly centered inside their circular buttons */
.footer-social a i,
.social-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 1;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    padding: 0.3rem 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 0.5rem;
}

.footer-col p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.footer-col p i {
    color: var(--primary-light);
    margin-right: 0.5rem;
    width: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* --- Modal --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    animation: modalIn 0.3s ease;
}

.modal-lg {
    max-width: 900px;
}

@keyframes modalIn {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-500);
    line-height: 1;
    z-index: 10;
}

.modal-close:hover {
    color: var(--gray-700);
}

.modal-body h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gray-700);
    margin: 1.5rem 0 0.5rem;
}

.modal-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* --- Accommodation Detail Modal --- */
.detail-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.detail-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.detail-images .detail-side-imgs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-images .detail-side-imgs img {
    height: calc(125px - 0.25rem);
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.detail-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gray-700);
}

.detail-header .detail-price {
    text-align: right;
}

.detail-header .detail-price .price-val {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.detail-header .detail-price small {
    color: var(--gray-400);
    font-size: 0.82rem;
}

.detail-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.detail-amenities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.detail-amenity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--gray-600);
}

.detail-amenity i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

/* --- Toast Notification --- */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gray-700);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .about-grid {
        gap: 3rem;
    }
    .booking-dates-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .nav { display: none; }
    .menu-toggle { display: flex; }

    .header-actions .btn {
        display: none;
    }

    .booking-bar-inner {
        flex-direction: column;
    }

    .booking-field {
        width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-lg {
        grid-column: span 1;
    }

    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .available-room-card {
        grid-template-columns: 250px 1fr;
    }

    .available-room-pricing {
        border-left: none;
        border-top: 1px solid var(--gray-100);
        grid-column: span 2;
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }

    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .accommodations-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .experiences-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .booking-steps {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .step-line {
        width: 30px;
    }

    .step span {
        display: none;
    }

    .available-room-card {
        grid-template-columns: 1fr;
    }

    .available-room-img {
        min-height: 200px;
    }

    .available-room-pricing {
        grid-column: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .extras-grid {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .card-preview {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .detail-images {
        grid-template-columns: 1fr;
    }

    .detail-amenities {
        grid-template-columns: repeat(2, 1fr);
    }

    .confirmation-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .booking-bar-inner {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .date-inputs-row {
        flex-direction: column;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* --- Flatpickr Custom --- */
.flatpickr-calendar {
    font-family: var(--font-body) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-lg) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.flatpickr-day.inRange {
    background: rgba(139,111,71,0.1) !important;
    border-color: rgba(139,111,71,0.1) !important;
}

.flatpickr-day:hover {
    background: var(--primary-lighter) !important;
    border-color: var(--primary-lighter) !important;
}

/* --- Selection Highlight --- */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* --- Scrollbar Custom --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* --- Print Styles --- */
@media print {
    .header, .hero, .booking-bar, .about, .stats-section, .accommodations,
    .parallax-section, .gallery, .experiences, .video-section, .testimonials,
    .contact, .map-section, .footer, .whatsapp-float, .booking-steps,
    .booking-nav, .modal {
        display: none !important;
    }

    .booking {
        background: none;
        padding: 0;
    }

    .confirmation-content {
        padding: 0;
    }

    .confirmation-details {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
