/* ============================================
   GREEN ACRES PALI HILL - MAIN STYLESHEET
   Merged from style.css + index.php inline styles
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Brand Colors */
    --forest-green: #013220;
    --brand-green: #013220;
    --brand-gold: #c5a059;
    --gold: #c5a059;
    
    /* Neutral Colors */
    --charcoal: #1a1a1a;
    --text-grey: #666666;
    --off-white: #f9f9f9;
}

/* ============================================
   GLOBAL RESETS & BASE STYLES
   ============================================ */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Montserrat', sans-serif; 
    background-color: #ffffff;
    color: var(--charcoal); 
    overflow-x: hidden; 
}


/* HEADER */
.main-nav { 
    position: fixed; width:100%; padding: 25px 5%; display: flex; 
    justify-content: space-between; z-index: 1000; background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px); color: white; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; letter-spacing: 2px; }
.nav-links a { color: white; text-decoration: none; margin-right: 25px; font-size: 0.8rem; letter-spacing: 1px; }

/* AMENITIES MOSAIC */
.amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 30px 10px 0px; height: 40vh; }
.grid-item { background-size: cover; background-position: center; position: relative; display: flex; align-items: flex-end; padding: 30px; }
.tall { grid-row: span 2; }
.grid-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.3); transition: 0.5s; }
.grid-item span { position: relative; color: white; font-family: 'Playfair Display'; font-size: 1.8rem; }
.grid-item:hover .grid-overlay { background: rgba(1, 50, 32, 0.6); }

/* STICKY CTA */
.sticky-cta { position: fixed; bottom: 0; width: 100%; background: var(--forest-green); display: flex; z-index: 2000; }
.sticky-cta a { flex: 1; text-align: center; padding: 15px; color: white; text-decoration: none; border-right: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }
.wa-btn { background: #25d366; }

/* BUTTONS */
.btn-gold { background: var(--gold); color: white; padding: 15px 40px; border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-top: 20px; }


/* ============================================
   HERO BANNER - DESKTOP & MOBILE VERSIONS (FIXED)
   ============================================ */

.lifestyle-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Common banner styles */
.hero-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* DESKTOP BANNER - Show on desktop ONLY */
.hero-banner-desktop {
    display: block !important;
}

/* MOBILE BANNER - Hide on desktop */
.hero-banner-mobile {
    display: none !important;
}

/* MOBILE & TABLET - SWITCH TO MOBILE BANNER */
@media (max-width: 768px) {
    /* HIDE desktop banner */
    .hero-banner-desktop {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* SHOW mobile banner */
    .hero-banner-mobile {
        display: block !important;
        visibility: visible !important;
    }
}

/* Optional: Set specific heights */
@media (min-width: 769px) {
    .lifestyle-hero {
        height: 100vh;
        max-height: 900px;
    }
    
    .hero-banner-desktop {
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .lifestyle-hero {
        height: auto;
        min-height: 60vh;
    }
    
    .hero-banner-mobile {
        height: 100%;
        min-height: 60vh;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .lifestyle-hero {
        min-height: 50vh;
    }
    
    .hero-banner-mobile {
        min-height: 50vh;
    }
}



/* FORCE BANNER DISPLAY RULES */
.hero-banner-desktop {
    display: block !important;
}

.hero-banner-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .hero-banner-desktop {
        display: none !important;
    }
    
    .hero-banner-mobile {
        display: block !important;
    }
}





/* BRANDING SECTION */
.branding-intro {
    padding: 80px 50px 120px 50px;
    text-align: center;
    
    /* BACKGROUND IMAGE BELOW HERO, BEHIND GREEN LOGO */
    background: url("media/images/about-bg.jpeg") center center no-repeat;
    background-size: cover;
    background-attachment: scroll; /* change to fixed if you want parallax */
    position: relative;
    z-index: 1;
}






/* LOGO */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
}

.header-logo {
    width: 200px;          /* KEY FIX: controlled luxury size */
    max-width: 70%;
    height: auto;
    display: block;
    /* opacity: 0.95;  Luxury Finish */
}

/* SUBTITLE TEXT */
.project-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: #013220;
    text-transform: uppercase;
    line-height: 1.6;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .header-logo {
        width: 150px;
    }
}


/* FIXED NAV BAR STYLES */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* LOGO LEFT, MENU RIGHT */
    align-items: center;
    padding: 0 5%;
}

.nav-logo img {
    height: 45px; /* Clean, professional size */
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none !important; /* REMOVES BLUE UNDERLINE */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #1a1a1a;
    text-transform: uppercase; /* LUXURY LOOK */
    letter-spacing: 2px;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #c5a059; /* Brand Gold color on hover */
}

/* Contact Us Button Style */
.nav-cta {
    background: #013220; /* Brand Green */
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 2px;
}

/* SMOOTH SCROLLING OFFSET */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* Ensures nav doesn't cover section titles */
}


.luxury-flex-container {
    display: flex !important;       /* This MUST be flex to put items side-by-side */
    flex-direction: row !important;  /* Forces horizontal row behavior */
    align-items: center;            /* Centers the image vertically with the text */
    justify-content: center;         /* Centers the entire unit on the page */
    gap: 80px;                      /* Luxury spacing between building and text */
    padding: 80px 10%;
    max-width: 1400px;
    margin: 50px auto !important;
}

