/* ============================================
   ELEPHANT HILL VILLA COTTAGE — DESIGN SYSTEM
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Brand Colors — derived from property aesthetics */
    --terracotta:       #B8652A;
    --terracotta-light: #D4894E;
    --terracotta-dark:  #8C4E1F;
    --forest:           #2D5016;
    --forest-light:     #3D6B1F;
    --forest-muted:     #4A7A2E;
    
    /* Neutrals */
    --stone:            #F5F0EB;
    --cream:            #FDFBF7;
    --warm-gray:        #E8E2DA;
    --medium-gray:      #A69B8E;
    --dark-wood:        #3E2723;
    --charcoal:         #2C2420;
    
    /* Functional */
    --gold-star:        #E8A838;
    --whatsapp-green:   #25D366;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Inter', -apple-system, sans-serif;
    
    /* Spacing */
    --section-pad:  clamp(4rem, 8vw, 7rem);
    --container-w:  1200px;
    
    /* Transitions */
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Shadows */
    --shadow-sm:    0 1px 3px rgba(60,40,20,0.06), 0 1px 2px rgba(60,40,20,0.04);
    --shadow-md:    0 4px 16px rgba(60,40,20,0.08), 0 2px 4px rgba(60,40,20,0.04);
    --shadow-lg:    0 12px 40px rgba(60,40,20,0.12), 0 4px 12px rgba(60,40,20,0.06);
    --shadow-xl:    0 24px 60px rgba(60,40,20,0.16), 0 8px 20px rgba(60,40,20,0.08);
    
    /* Radius */
    --radius-sm:    8px;
    --radius-md:    12px;
    --radius-lg:    20px;
    --radius-xl:    28px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-wood);
    background: var(--cream);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-out);
}

.container {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Typography ---------- */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 2px;
    background: var(--terracotta);
    transform: translateY(-50%);
}

.section-tag-light {
    color: var(--terracotta-light);
}
.section-tag-light::before {
    background: var(--terracotta-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-title-light {
    color: var(--cream);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--terracotta);
    color: #fff;
    border-color: var(--terracotta);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}


/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(253,251,247, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
    padding: 0.6rem 0;
}

.nav-container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 101;
}

.logo-icon {
    font-size: 1.6rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.4s;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: color 0.4s;
}

.navbar.scrolled .logo-name { color: var(--charcoal); }
.navbar.scrolled .logo-subtitle { color: var(--medium-gray); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
    position: relative;
}

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

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

.navbar.scrolled .nav-links a { color: var(--dark-wood); }
.navbar.scrolled .nav-links a:hover { color: var(--terracotta); }

.nav-cta {
    background: var(--terracotta) !important;
    color: #fff !important;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--terracotta-dark) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.navbar.scrolled .nav-toggle span { background: var(--charcoal); }


/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

@keyframes heroZoom {
    0%   { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(44,36,32,0.45) 0%,
        rgba(44,36,32,0.55) 40%,
        rgba(44,36,32,0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 800px;
    animation: heroFadeUp 1.2s var(--ease-out) 0.3s both;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-badge-icon {
    color: var(--gold-star);
    font-size: 1rem;
}

.badge-divider {
    opacity: 0.4;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-highlights {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.highlight-icon {
    display: flex;
    align-items: center;
    color: var(--terracotta-light);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(6px); }
}


/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
    background: var(--charcoal);
    padding: 1.75rem 0;
    position: relative;
    z-index: 5;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(184,101,42,0.2);
    color: var(--terracotta-light);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.trust-text strong {
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-text span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
}


/* ========================================
   ABOUT / EXPERIENCE
   ======================================== */
.about {
    padding: var(--section-pad) 0;
    background: var(--cream);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.about-img-main:hover img {
    transform: scale(1.03);
}

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream);
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-content .section-title {
    margin-bottom: 1.25rem;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--dark-wood);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-content p {
    color: #6D6056;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--warm-gray);
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--medium-gray);
    font-weight: 500;
    margin-top: 0.25rem;
}


/* ========================================
   ACCOMMODATION
   ======================================== */
.accommodation {
    padding: var(--section-pad) 0;
    background: var(--stone);
}

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

.room-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out);
}

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

.room-card-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.room-card-large .room-card-img img {
    height: 100%;
    min-height: 320px;
}

.room-card-img {
    position: relative;
    overflow: hidden;
}

.room-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.room-card-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(44,36,32,0.8);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.room-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.room-card-content p {
    font-size: 0.92rem;
    color: #6D6056;
    line-height: 1.6;
}


/* ========================================
   AMENITIES
   ======================================== */
.amenities {
    padding: var(--section-pad) 0;
    background: var(--cream);
}

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

.amenity-category {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s var(--ease-out);
    border: 1px solid rgba(0,0,0,0.03);
}

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

.amenity-cat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--warm-gray);
}

.amenity-cat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(184,101,42,0.08);
    color: var(--terracotta);
    flex-shrink: 0;
}

.amenity-cat-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
}

