@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #234B39;        /* Forest Green */
    --primary-dark: #162f24;   /* Darker Forest Green for sections/footers */
    --secondary: #C8A14B;      /* Luxury Gold */
    --secondary-hover: #b48e3d;/* Darker Gold for hover states */
    --bg-warm: #F9F7F2;        /* Warm Ivory */
    --accent: #6E4B32;         /* Coconut Brown */
    --white: #FFFFFF;
    --card-bg: #FFFFFF;
    --text-dark: #2C2C2C;      /* Deep Grey/Black for readable body text */
    --text-light: #5A5A5A;     /* Medium Grey for descriptions */
    --border-color: rgba(35, 75, 57, 0.15);
    --shadow-subtle: 0 4px 20px rgba(35, 75, 57, 0.05);
    --shadow-medium: 0 10px 30px rgba(35, 75, 57, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── GLOBAL RESET & BASICS ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-warm);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

p {
    font-size: 0.95rem;
    color: var(--text-light);
}

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

/* ── CONTAINERS & BUTTONS ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-dark {
    background-color: var(--primary);
    color: var(--bg-warm);
}

.section-dark h2,
.section-dark .section-title,
.section-dark .section-sub,
.section-dark p {
    color: var(--bg-warm);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-light);
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
    margin: 1.5rem auto;
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

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

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 161, 75, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-primary-dark:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(35, 75, 57, 0.3);
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── NAV BAR ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

nav.sticky {
    background-color: rgba(22, 47, 36, 0.98); /* Solid Dark Forest Green */
    backdrop-filter: blur(15px);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(200, 161, 75, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition);
}

nav.sticky .container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo img {
    height: 52px;
    width: 52px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    object-fit: cover;
    background-color: var(--white);
    transition: var(--transition);
}

nav.sticky .logo img {
    height: 46px;
    width: 46px;
}