.building-image {
    flex: 0 1 500px;           /* Prevents building from getting too big */
    display: flex;
    justify-content: center;
}

.building-image img {
    width: 100%;
    height: auto;
    display: block;
    /* Optional: Subtle shadow to add depth against the white background */
    box-shadow: 15px 15px 50px rgba(0,0,0,0.02); 
}

.building-text {
    flex: 0 1 450px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Keeps text group centered relative to the image */
}

.small-legacy-icon {
    width: 85px;               /* Your requested larger size */
    height: auto;
    margin-bottom: 35px;
    display: block;
    /* Keeps icon aligned with text on the left, or use 'margin: 0 auto' to center icon */
}


.editorial-section {
  background: #f7f6f3; /* soft paper tone */
  padding: 120px 40px;
}

.editorial-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Dividers */
.editorial-divider {
  height: 1px;
  background: #2e2e2e;
  opacity: 0.6;
}

.editorial-divider.top {
  margin-bottom: 90px;
}

.editorial-divider.bottom {
  margin-top: 90px;
  position: relative;
}

/* Center icon */
.editorial-icon {
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: url("media/images/tree-icon.png") center / contain no-repeat;
}

/* Content */
.editorial-content {
  max-width: 520px;
}

.editorial-title {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.editorial-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 1.8;
}

.editorial-text {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

/* Mobile */
@media (max-width: 768px) {
  .editorial-section {
    padding: 80px 20px;
  }

  .editorial-divider.top,
  .editorial-divider.bottom {
    margin: 60px 0;
  }

  .editorial-content {
    max-width: 100%;
  }
}


/* Divider */
.editorial-section {
  position: relative;
  padding-bottom: 120px; /* creates space for divider */
}

.editorial-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 40px;          /* distance from section bottom */
  width: 50%;            /* 50% screen width */
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}





/* ============================================
   NEW LUXURY GALLERY SECTION - 3 COLUMN VIEW
   ============================================ */

.luxury-gallery-section {
    padding: 70px 5% 120px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Gallery Header */
.gallery-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    font-size: 2.0rem;
}

.gallery-ornament {
    font-size: 1.5rem;
    color: #c5a059;
    margin-bottom: 30px;
    opacity: 0.6;
    letter-spacing: 0.5em;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.0rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #013220;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
}

.gallery-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: #666666;
    text-transform: uppercase;
}

/* 3 Column Masonry Gallery Grid */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Gallery Card */
.gallery-card {
    position: relative;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-frame {
    padding: 0px;
    background: linear-gradient(145deg, #013220 0%, #013220 100%);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(197, 160, 89, 0.1);
    transition: all 0.6s ease;
}

.gallery-card:hover .card-frame {
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        inset 0 0 0 2px rgba(197, 160, 89, 0.3);
    transform: translateY(-8px);
}

.card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .card-image img {
    transform: scale(1.1);
}

/* Card Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(1, 50, 32, 0) 0%,
        rgba(1, 50, 32, 0.75) 60%,
        rgba(1, 50, 32, 0.95) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.gallery-card:hover .card-overlay {
    opacity: 1;
}

/* Overlay Border Animation */
.overlay-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(197, 160, 89, 0.5);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.gallery-card:hover .overlay-border {
    opacity: 1;
    transform: scale(1);
}

/* Zoom Icon - SMALLER SIZE */
.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 30px;
    height: 30px;
    border: 1px solid #c5a059;
    border-radius: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #c5a059;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    z-index: 10;
}

.gallery-card:hover .zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}


/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease 0.1s;
}

.gallery-card:hover .card-content {
    transform: translateY(0);
    opacity: 1;
}

.card-number {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    color: #c5a059;
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 15px;
    font-weight: 300;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
    line-height: 1.3;
}

.card-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.card-line {
    width: 60px;
    height: 1px;
    background: #c5a059;
    opacity: 0.6;
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    margin-top: 120px;
    position: relative;
}

.cta-ornament {
    font-size: 1.2rem;
    color: #c5a059;
    margin-bottom: 25px;
    opacity: 0.5;
    letter-spacing: 0.5em;
}

.cta-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.btn-gallery-cta {
    background: transparent;
    color: #013220;
    border: 2px solid #013220;
    padding: 20px 60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-gallery-cta span {
    position: relative;
    z-index: 2;
}

.btn-gallery-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #013220;
    transition: left 0.5s ease;
    z-index: 1;
}

.btn-gallery-cta:hover {
    color: #ffffff;
    border-color: #013220;
    box-shadow: 0 10px 40px rgba(1, 50, 32, 0.2);
}

.btn-gallery-cta:hover::before {
    left: 0;
}

.btn-line {
    width: 0;
    height: 1px;
    background: #c5a059;
    margin: 15px auto 0;
    transition: width 0.6s ease;
}

.btn-gallery-cta:hover .btn-line {
    width: 80px;
}