.amenity-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.amenity-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #5A4E44;
}

.amenity-check {
    color: var(--forest);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}


/* ========================================
   GALLERY
   ======================================== */
.gallery {
    padding: var(--section-pad) 0;
    background: var(--stone);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.gallery-item-wide { grid-column: span 2; }
.gallery-item-tall { grid-row: span 2; }

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1rem 0.75rem;
    background: linear-gradient(transparent, rgba(44,36,32,0.7));
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.35s var(--ease-out);
}

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


/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    transition: transform 0.4s var(--ease-out);
}

.lightbox.active .lightbox-content img {
    animation: lightboxIn 0.4s var(--ease-out);
}

@keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

.lightbox-caption {
    margin-top: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    font-size: 1.8rem;
    z-index: 2;
}

.lightbox-prev, .lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
}


/* ========================================
   LOCATION
   ======================================== */
.location {
    padding: var(--section-pad) 0;
    background: var(--cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.location-lead {
    font-size: 1.1rem;
    color: #6D6056;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.distance-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.distance-badge {
    background: var(--stone);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    flex: 1;
    border: 1px solid var(--warm-gray);
}

.distance-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
}

.distance-label {
    font-size: 0.82rem;
    color: var(--medium-gray);
    margin-top: 0.25rem;
}

.location-experiences h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.location-experiences ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.location-experiences li {
    font-size: 0.95rem;
    color: #5A4E44;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

.location-map iframe {
    display: block;
}


/* ========================================
   REVIEWS
   ======================================== */
.reviews {
    padding: var(--section-pad) 0;
    background: var(--stone);
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.reviews-stars {
    color: var(--gold-star);
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.reviews-rating {
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal);
}

.reviews-source {
    font-size: 0.88rem;
    color: var(--medium-gray);
}

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

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s var(--ease-out);
    border: 1px solid rgba(0,0,0,0.03);
}

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

.review-stars {
    color: var(--gold-star);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.95rem;
    color: #5A4E44;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.review-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.review-author span {
    font-size: 0.8rem;
    color: var(--medium-gray);
}


/* ========================================
   POLICIES
   ======================================== */
.policies {
    padding: var(--section-pad) 0;
    background: var(--cream);
}

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

.policy-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.35s var(--ease-out);
    border: 1px solid rgba(0,0,0,0.03);
}

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

.policy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(184,101,42,0.08);
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.policy-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.policy-card p {
    font-size: 0.9rem;
    color: #6D6056;
    line-height: 1.6;
}


/* ========================================
   CONTACT / CTA
   ======================================== */
.contact {
    padding: var(--section-pad) 0;
    background: var(--charcoal);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s var(--ease-out);
}

.contact-method:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(4px);
}

.contact-method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(184,101,42,0.2);
    color: var(--terracotta-light);
    flex-shrink: 0;
}

.contact-method-whatsapp {
    background: rgba(37,211,102,0.2) !important;
    color: var(--whatsapp-green) !important;
}

.contact-method strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
}

.contact-method span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.contact-main-cta {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
}

.contact-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 100%;
    min-height: 420px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.contact-image:hover img {
    transform: scale(1.04);
}


/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #1A1512;
    padding: 3.5rem 0 0;
    color: rgba(255,255,255,0.55);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-name { color: #fff; }
.footer-logo .logo-subtitle { color: rgba(255,255,255,0.4); }

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--terracotta-light);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--terracotta-light);
}

.footer-contact a {
    color: rgba(255,255,255,0.5);
}
.footer-contact a:hover { color: var(--terracotta-light); }

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}


/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: all 0.35s var(--ease-out);
    opacity: 0;
    transform: scale(0.8) translateY(20px);
}

.whatsapp-float.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: var(--charcoal);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.3s var(--ease-out);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}


/* ========================================
   SCROLL REVEAL ANIMATION
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ========================================
   RESPONSIVE — TABLET (768px)
   ======================================== */
@media (max-width: 1024px) {
    .amenities-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .accommodation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .room-card-large {
        grid-column: 1 / -1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s var(--ease-out);
    }
    
    .nav-links.active { right: 0; }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--warm-gray);
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        color: var(--dark-wood) !important;
        font-size: 1rem;
    }
    
    .nav-cta {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        display: block !important;
    }
    
    .nav-toggle { display: flex; }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-highlights {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .hero-scroll-indicator { display: none; }
    
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-img-secondary {
        right: 1rem;
        bottom: -1.5rem;
        width: 50%;
    }
    
    .accommodation-grid {
        grid-template-columns: 1fr;
    }
    
    .room-card-large {
        grid-template-columns: 1fr;
    }
    
    .room-card-large .room-card-img img {
        min-height: 220px;
    }
    
    .amenities-categories {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    
    .gallery-item-wide,
    .gallery-item-tall {
        grid-column: auto;
        grid-row: auto;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        min-height: 300px;
    }
    
    .distance-badges {
        flex-direction: column;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-image { min-height: 280px; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .trust-items {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
}
