/*
Theme Name: The Dutch Boutique Custom Theme
Theme URI: https://thedutchboutiquegalle.com/
Author: Fawaz Jainudeen Ambitious Developers
Author URI: https://thedutchboutiquegalle.com/
Description: A luxurious, premium custom theme designed for The Dutch Boutique Galle Fort, Sri Lanka.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thedutchboutique

==========================================================================
THE DUTCH BOUTIQUE - DESIGN SYSTEM & CONCEPT STYLES
========================================================================== */

/* --------------------------------------------------------------------------
   1. Root Variables & Reset
   -------------------------------------------------------------------------- */
:root {
    --color-bg-primary: #FCFAF7;
    --color-bg-secondary: #F4EFEA;
    --color-accent: #2C4A3E;       /* Deep Forest / Olive Green */
    --color-accent-light: #3D6454;
    --color-accent-gold: #C5A059;  /* Warm Muted Gold */
    --color-text-dark: #1F1F1F;
    --color-text-muted: #6B5B52;
    --color-border: #E6DFD5;
    --color-white: #FFFFFF;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Jost', system-ui, -apple-system, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease-out;
    
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 10px 30px rgba(44, 74, 62, 0.08);
    --shadow-lux: 0 20px 40px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

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

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

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* --------------------------------------------------------------------------
   2. Layout & Typography Utilities
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.text-center { text-align: center; }
.text-white { color: var(--color-white) !important; }
.text-muted { color: var(--color-text-muted) !important; }

section {
    padding: 8rem 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-tag.light {
    color: var(--color-accent-gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    color: var(--color-text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-full {
    width: 100%;
}

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

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white) !important;
    border-color: #25D366;
    animation: whatsapp-pulse 2.5s infinite;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    border-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    animation: none;
}

/* --------------------------------------------------------------------------
   3. Header & Navigation
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(252, 250, 247, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(44, 74, 62, 0.06);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: var(--color-bg-primary);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-subtle);
}

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

.header.scrolled .header-container {
    height: 70px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo img,
.logo-img,
.custom-logo-link img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header.scrolled .logo img,
.header.scrolled .logo-img,
.header.scrolled .custom-logo-link img {
    height: 45px;
}

.logo-img-footer {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: -0.01em;
}

.logo-subtext {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-accent-gold);
    margin-top: -3px;
    font-weight: 500;
}

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

/* WP Enqueued Menu Compatibility */
.nav-menu ul,
.mobile-nav-links ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li,
.mobile-nav-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a,
.nav-menu .menu-item a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-dark);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-menu li a::after,
.nav-menu .menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-gold);
    transition: var(--transition-fast);
}

.nav-menu li a:hover::after,
.nav-menu .menu-item a:hover::after {
    width: 100%;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-dark);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-btn {
    background-color: var(--color-accent);
    color: var(--color-white) !important;
    padding: 0.7rem 1.6rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

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

.nav-btn:hover {
    background-color: var(--color-accent-light);
    color: var(--color-white) !important;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-accent);
    cursor: pointer;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background-color: var(--color-bg-primary);
    z-index: 1001;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
    padding: 6rem 3rem;
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-accent);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links li {
    list-style: none;
}

.mobile-nav-links li a,
.mobile-nav-links .menu-item a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-accent);
    transition: var(--transition-fast);
}

.mobile-nav-links li a:hover,
.mobile-nav-links .menu-item a:hover {
    color: var(--color-accent-gold);
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-accent);
}

.mobile-btn {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 1rem;
    text-align: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   4. Hero Section
   -------------------------------------------------------------------------- */
.hero {
    height: 95vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    padding-top: 120px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    animation: zoomHero 20s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(31, 31, 31, 0.45) 0%, rgba(15, 26, 21, 0.8) 100%);
}

.hero-content {
    max-width: 800px;
    margin-bottom: 4rem;
}

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-accent-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline-poetic {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--color-accent-gold);
    margin-top: -1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 1.2s ease-out;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1.4s ease-out;
}

/* Quick Booking Bar */
.quick-booking-container {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
}