/* LIGHTBOX STYLES */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(10px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.4s ease;
    /* border: 8px solid rgba(197, 160, 89, 0.2); */
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 50px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 200;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lightbox-close:hover {
    color: #c5a059;
    border-color: #c5a059;
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 600px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.lightbox-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
}

.lightbox-caption p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Navigation Arrows */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    color: #ffffff;
    cursor: pointer;
    padding: 0px;
    user-select: none;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/*
.lightbox-prev:hover,
.lightbox-next:hover {
    color: #c5a059;
    border-color: #c5a059;
    background: rgba(0, 0, 0, 0.5);
} */

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .luxury-gallery-section {
        padding: 100px 4% 80px;
    }
    
    .gallery-header {
        margin-bottom: 60px;
    }
    
    .gallery-title {
        font-size: 2rem;
        letter-spacing: 0.12em;
    }
    
    .gallery-subtitle {
        font-size: 0.75rem;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .card-frame {
        padding: 10px;
    }
    
    .card-overlay {
        padding: 30px;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
    
    .card-content p {
        font-size: 0.75rem;
    }
    
    .gallery-cta {
        margin-top: 80px;
    }
    
    .btn-gallery-cta {
        padding: 18px 45px;
        font-size: 0.7rem;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 35px;
        padding: 20px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-caption {
        bottom: 30px;
        padding: 20px;
        max-width: 90%;
    }
    
    .lightbox-caption h3 {
        font-size: 1.5rem;
    }
    
    .lightbox-caption p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-title {
        font-size: 1.6rem;
    }
    
    .cta-text {
        font-size: 0.95rem;
    }
    
    .btn-gallery-cta {
        padding: 16px 40px;
        font-size: 0.65rem;
    }
}







/* Sactuary Section */
.sanctuary-section {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f6f2 0%, #f5f3ef 100%);
    position: relative;
}

/* Divider Styles */
.sanctuary-divider {
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(46, 46, 46, 0.4) 20%, rgba(46, 46, 46, 0.4) 80%, transparent 100%);
    margin: 0 auto;
}

.sanctuary-divider-top {
    margin-bottom: 80px;
}

.sanctuary-divider-bottom {
    margin-top: 80px;
    position: relative;
}

.sanctuary-divider-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: url('media/images/tree-icon.png') center / contain no-repeat;
    background-color: #f5f3ef;
    padding: 8px;
}

/* Alternative: If tree icon image is not available, use SVG */
.sanctuary-divider-icon.svg-icon {
    background-image: none;
    background-color: #f5f3ef;
    padding: 0;
}

.sanctuary-divider-icon.svg-icon::after {
    content: '🌴';
    font-size: 20px;
    opacity: 0.5;
}

.sanctuary-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 40px 20px;
}

.sanctuary-main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #2c2c2c;
    margin-bottom: 60px;
    line-height: 1.3;
    text-transform: uppercase;
}

.sanctuary-sub-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.sanctuary-description {
    max-width: 650px;
    margin: 0 auto 100px;
}

.sanctuary-description p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: #6b6b6b;
    letter-spacing: 0.02em;
}

.sanctuary-icon-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    opacity: 0.6;
}

.sanctuary-icon-divider svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

/* SANCTUARY SECTION - MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .sanctuary-section {
        padding: 60px 15px;
    }
    
    .sanctuary-divider-top {
        margin-bottom: 50px;
    }
    
    .sanctuary-divider-bottom {
        margin-top: 50px;
    }
    
    .sanctuary-divider-icon {
        width: 24px;
        height: 24px;
        padding: 6px;
    }
    
    .sanctuary-main-heading {
        font-size: 2.2rem;
        letter-spacing: 0.1em;
        margin-bottom: 40px;
    }
    
    .sanctuary-sub-heading {
        font-size: 0.85rem;
        letter-spacing: 0.08em;
        margin-bottom: 50px;
    }
    
    .sanctuary-description p {
        font-size: 0.9rem;
        line-height: 1.8;
    }
    
    .sanctuary-icon-divider {
        margin-top: 60px;
    }
    
    .sanctuary-icon-divider svg {
        width: 50px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .sanctuary-divider-top {
        margin-bottom: 40px;
    }
    
    .sanctuary-divider-bottom {
        margin-top: 40px;
    }
    
    .sanctuary-main-heading {
        font-size: 1.8rem;
        letter-spacing: 0.08em;
        margin-bottom: 30px;
    }
    
    .sanctuary-sub-heading {
        font-size: 0.75rem;
        margin-bottom: 40px;
    }
    
    .sanctuary-description {
        margin-bottom: 60px;
    }
    
    .sanctuary-description p {
        font-size: 0.85rem;
    }
}

















/* AMENITIES SECTION – 6 ITEMS, 2 ROWS */
.amenities-section {
    padding: 80px 5% 60px;
    background: #ffffff;
}

.amenities-header {
    text-align: center;  /* CENTERED TO ALIGN WITH ICONS */
    max-width: 1200px;
    margin: 0 auto 40px;
}

.amenities-ornament {
    font-size: 1.4rem;
    color: #c5a059;
    margin-bottom: 18px;
    opacity: 0.6;
}

.amenities-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: #013220;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.amenities-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    color: #666666;
    text-transform: uppercase;
}

/* 6 ITEMS, 2 ROWS (3 COLUMNS) */
.amenities-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
    column-gap: 80px;
}

.amenity-item {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

/* ICON (SVG FILES) */
.amenity-icon {
    flex: 0 0 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* TITLE */
.amenity-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.14em;
    color: #1a1a1a;
    text-transform: uppercase;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 50px;
        height: 30vh
    }
    
    .amenities-title {
        font-size: 2rem;
        letter-spacing: 0.14em;
    }
}