.logo-text {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.logo-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link:hover {
    color: var(--secondary);
}

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

/* Language Dropdown */
.lang-selector {
    position: relative;
    cursor: pointer;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-medium);
    border-radius: 4px;
    min-width: 120px;
    display: none;
    list-style: none;
    z-index: 1001;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.lang-dropdown li {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.lang-dropdown li:hover {
    background-color: var(--bg-warm);
    color: var(--primary);
    font-weight: 500;
}

.lang-selector:hover .lang-dropdown {
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    list-style: none;
}

.mobile-nav-overlay.active {
    transform: translateY(0);
}

.mobile-nav-overlay a {
    color: var(--bg-warm);
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
}

.mobile-nav-overlay a:hover {
    color: var(--secondary);
}

/* ── HERO SECTION ── */
#hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(22, 47, 36, 0.6) 0%, rgba(22, 47, 36, 0.4) 50%, rgba(22, 47, 36, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 1rem;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 2rem;
    font-weight: 600;
    background-color: rgba(35, 75, 57, 0.2);
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--bg-warm);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--secondary);
    font-weight: 400;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(249, 247, 242, 0.9);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* ── ABOUT VILLA ── */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-visual {
    position: relative;
    height: 480px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.about-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--white);
    padding: 1.2rem 2rem;
    border-left: 4px solid var(--secondary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-badge strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

.about-badge span {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── WHY STAY WITH US ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background-color: var(--white);
    padding: 2.2rem 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

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

.why-card-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}

/* ── AMENITIES ── */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.amenity-card {
    background-color: var(--bg-warm);
    border: 1px solid var(--border-color);
    padding: 1.5rem 1.8rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: var(--transition);
}

.amenity-card:hover {
    background-color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

.amenity-icon {
    font-size: 1.6rem;
    color: var(--secondary);
    width: 44px;
    height: 44px;
    background-color: rgba(200, 161, 75, 0.1);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.amenity-info h3 {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary);
}

.amenity-info p {
    font-size: 0.78rem;
    color: var(--text-light);
    margin: 0;
}

/* ── GALLERY ── */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.82rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    color: var(--text-light);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary);
    color: var(--bg-warm);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
    display: block; /* For filtering visibility show/hide */
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 47, 36, 0.85) 0%, rgba(22, 47, 36, 0.1) 70%);
    opacity: 0;
    z-index: 1;
    transition: var(--transition);
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    transform: translateY(15px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-info h4 {
    color: var(--bg-warm);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.gallery-info span {
    color: var(--secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

/* Lightbox Widget */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(22, 47, 36, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 4px;
    border: 3px solid var(--secondary);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-caption {
    color: var(--bg-warm);
    text-align: center;
    margin-top: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--bg-warm);
    font-size: 2rem;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* ── REVIEWS & RATING ── */
.rating-overview {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--shadow-subtle);
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
}

.rating-stars {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.rating-platforms {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.platform {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.platform strong {
    color: var(--primary);
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1rem;
}

.reviews-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.review-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 1rem;
}

.review-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow-subtle);
    text-align: center;
    position: relative;
}

.review-card::before {
    content: '“';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: rgba(200, 161, 75, 0.12);
    line-height: 1;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.review-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.reviewer-info {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.review-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(35, 75, 57, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.review-dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--secondary);
}

/* ── DISCOVER MIDIGAMA ── */
.discover-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.attractions-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.attraction-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 4px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-subtle);
}

.attraction-item:hover {
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

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

.attraction-name {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.attraction-desc {
    font-size: 0.78rem;
    color: var(--text-light);
}

.map-container {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
    height: 100%;
    min-height: 400px;
    background-color: #eee;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
    inset: 0;
}

/* ── BOOKING SECTION ── */
.booking-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: start;
}

.booking-form-wrapper {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
}

.booking-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-warm);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    background-color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(200, 161, 75, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.booking-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.booking-info p {
    margin-bottom: 2rem;
}

.booking-calendar-visual {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-subtle);
    margin-top: 2rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-month {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

.calendar-nav-btn {
    background: transparent;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: var(--primary);
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: var(--transition);
}

.calendar-nav-btn:hover {
    background-color: var(--bg-warm);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 0.4rem;
}

.calendar-day-header {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.calendar-date {
    font-size: 0.8rem;
    padding: 0.5rem 0;
    border-radius: 4px;
    color: var(--text-dark);
    transition: var(--transition);
    user-select: none;
    font-weight: 400;
}

.calendar-date.other-month {
    color: #ccc;
}

.calendar-date.blocked {
    background-color: rgba(110, 75, 50, 0.08);
    color: #b5927d;
    text-decoration: line-through;
    cursor: not-allowed;
}

.calendar-date.today {
    border: 1px solid var(--primary);
    font-weight: 600;
}

.calendar-date.selected-range {
    background-color: rgba(35, 75, 57, 0.1);
    border-radius: 0;
}

.calendar-date.selected-start {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    font-weight: 600;
}

.calendar-date.selected-end {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    font-weight: 600;
}

.calendar-date.available {
    cursor: pointer;
}

.calendar-date.available:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.calendar-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.72rem;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 2px;
}

/* ── SPECIAL OFFERS ── */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.offer-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.offer-header {
    background-color: var(--primary);
    color: var(--bg-warm);
    padding: 2rem 1.8rem;
    text-align: center;
    position: relative;
}

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-radius: 2px;
    letter-spacing: 0.05em;
}

.offer-card h3 {
    color: var(--bg-warm);
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.offer-discount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
}

.offer-body {
    padding: 2rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ── FAQ ACCORDION ── */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.05rem;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    font-size: 1rem;
    color: var(--secondary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer p {
    padding-bottom: 1.5rem;
    margin: 0;
    color: var(--text-light);
}

.faq-item.active {
    border-color: var(--secondary);
    box-shadow: var(--shadow-medium);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* arbitrary limit, will be expanded */
    padding-top: 0.5rem;
}

/* ── CONTACT & FOOTER ── */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-panel {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-subtle);
}

.contact-info-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.contact-row {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-row-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-row-details h4 {
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-row-details p,
.contact-row-details a {
    font-size: 0.9rem;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    color: var(--primary);
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--primary);
    color: var(--bg-warm);
    border-color: var(--primary);
    transform: translateY(-2px);
}

footer {
    background-color: var(--primary-dark);
    color: var(--bg-warm);
    padding: 5rem 0 2rem 0;
    border-top: 3px solid var(--secondary);
}

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

.footer-col h3 {
    color: var(--bg-warm);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.footer-col h4 {
    color: var(--secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.footer-col p {
    color: rgba(249, 247, 242, 0.7);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(249, 247, 242, 0.7);
    font-size: 0.88rem;
    transition: var(--transition);
}

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

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

.footer-bottom p {
    color: rgba(249, 247, 242, 0.5);
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(249, 247, 242, 0.5);
    font-size: 0.8rem;
}

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

/* ── TRAVEL BLOG SUBPAGE ── */
.blog-header {
    background-color: var(--primary);
    color: var(--bg-warm);
    padding: 7rem 0 4rem 0;
    text-align: center;
}

.blog-header h1 {
    color: var(--bg-warm);
    font-size: 3rem;
    margin-top: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.blog-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.blog-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.blog-info-body {
    padding: 2rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-meta-date {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-info-body h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-info-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.blog-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-read-more:hover {
    color: var(--primary);
}

/* Blog Single Overlay / Modal */
.blog-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(22, 47, 36, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-modal.active {
    display: flex;
    opacity: 1;
}

.blog-modal-wrapper {
    background-color: var(--bg-warm);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 4px;
    overflow-y: auto;
    border: 2px solid var(--secondary);
    position: relative;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}

.blog-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    background: var(--primary);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 10;
}

.blog-modal-hero {
    height: 350px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-modal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 47, 36, 0.8) 0%, transparent 60%);
}

.blog-modal-header-text {
    position: absolute;
    bottom: 2rem;
    left: 2.5rem;
    right: 2.5rem;
    color: var(--white);
}

.blog-modal-title {
    color: var(--bg-warm);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.blog-modal-body {
    padding: 3rem 2.5rem;
    font-size: 0.98rem;
    color: var(--text-dark);
}

.blog-modal-body p {
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
    color: var(--text-dark);
}

.blog-modal-body iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    border-radius: 4px;
    margin: 1.5rem 0;
}

/* ── RESPONSIVE MEDIA QUERIES ── */
@media screen and (max-width: 1024px) {
    .about-grid,
    .booking-grid,
    .discover-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .about-visual {
        height: 380px;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 4.5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-sub {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    nav .container {
        height: 70px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .attractions-list {
        grid-template-columns: 1fr;
    }
    
    .booking-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .blog-modal-body {
        padding: 2rem 1.5rem;
    }
    
    .blog-modal-header-text {
        left: 1.5rem;
        right: 1.5rem;
    }
    
    .blog-modal-title {
        font-size: 1.5rem;
    }
}

/* ── REVIEW PLATFORMS STRIP ── */
.review-platforms-strip {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    text-align: center;
}

.review-platforms-strip .section-tag {
    color: var(--secondary);
}

.review-platforms-strip h2 {
    color: #fff;
    margin: 0.75rem 0 0.5rem;
    font-size: 2rem;
}

.review-platforms-strip > .container > p {
    color: rgba(255,255,255,0.72);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.review-btns {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.review-platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.review-platform-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: opacity 0.25s;
}

.review-platform-btn:hover::after {
    opacity: 1;
}

.review-platform-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.review-platform-btn i {
    font-size: 1.2rem;
}

.review-platform-btn.google {
    background: #fff;
    color: #222;
    border-color: rgba(255,255,255,0.3);
}

.review-platform-btn.google i {
    color: #EA4335;
}

.review-platform-btn.airbnb {
    background: #FF5A5F;
    color: #fff;
    border-color: rgba(255,255,255,0.25);
}

.review-platform-btn.airbnb i {
    color: #fff;
}

/* ── MAP SECTION UPGRADE ── */
.map-section {
    background-color: #fff;
    padding: 5rem 0 0;
    border-top: 1px solid var(--border-color);
}

.map-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.map-section-text .section-tag {
    margin-bottom: 0.5rem;
    display: block;
}

.map-section-text h2 {
    margin-bottom: 1rem;
}

.map-section-text p {
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.8;
}

.map-direction-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 2px;
    transition: var(--transition);
}

.map-direction-link:hover {
    color: var(--secondary);
}

.map-embed-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 62%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .map-section-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .map-embed-wrap {
        padding-bottom: 60%;
    }

    .review-btns {
        flex-direction: column;
        align-items: center;
    }

    .review-platform-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}