.quick-booking-bar {
    background-color: var(--color-white);
    box-shadow: var(--shadow-lux);
    display: flex;
    border-radius: 0;
    overflow: hidden;
}

.booking-field {
    flex: 1;
    padding: 1.5rem 2rem;
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-field label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-field label i {
    color: var(--color-accent);
}

.booking-field input,
.booking-field select {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
    width: 100%;
    cursor: pointer;
}

.booking-btn {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: 0 3rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.booking-btn:hover {
    background-color: var(--color-accent-light);
}

/* --------------------------------------------------------------------------
   5. About Section
   -------------------------------------------------------------------------- */
.about {
    background-color: var(--color-bg-primary);
    padding-top: 10rem; /* Give room for quick booking bar overlay */
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-signature {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
}

.sig-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.2rem;
}

.sig-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-accent);
    font-style: italic;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-images .image-wrapper {
    position: absolute;
    box-shadow: var(--shadow-lux);
    overflow: hidden;
}

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

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

.main-img {
    width: 70%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 2;
    border: 8px solid var(--color-white);
}

.sub-img {
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 1;
    border: 8px solid var(--color-white);
}

/* --------------------------------------------------------------------------
   6. Rooms Section
   -------------------------------------------------------------------------- */
.rooms {
    background-color: var(--color-bg-secondary);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.room-card {
    background-color: var(--color-white);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lux);
    border-color: rgba(44, 74, 62, 0.15);
}

.room-img-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.room-price {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: rgba(31, 31, 31, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--color-white);
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
}

.price-unit {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.room-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--color-accent-gold);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.room-badge.signature {
    background-color: var(--color-accent);
}

.room-details {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.room-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.room-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.8rem;
    font-weight: 300;
    flex: 1;
}

.room-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 2rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.room-features li {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.room-features li i {
    color: var(--color-accent-gold);
    font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   7. Amenities Section
   -------------------------------------------------------------------------- */
.amenities {
    background-color: var(--color-bg-primary);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.amenity-card {
    background-color: var(--color-white);
    padding: 3rem 2.2rem;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(44, 74, 62, 0.1);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.amenity-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--color-accent);
}

.amenity-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   8. Gallery Section
   -------------------------------------------------------------------------- */
.gallery {
    background-color: var(--color-bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
}

.gallery-item.large {
    grid-column: span 2;
    height: 515px;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 74, 62, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--color-white);
    font-size: 2rem;
}

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

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

/* --------------------------------------------------------------------------
   9. Contact Section & Booking Form
   -------------------------------------------------------------------------- */
.contact {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 8rem 0;
}

.contact-box {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 5rem;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-desc {
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    margin-bottom: 3.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-accent-gold);
    flex-shrink: 0;
}

.info-item h5 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-gold);
    margin-bottom: 0.3rem;
}

.info-item p {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
}

.map-placeholder {
    height: 220px;
    background-color: #233B31;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subtle map illustration via backgrounds */
.map-placeholder::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.map-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 2;
}

.map-indicator i {
    font-size: 2.2rem;
    color: var(--color-accent-gold);
    animation: bounce 2s infinite ease-in-out;
}

.map-indicator span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.9);
}

/* Booking Form */
.contact-form-container {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    padding: 3.5rem;
    box-shadow: var(--shadow-lux);
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-accent);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-primary);
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent-gold);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.12);
}

.submit-btn {
    border: none;
    margin-top: 1rem;
    gap: 0.8rem;
}

/* Success Message Overlay */
.form-success-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3.5rem;
    z-index: 5;
    animation: fadeIn 0.4s ease-out;
}

.form-success-message.active {
    display: flex;
}

.form-success-message i {
    font-size: 4rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.form-success-message h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 0.8rem;
}