@media (max-width: 768px) {
    .amenities-header {
        margin-bottom: 40px;
    }
    
    .amenities-title {
        font-size: 1.8rem;
        letter-spacing: 0.12em;
    }
    
    .amenities-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.18em;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .amenity-item {
        gap: 16px;
    }
    
    .amenity-icon {
        flex-basis: 45px;
        height: 45px;
    }
    
    .amenity-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
   .amenities-title {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }
    
    .amenities-subtitle {
        font-size: 0.7rem;
    }
    
    .amenity-icon {
        flex-basis: 40px;
        height: 40px;
    }
    
    .amenity-title {
        font-size: 0.75rem;
    }
}










/* Amenities CTA (from previous step) */
.amenities-cta {
  max-width: 1200px;
  margin: 32px auto 0;
  text-align: center;
}

.amenities-btn {
  background: #013220;
  color: #ffffff;
  border: none;
  padding: 16px 46px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.amenities-btn:hover {
  background: #02452f;
  box-shadow: 0 10px 30px rgba(1, 50, 32, 0.35);
  transform: translateY(-2px);
}

/* BROCHURE MODAL */

.brochure-modal {
  position: fixed;
  inset: 0;
  display: none;              /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.brochure-modal.active {
  display: flex;
}

.brochure-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
}

.brochure-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  padding: 32px 32px 28px;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.brochure-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.brochure-close:hover {
  color: #013220;
  border-color: #013220;
  transform: rotate(90deg);
}

.brochure-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.brochure-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 22px;
}

.brochure-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brochure-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 6px;
}

.brochure-field input,
.brochure-field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.brochure-field input:focus,
.brochure-field textarea:focus {
  border-color: #013220;
  box-shadow: 0 0 0 1px rgba(1, 50, 32, 0.2);
}

.brochure-submit {
  margin-top: 10px;
  width: 100%;
  background: #013220;
  color: #ffffff;
  border: none;
  padding: 13px 18px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.brochure-submit:hover {
  background: #02452f;
  box-shadow: 0 10px 30px rgba(1, 50, 32, 0.35);
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 600px) {
  .brochure-dialog {
    margin: 0 16px;
    padding: 24px 20px 22px;
  }
}
























/* CONTACT SECTION – paper bg + dark fields + green button */

.contact-section {
    padding: 100px 6% 100px;
    background: url('media/images/form-bg.jpg') center center / cover no-repeat;
    /* point this to 01_Green_Acres_Spiral_Doc_A3_Latest_page-0023.jpg */
    padding: 370px 0px 370px 0px;
}

.contact-inner {
    max-width: 100%;
    margin: 0 auto;
    /* background: rgba(10, 20, 15, 0.80); */
    /* border: 2px solid rgba(197, 160, 89, 0.30); */
    padding: 40px 40px 34px;
    /* backdrop-filter: blur(8px); */
}
/* Heading */

.contact-heading-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #013220;
}

.contact-tree-icon {
    width: 60px;
    height: auto;
}

/* Form layout */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-row {
    display: flex;
    gap: 18px;
}

.contact-field {
    flex: 1;
}

.contact-field-full {
    width: 100%;
}

/* Labels */

.contact-field label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #013220;
    margin-bottom: 6px;
}

/* Inputs (dark translucent, squared) */

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 4px;
    border: 0px solid rgba(255, 255, 255, 0.35);
    background: #ccc;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-field textarea {
    resize: vertical;
    min-height: 70px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(255,255,255,0.55);
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #c5a059;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(197,160,89,0.4);
}

/* Green submit button */

.contact-submit {
    margin-top: 14px;
    align-self: flex-start;
    background: #000;
    color: #ffffff;
    border: none;
    padding: 13px 40px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit:hover {
    background: #02452f;
    box-shadow: 0 10px 30px rgba(1,50,32,0.35);
    transform: translateY(-1px);
}

/* Responsive */

@media (max-width: 900px) {
    .contact-section {
        padding: 80px 5% 80px;
    }

    .contact-inner {
        padding: 30px 24px 26px;
    }

    .contact-row {
        flex-direction: column;
    }

    .contact-title {
        font-size: 1.9rem;
        letter-spacing: 0.12em;
    }
}

@media (max-width: 600px) {
    .contact-inner {
        padding: 26px 18px 22px;
    }

    .contact-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-submit {
        width: 100%;
        text-align: center;
    }
}




















/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVENESS FIX
   ============================================ */

/* Building Section - Better Mobile Layout */
@media (max-width: 992px) {
    .building-section {
        padding: 50px 0 30px;
    }ctio
    
    .luxury-flex-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 30px 6% !important;
        gap: 50px !important;
    }
    
    .building-image {
        max-width: 85% !important;
    }
    
    .building-text {
        align-items: center !important;
        text-align: center !important;
        max-width: 100% !important;
    }
    
    .small-legacy-icon {
        margin: 0 auto 30px !important;
    }
    
    .legacy-item {
        margin-bottom: 40px !important;
    }
    
    .building-text h3 {
        font-size: 0.85rem !important;
        letter-spacing: 2.5px !important;
    }
    
    .building-text p {
        font-size: 0.95rem !important;
        line-height: 1.75 !important;
        max-width: 90% !important;
        margin: 0 auto !important;
    }
}

/* Branding Section Mobile */
@media (max-width: 768px) {
    .branding-intro {
        padding: 50px 6% 50px !important;
    }
    
    .header-logo {
        width: 200px !important;
        max-width: 75% !important;
    }
    
    .project-description {
        font-size: 0.95rem !important;
        line-height: 1.75 !important;
        padding: 0 3% !important;
    }
}