.form-success-message p {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 320px;
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   10. Footer Section
   -------------------------------------------------------------------------- */
.footer {
    background-color: #121E19;
    color: var(--color-white);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand .logo {
    margin-bottom: 1.2rem;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    max-width: 350px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h5,
.footer-social h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-gold);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

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

.footer-social {
    display: flex;
    flex-direction: column;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

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

.social-icons a:hover {
    background-color: var(--color-accent-gold);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Footer Instagram Feed */
.footer-instagram {
    display: flex;
    flex-direction: column;
}

.footer-instagram h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-gold);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    width: 100%;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
    background-color: rgba(255, 255, 255, 0.05);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.instagram-item::after {
    content: '\f16d';
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 30, 25, 0.8);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.instagram-item:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .instagram-grid {
        max-width: 160px;
        margin: 0 auto;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   11. Lightbox Modal
   -------------------------------------------------------------------------- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 30, 25, 0.98);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

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

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2010;
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--color-accent-gold);
    transform: scale(1.1);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border: 5px solid var(--color-white);
    box-shadow: var(--shadow-lux);
}

.lightbox-caption {
    color: var(--color-white);
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-align: center;
}

/* --------------------------------------------------------------------------
   12. Animations & Breakpoints
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes zoomHero {
    from { transform: scale(1.02); }
    to { transform: scale(1.1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Scroll reveal helper classes */
[data-reveal] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal="up"] {
    transform: translateY(40px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* --------------------------------------------------------------------------
   13. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
    .hero-title { font-size: 4rem; }
    .grid-2 { gap: 2rem; }
    .rooms-grid { gap: 1.5rem; }
    .amenities-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (max-width: 900px) {
    .header-container { height: 75px; }
    .logo-text { font-size: 1.4rem; }
    .nav-menu { display: none; }
    .mobile-nav-toggle { display: block; }
    
    .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { height: 400px; max-width: 500px; margin: 0 auto; width: 100%; }
    
    .rooms-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.large { grid-column: span 2; height: 350px; }
    
    .contact-box { grid-template-columns: 1fr; gap: 4rem; }
    .map-placeholder { height: 300px; }
    
    .footer-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .footer-brand p { margin: 1.2rem auto 0 auto; }
    .social-icons { justify-content: center; }
    
    .quick-booking-container { display: none; } /* Hide quick bar on mobile since scrolling contact is cleaner */
    
    /* Packages Mobile Responsive */
    .packages-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
}

@media (max-width: 550px) {
    section { padding: 5rem 0; }
    .hero { height: auto; min-height: 100vh; padding: 120px 0 5rem 0; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-actions { flex-direction: column; width: 100%; gap: 1rem; }
    .hero-actions .btn { width: 100%; }
    
    .section-title { font-size: 2.2rem; }
    .about-images { height: 320px; }
    .amenities-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; height: 200px; }
    .gallery-item { height: 200px; }
    
    .contact-form-container { padding: 2rem 1.5rem; }
    .form-group-row { grid-template-columns: 1fr; gap: 0; }
    .form-title { font-size: 1.6rem; }
    
    .package-card { height: auto; }
    .package-img-container { height: 200px; }
}

/* ==========================================================================
   14. Packages Section
   ========================================================================== */
.packages {
    background-color: var(--color-bg-primary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.package-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lux);
    border-color: rgba(44, 74, 62, 0.15);
}

.package-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.package-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.package-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 0.8rem;
}

.package-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 300;
    flex: 1;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-accent-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
}

.package-price .price-unit {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   15. Interactive Map Styles (Leaflet)
   ========================================================================== */
.custom-marker-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-map-marker {
    width: 40px;
    height: 40px;
    background-color: var(--color-accent);
    color: var(--color-accent-gold);
    border: 2px solid var(--color-accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lux);
    transition: var(--transition-fast);
}

.custom-map-marker:hover {
    transform: scale(1.1);
    background-color: var(--color-accent-light);
}

.map-popup-content {
    font-family: var(--font-body);
    color: var(--color-text-dark);
}

.map-popup-content h6 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 0.2rem;
}