/* Sanctuary Section - Improved Mobile */
@media (max-width: 768px) {
    .sanctuary-section {
        padding: 0px 8% !important;
        min-height: auto !important;
    }
    
    .sanctuary-container {
        padding: 20px 0 !important;
    }
    
    .sanctuary-divider-top {
        margin-bottom: 45px !important;
    }
    
    .sanctuary-divider-bottom {
        margin-top: 45px !important;
    }
    
    .sanctuary-main-heading {
        font-size: 1.75rem !important;
        letter-spacing: 0.12em !important;
        margin-bottom: 35px !important;
        line-height: 1.25 !important;
    }
    
    .sanctuary-sub-heading {
        font-size: 0.75rem !important;
        letter-spacing: 0.1em !important;
        margin-bottom: 40px !important;
        line-height: 1.7 !important;
    }
    
    .sanctuary-description {
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }
    
    .sanctuary-description p {
        font-size: 0.88rem !important;
        line-height: 1.75 !important;
    }
}

/* Amenities Section - Better Mobile Layout */
@media (max-width: 768px) {
    .amenities-section {
        padding: 60px 6% 60px !important;
    }
    
    .amenities-header {
        margin-bottom: 45px !important;
    }
    
    .amenities-ornament {
        font-size: 1.3rem !important;
        margin-bottom: 15px !important;
    }
    
    .amenities-title {
        font-size: 1.6rem !important;
        letter-spacing: 0.14em !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
    }
    
    .amenities-subtitle {
        font-size: 0.7rem !important;
        letter-spacing: 0.16em !important;
        line-height: 1.6 !important;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }
    
    .amenity-item {
        gap: 18px !important;
        align-items: center !important;
    }
    
    .amenity-icon {
        flex: 0 0 50px !important;
        height: 50px !important;
    }
    
    .amenity-title {
        font-size: 0.78rem !important;
        letter-spacing: 0.12em !important;
        line-height: 1.55 !important;
    }
}

/* Gallery Section Mobile */
@media (max-width: 768px) {
    .luxury-gallery-section {
        padding: 60px 5% 60px !important;
        margin: 300px 0px 0px 0px
    }
    
    .gallery-header {
        margin-bottom: 50px !important;
    }
    
    .gallery-ornament {
        font-size: 1.2rem !important;
        margin-bottom: 20px !important;
    }
    
    .gallery-title {
        font-size: 1.65rem !important;
        letter-spacing: 0.15em !important;
        margin-bottom: 18px !important;
    }
    
    .gallery-subtitle {
        font-size: 0.7rem !important;
        letter-spacing: 0.18em !important;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
    
    .card-frame {
        padding: 0px !important;
    }
    
    .card-overlay {
        padding: 28px !important;
    }
    
    .card-content h3 {
        font-size: 1.35rem !important;
    }
    
    .card-content p {
        font-size: 0.72rem !important;
    }
}

/* Contact Section Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 5% 60px !important;
    }
    
    .contact-inner {
        padding: 28px 20px 24px !important;
        max-width: 100% !important;
    }
    
    .contact-heading-row {
        margin-bottom: 24px !important;
        gap: 12px !important;
    }
    
    .contact-title {
        font-size: 1.6rem !important;
        letter-spacing: 0.12em !important;
    }
    
    .contact-tree-icon {
        width: 42px !important;
    }
    
    .contact-form {
        gap: 14px !important;
    }
    
    .contact-row {
        flex-direction: column !important;
        gap: 14px !important;
    }
    
    .contact-field label {
        font-size: 0.65rem !important;
        margin-bottom: 5px !important;
    }
    
    .contact-field input,
    .contact-field textarea {
        font-size: 0.82rem !important;
        padding: 10px 13px !important;
    }
    
    .contact-submit {
        width: 100% !important;
        padding: 13px 30px !important;
        font-size: 0.75rem !important;
        margin-top: 10px !important;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .branding-intro {
        padding: 40px 5% 40px !important;
    }
    
    .header-logo {
        width: 160px !important;
    }
    
    .project-description {
        font-size: 0.88rem !important;
        line-height: 1.7 !important;
    }
    
    .building-section {
        padding: 0px 0 0px !important;
    }
    
    .luxury-flex-container {
        gap: 35px !important;
    }
    
    .building-image {
        max-width: 95% !important;
    }
    
    .small-legacy-icon {
        width: 70px !important;
        margin-bottom: 25px !important;
    }
    
    .legacy-item {
        margin-bottom: 32px !important;
    }
    
    .building-text h3 {
        font-size: 0.78rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 10px !important;
    }
    
    .building-text p {
        font-size: 0.88rem !important;
        line-height: 1.7 !important;
    }
    
    .sanctuary-section {
       /* padding: 50px 5% !important; */
    }
    
    .sanctuary-divider-top,
    .sanctuary-divider-bottom {
        margin: 35px auto !important;
    }
    
    .sanctuary-main-heading {
        font-size: 1.5rem !important;
        letter-spacing: 0.1em !important;
        margin-bottom: 28px !important;
    }
    
    .sanctuary-sub-heading {
        font-size: 0.68rem !important;
        letter-spacing: 0.08em !important;
        margin-bottom: 32px !important;
    }
    
    .sanctuary-description p {
        font-size: 0.82rem !important;
        line-height: 1.7 !important;
    }
    
    .amenities-section {
        padding: 20px 5% 50px !important;
    }
    
    .amenities-header {
        margin-bottom: 38px !important;
    }
    
    .amenities-ornament {
        font-size: 1.1rem !important;
    }
    
    .amenities-title {
        font-size: 1.4rem !important;
        letter-spacing: 0.12em !important;
    }
    
    .amenities-subtitle {
        font-size: 0.65rem !important;
    }
    
    .amenities-grid {
        gap: 50px !important;
    }
    
    .amenity-icon {
        flex: 0 0 45px !important;
        height: 45px !important;
    }
    
    .amenity-title {
        font-size: 0.72rem !important;
        letter-spacing: 0.1em !important;
    }
    
    .luxury-gallery-section {
        padding: 50px 4% 50px !important;
    }
    
    .gallery-title {
        font-size: 1.45rem !important;
        letter-spacing: 0.13em !important;
    }
    
    .gallery-subtitle {
        font-size: 0.65rem !important;
    }
    
    .gallery-masonry {
        gap: 25px !important;
    }
    
    .contact-section {
        padding: 50px 4% 50px !important;
    }
    
    .contact-inner {
        padding: 24px 16px 20px !important;
    }
    
    .contact-title {
        font-size: 1.35rem !important;
        letter-spacing: 0.1em !important;
    }
    
    .contact-tree-icon {
        width: 35px !important;
    }
    
    .contact-field label {
        font-size: 0.62rem !important;
    }
    
    .contact-field input,
    .contact-field textarea {
        font-size: 0.78rem !important;
        padding: 9px 12px !important;
    }
    
    .contact-submit {
        padding: 12px 25px !important;
        font-size: 0.7rem !important;
    }
}

/* Lightbox Mobile Improvements */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 92% !important;
        max-height: 75vh !important;
        border-width: 4px !important;
    }
    
    .lightbox-close {
        top: 15px !important;
        right: 15px !important;
        font-size: 36px !important;
        width: 42px !important;
        height: 42px !important;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 30px !important;
        padding: 18px !important;
    }
    
    .lightbox-prev {
        left: 10px !important;
    }
    
    .lightbox-next {
        right: 10px !important;
    }
}

@media (max-width: 480px) {
    .lightbox-prev,
    .lightbox-next {
        font-size: 26px !important;
        padding: 15px !important;
    }
    
    .lightbox-close {
        width: 38px !important;
        height: 38px !important;
        font-size: 32px !important;
    }
}

/* Brochure Modal Mobile */
@media (max-width: 600px) {
    .brochure-dialog {
        margin: 0 18px !important;
        padding: 26px 22px 24px !important;
        max-width: 92% !important;
    }
    
    .brochure-title {
        font-size: 1.35rem !important;
        letter-spacing: 0.1em !important;
        margin-bottom: 8px !important;
    }
    
    .brochure-subtitle {
        font-size: 0.78rem !important;
        margin-bottom: 18px !important;
    }
    
    .brochure-form {
        gap: 12px !important;
    }
    
    .brochure-field label {
        font-size: 0.65rem !important;
    }
    
    .brochure-field input,
    .brochure-field textarea {
        font-size: 0.82rem !important;
        padding: 9px 11px !important;
    }
    
    .brochure-submit {
        padding: 12px 18px !important;
        font-size: 0.72rem !important;
    }
}

/* General Typography & Spacing Mobile Fixes */
@media (max-width: 768px) {
    body {
        font-size: 14px !important;
    }
    
    h1, h2, h3 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px !important;
    }
}






/* ============================================
   LOCATION / MAP SECTION
   ============================================ */

.location-section {
    padding: 0px 5% 100px;
    background: #ffffff;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Location Header */
.location-header {
    text-align: center;
    margin-bottom: 60px;
}

.location-ornament {
    font-size: 1.4rem;
    color: #c5a059;
    margin-bottom: 18px;
    opacity: 0.6;
}

.location-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: #013220;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.location-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    color: #666666;
    text-transform: uppercase;
}