.map-popup-content p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.map-popup-content a {
    font-size: 0.8rem;
    color: var(--color-accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Leaflet Map overrides for premium design alignment */
.leaflet-popup-content-wrapper {
    border-radius: 0 !important;
    padding: 0.5rem !important;
    background-color: var(--color-bg-primary) !important;
    border: 1px solid var(--color-border) !important;
    box-shadow: var(--shadow-lux) !important;
}

.leaflet-popup-tip {
    background-color: var(--color-bg-primary) !important;
    border: 1px solid var(--color-border) !important;
}

.leaflet-container a.leaflet-popup-close-button {
    color: var(--color-text-muted) !important;
    padding: 6px 8px 0 0 !important;
}

/* ==========================================================================
   16. Floating WhatsApp Widget
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #20ba5a;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-medium);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: var(--color-accent);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Contact Form 7 Integration */
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7-form .form-group input,
.wpcf7-form .form-group select,
.wpcf7-form .form-group textarea {
    width: 100%;
}

/* Validation error tips */
.wpcf7-not-valid-tip {
    color: #d9534f;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.3rem;
    display: block;
}

/* Response output message box */
.wpcf7-response-output {
    margin: 1.5rem 0 0 0 !important;
    padding: 1rem 1.2rem !important;
    border: 1px solid var(--color-accent-gold) !important;
    background-color: rgba(197, 160, 89, 0.05) !important;
    color: var(--color-text-dark) !important;
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-align: center;
}

.wpcf7-form.sent .wpcf7-response-output {
    border-color: #28a745 !important;
    background-color: rgba(40, 167, 69, 0.05) !important;
    color: #1e7e34 !important;
}

.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output {
    border-color: #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.05) !important;
    color: #bd2130 !important;
}

/* --------------------------------------------------------------------------
   12. Booking Availability Modal & Wizard
   -------------------------------------------------------------------------- */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(18, 30, 25, 0.5);
}

.booking-modal.active {
    opacity: 1;
    pointer-events: all;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}

.booking-modal-content {
    position: relative;
    z-index: 2;
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    width: 92%;
    max-width: 500px;
    max-height: 85vh;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lux);
    overflow-y: auto;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.booking-modal.active .booking-modal-content {
    transform: scale(1);
}

.booking-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--color-text-dark);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.booking-modal-close:hover {
    color: var(--color-accent-gold);
    transform: scale(1.1);
}

/* Modal Content Styling */
.modal-status-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
}

.modal-status-loading i {
    font-size: 2.5rem;
    color: var(--color-accent-gold);
    margin-bottom: 1.25rem;
}

.modal-status-loading h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.modal-status-loading p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Availability Breakdowns */
.booking-quote-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.booking-quote-card h4 {
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.quote-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.quote-row.total {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--color-border);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-accent-gold);
}

/* Forms inside modal */
.modal-form h5 {
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.modal-form .form-group {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.modal-form .form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: var(--color-text-muted);
}

.modal-form .form-group label span.required-star {
    color: #c0392b;
}

.modal-form .form-group label span.important-note {
    color: var(--color-accent-gold);
    font-size: 0.75rem;
    font-weight: 400;
    margin-left: 0.25rem;
}

.modal-form .form-group input,
.modal-form .form-group select,
.modal-form .form-group textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background-color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.modal-form .form-group input:focus,
.modal-form .form-group select:focus,
.modal-form .form-group textarea:focus {
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

/* Success Details & WhatsApp styling */
.hold-details-card {
    text-align: left;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-dark);
}

.hold-details-card hr {
    border: 0;
    border-top: 1px solid var(--color-border);
    margin: 1rem 0;
}

.btn-whatsapp-confirm {
    background-color: #25d366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    border-radius: 6px;
    padding: 0.85rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-confirm:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(18, 140, 126, 0.3);
}

/* Suggested dates table */
.suggested-dates-list {
    background: #fff5f5;
    border: 1px solid #fcdada;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 0.88rem;
}

.suggested-dates-list h5 {
    color: #c0392b;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.suggested-dates-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.suggested-dates-list li {
    padding: 0.35rem 0;
    border-bottom: 1px solid #fce8e8;
}

.suggested-dates-list li:last-child {
    border-bottom: none;
}