/* Map Wrapper */
.map-wrapper {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 0px solid #013220;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Location Details Grid */
.location-details {
    max-width: 1000px;
    margin: 0 auto;
}

.location-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.location-info-item {
    text-align: center;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.location-info-item:hover {
    background: #f5f5f5;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.location-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.location-info-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #013220;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.location-info-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    color: #666666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .location-section {
        padding: 60px 5% 70px;
    }
    
    .location-header {
        margin-bottom: 40px;
    }
    
    .location-ornament {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .location-title {
        font-size: 1.8rem;
        letter-spacing: 0.14em;
    }
    
    .location-subtitle {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        line-height: 1.6;
    }
    
    .map-wrapper {
        margin-bottom: 45px;
    }
    
    .map-container {
        height: 400px;
        border-width: 2px;
    }
    
    .location-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .location-info-item {
        padding: 25px 20px;
    }
    
    .location-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .location-info-item h3 {
        font-size: 0.85rem;
        letter-spacing: 0.12em;
    }
    
    .location-info-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .location-section {
        padding: 50px 4% 60px;
    }
    
    .location-title {
        font-size: 1.5rem;
        letter-spacing: 0.12em;
    }
    
    .location-subtitle {
        font-size: 0.68rem;
    }
    
    .map-container {
        height: 350px;
    }
    
    .location-info-item {
        padding: 20px 15px;
    }
}







/* ============================================
   FOOTER SECTION
   ============================================ */

.main-footer {
    background: #013220;
    color: rgba(255, 255, 255, 0.9);
    padding: 70px 5% 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Top Footer Grid */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Footer Brand Column */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 0px;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #c5a059;
    border-color: #c5a059;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #c5a059;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #c5a059;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.2) 80%,
        transparent 100%
    );
    margin: 40px 0;
}

/* Bottom Footer */
.footer-bottom {
    text-align: center;
}

.footer-legal {
    margin-bottom: 25px;
}

.rera-number,
.disclaimer {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.rera-number strong,
.disclaimer strong {
    color: #c5a059;
    font-weight: 500;
}

.rera-number a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.rera-number a:hover {
    color: #c5a059;
}

.footer-copyright {
    padding-top: 20px;
}

.footer-copyright p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 50px 5% 25px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }
    
    .footer-logo {
        width: 150px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-links a,
    .footer-contact li {
        font-size: 0.8rem;
    }
    
    .rera-number,
    .disclaimer {
        font-size: 0.7rem;
        text-align: left;
    }
    
    .footer-copyright p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 40px 4% 20px;
    }
    
    .footer-logo {
        width: 330px;
    }
    
    .footer-description {
        font-size: 0.8rem;
    }
    
    .footer-social a {
        width: 38px;
        height: 38px;
    }
    
    .footer-social svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-column h4 {
        font-size: 0.95rem;
    }
    
    .rera-number,
    .disclaimer {
        font-size: 0.68rem;
    }
    
    .footer-copyright p {
        font-size: 0.7rem;
    }
}



/* ============================================
   HERO VIDEO BANNER - MOBILE & DESKTOP
   ============================================ */

.lifestyle-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

/* Common video styles */
.video-mobile,
.video-desktop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

/* DESKTOP VIDEO - Show on desktop, hide on mobile */
.video-desktop {
    display: block !important;
}

/* MOBILE VIDEO - Hide on desktop */
.video-mobile {
    display: none !important;
}

/* Optional: Dark overlay */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* TABLET & MOBILE - SWITCH TO MOBILE VIDEO */
@media (max-width: 768px) {
    .lifestyle-hero {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: none !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    /* HIDE desktop video, SHOW mobile video */
    .video-desktop {
        display: none !important;
        visibility: hidden !important;
    }
    
    .video-mobile {
        display: block !important;
        visibility: visible !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-width: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        transform: none !important;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .lifestyle-hero {
        height: 100vh !important;
        min-height: 100vh !important;
    }
    
    .video-mobile {
        width: 100vw !important;
        height: 100vh !important;
    }
}

/* Very small screens */
@media (max-width: 375px) {
    .lifestyle-hero {
        height: 100vh !important;
        min-height: 100vh !important;
    }
}

/* ============================================
   UNMUTE BUTTON STYLING
   ============================================ */

.unmute-button {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10000 !important;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    pointer-events: auto;
    outline: none;
}

.unmute-button:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.unmute-button:active {
    transform: scale(0.95);
}

/* Mobile positioning */
@media (max-width: 768px) {
    .unmute-button {
        bottom: 100px;
        right: 20px;
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.4);
        border-width: 2px;
    }
}

/* ============================================
   IMPROVED DESKTOP VIDEO DISPLAY (1920x1080)
   ============================================ */

/* Enhanced desktop video display */
@media (min-width: 769px) {
    .lifestyle-hero {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: none !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .video-desktop {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
    }
    
    .video-mobile {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Fix for ultra-wide screens */
@media (min-width: 1920px) {
    .lifestyle-hero {
        height: 100vh !important;
        max-height: none !important;
    }
}

/* ============================================
   ADDITIONAL STYLES FROM INDEX.PHP
   ============================================ */


/* 1. HERO BANNER */
.lifestyle-hero img {
    width: 100%;
    display: block;
}

.header-logo {
    width: 480px;
    max-width: 80%;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

.project-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-grey);
    font-weight: 300;
    max-width: 850px;
    margin: 0 auto;
    letter-spacing: 0.3px;
}

/* 3. SIDE-BY-SIDE BUILDING VIEW */
.building-section {
    background-color: #ffffff;
    padding: 0px 0 0px;
    
    /* BACKGROUND IMAGE BELOW HERO, BEHIND GREEN LOGO */
    background: url("media/images/elevation-bg.jpg") center center no-repeat;
    background-size: cover;
    background-attachment: scroll; /* change to fixed if you want parallax */
    position: relative;
    z-index: 1;
}

.luxury-flex-container {
    display: flex !important;
    align-items: flex-start;
    justify-content: center;
    gap: 100px;
    padding: 40px 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.building-image {
    flex: 0 1 550px;
}

.building-image img {
    width: 100%;
    height: auto;
    display: block;
}

.building-text {
    flex: 0 1 450px;
    padding-top: 20px;
}

.small-legacy-icon {
    width: 85px;
    margin-bottom: 35px;
    display: block;
}

.legacy-item {
    margin-bottom: 50px;
}

.building-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: #013220;
    margin-bottom: 12px;
}

.building-text p {
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-grey);
}

/* 4. SANCTUARY SECTION - NEW */
.sanctuary-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 0px 0px;
    background: linear-gradient(180deg, #fff 0%, #fff 100%);
    position: relative;
    
    /* BACKGROUND IMAGE BELOW HERO, BEHIND GREEN LOGO */
    background: url("media/images/sanctuary-bg.jpg") center center no-repeat;
    background-size: cover;
    background-attachment: scroll; /* change to fixed if you want parallax */
    position: relative;
    z-index: 1;
}

/* Divider Styles */
.sanctuary-divider {
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(46, 46, 46, 0.4) 20%, rgba(46, 46, 46, 0.4) 80%, transparent 100%);
    margin: 0 auto;
}

.sanctuary-divider-top {
    margin-bottom: 80px;
}

.sanctuary-divider-bottom {
    margin-top: 0px;
    position: relative;
}

.sanctuary-divider-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    background: url('media/images/tree-icon.png') center / contain no-repeat;
    background-color: #fff;
    padding: 8px;
}

.sanctuary-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 0px 0px;
}

.sanctuary-main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.0rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #013220;
    margin-bottom: 60px;
    line-height: 1.3;
    text-transform: uppercase;
}

.sanctuary-sub-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.sanctuary-description {
    max-width: 1000px;
    margin: 0 auto 100px;
}

.sanctuary-description p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: #000;
    letter-spacing: 0.03em;
}

.sanctuary-icon-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    opacity: 0.6;
}

/* 5. STICKY LEAD BAR */
.sticky-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    z-index: 2000;
}

.sticky-bar a {
    flex: 1;
    padding: 20px;
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.call {
    background: var(--brand-green);
}

.wa {
    background: #25D366;
}

/* MOBILE OPTIMIZATION - BUILDING SECTION - FORCED LAYOUT */
@media (max-width: 992px) {
    .building-section {
        padding: 60px 0 !important;
    }
    
    .luxury-flex-container {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 0 8% !important;
        gap: 50px !important;
        max-width: 600px !important;
        margin: 0 auto !important;
        display: flex !important;
    }
    
    .building-image {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        order: 1 !important;
        flex: none !important;
    }
    
    .building-image img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
        box-shadow: 10px 10px 40px rgba(0,0,0,0.05) !important;
    }
    
    .building-text {
        width: 100% !important;
        order: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 0 !important;
        flex: none !important;
    }
    
    .small-legacy-icon {
        margin: 0 auto 30px !important;
        display: block !important;
    }
    
    .legacy-item {
        margin-bottom: 40px !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .building-text h3 {
        font-size: 0.8rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 12px !important;
        text-align: center !important;
    }
    
    .building-text p {
        font-size: 0.9rem !important;
        line-height: 1.75 !important;
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 500px !important;
    }
    
    .branding-intro {
        padding: 60px 8%;
    }
    
    .header-logo {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .building-section {
        padding: 50px 0 !important;
    }
    
    .luxury-flex-container {
        padding: 0 6% !important;
        gap: 40px !important;
        max-width: 500px !important;
        flex-direction: column !important;
        display: flex !important;
    }
    
    .building-image {
        max-width: 350px !important;
        order: 1 !important;
        width: 100% !important;
    }
    
    .building-text {
        padding: 0 !important;
        order: 2 !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .legacy-item {
        margin-bottom: 35px !important;
        text-align: center !important;
    }
    
    .building-text h3 {
        font-size: 0.75rem !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }
    
    .building-text p {
        font-size: 0.85rem !important;
        line-height: 1.7 !important;
        max-width: 450px !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    .sanctuary-section {
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .luxury-flex-container {
        padding: 0 5% !important;
        gap: 35px !important;
        flex-direction: column !important;
        display: flex !important;
    }
    
    .building-image {
        max-width: 300px !important;
        order: 1 !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .building-text {
        order: 2 !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .legacy-item {
        margin-bottom: 30px !important;
        text-align: center !important;
    }
    
    .building-text h3 {
        font-size: 0.7rem !important;
        letter-spacing: 1.2px !important;
        text-align: center !important;
    }
    
    .building-text p {
        font-size: 0.8rem !important;
        line-height: 1.65 !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
}
    
    .sanctuary-divider-top {
        margin-bottom: 50px;
    }
    
    .sanctuary-divider-bottom {
        margin-top: 50px;
    }
    
    .sanctuary-divider-icon {
        width: 80px;
        height: 80px;
        padding: 6px;
    }
    
    .sanctuary-main-heading {
        font-size: 2.2rem;
        letter-spacing: 0.1em;
        margin-bottom: 40px;
    }
    
    .sanctuary-sub-heading {
        font-size: 0.85rem;
        letter-spacing: 0.08em;
        margin-bottom: 50px;
    }
    
    .sanctuary-description p {
        font-size: 0.9rem;
        line-height: 1.8;
    }
    
    .sanctuary-icon-divider {
        margin-top: 60px;
    }
    
    .sanctuary-icon-divider svg {
        width: 50px;
        height: 70px;
    }


@media (max-width: 480px) {
    .sanctuary-divider-top {
        margin-bottom: 40px;
    }
    
    .sanctuary-divider-bottom {
        margin-top: 40px;
    }
    
    .sanctuary-main-heading {
        font-size: 1.8rem;
        letter-spacing: 0.08em;
        margin-bottom: 30px;
    }
    
    .sanctuary-sub-heading {
        font-size: 0.75rem;
        margin-bottom: 40px;
    }
    
    .sanctuary-description {
        margin-bottom: 60px;
    }
    
    .sanctuary-description p {
        font-size: 0.85rem;
    }
}