/* Medium */
@font-face {
  font-family: 'Casagrande';
  src: url('../fonts/Casagrande.ttf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #c6a454;
    --primary-gold-hover: #b39143;
    --gold-accent: #C0A652;
    --text-white: #ffffff;
    --text-muted: #d0d0d0;
    --text-dark: #000;
    --text-red: #C41616;
    --text-muted: #5E5D5D;
    --font-heading: 'Casagrande', serif;
    --font-body: 'Poppins', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #e9e6df;
    color: var(--text-white);
    overflow-x: hidden;
}
.section-container{
    padding: 80px 8% 50px;
    margin: 0 auto;
}
/* Base style for gold accents */

.gold-accent {
    position: absolute;
    background-color: var(--gold-accent);
    z-index: 1;
    overflow: hidden; /* Contains the shimmer */
}

.gold-accent::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70% );
    animation: metallicShine 8s infinite;
}

@keyframes metallicShine {
    0% {
        left: -150%;
    }

    30%, 100% {
        left: 150%;
    }
}
@media (max-width: 768px) {
.section-container{padding: 25px 20px;}
}
/* ==================== HERO CONTAINER ==================== */
.hero-container {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Content aligned toward the top */
    overflow: hidden;
}

/* Video Switching Logic */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.desktop-video { display: block; }
.mobile-video { display: none; }

/* Top to Bottom Dark Gradient Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.7) 40%, 
        rgba(0, 0, 0, 0.2) 80%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

/* Background Blur state */
.hero-content, .hero-bg-video {
    transition: filter 0.3s ease;
}

body.menu-open .hero-content,
body.menu-open .hero-bg-video {
    filter: blur(8px);
    pointer-events: none;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 6%;
    width: 100%;
    z-index: 1000; /* Kept above mobile menu drawer */
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
    gap: 25px;
}

.logo img {
    width: 85px;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-body);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px 6px 6px;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.phone-btn-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 12px;
}

/* Hamburger & Close Icon Styling */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001; /* Higher z-index ensures visibility over drawer overlay */
    padding: 8px;
}

/* ==================== MOBILE MENU OVERLAY ==================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
}

/* ==================== HERO CONTENT ==================== */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 10% 0 40px 6%;
    max-width: 750px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 26px;
}
.hero-title span{font-size: 35px;}
.hero-subtitle {
    font-size: 16px;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    padding: 12px 26px;
    border-radius: 9px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--primary-gold);
    color: #ffffff;
    border: 1px solid var(--primary-gold);
}

.btn-secondary {
    background-color: rgba(0, 0, 0, 0.4);
    color: #CBA06B;
    border: 1px solid #CBA06B;
}

.download-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--primary-gold);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    /* Responsive Video Switch */
    .desktop-video { display: none; }
    .mobile-video { display: block; }

    .action-link { display: none; }
    .hamburger { display: block; }

    /* Reduced Hero Height */
    .hero-container {
        min-height: 65vh; /* Reduced banner height for mobile view */
        justify-content: flex-start;
    }

    .navbar {
        padding: 18px 20px;
    }

    /* Content positioned at top directly under navbar */
    .hero-content {
        padding: 20px 20px 40px 20px;
    }

    .hero-title {
        font-size: 35px;
        line-height: 1.25;
        margin-bottom: 12px;
    }
    .hero-title span{font-size: 20px;}
    .hero-subtitle {
        font-size: 10px;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 11px 6px;
        font-size: 14px;
        white-space: nowrap;
    }
}


/* ==================== MOBILE OVERLAY MENU ==================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(9, 10, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.mobile-nav-links a:hover {
    color: var(--primary-gold);
}

.mobile-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

/* ========================================================= */
/* ==================== PRICING SECTION ==================== */
/* ========================================================= */
.pricing-section {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 400px;
    gap: 40px;
    align-items: center;
}


.price-card {
    display: flex;
    flex-direction: column;
}

/* Top Price Area */
.price-header {
    margin-bottom: 8px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: var(--text-dark);
}

.price-onwards {
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 4px;
    font-weight: 300;
}

/* BHK Tag */
.bhk-tag {
    color: var(--text-red);
    font-weight: 700;
    font-size: 25px;
    margin: 26px 0;
    letter-spacing: 0;
}

/* Divider Line */
.card-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.12);
    margin-bottom: 24px;
}

/* Specifications Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.spec-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

/* Button */
.btn-price {
    display: inline-block;
    width: fit-content;
    background-color: var(--text-dark);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-price:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 20px;
}

.building-img {
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
}

/* Decorative Gold Blocks */
.pricing-top {
    position: absolute;
    top: -36px;
    right: -6px;
    width: 57px;
    height: 57px;
    z-index: 1;
}

.pricing-bottom{
    position: absolute;
    bottom: 0;
    left: 0;
    right: -20px;
    height: 200px;
    z-index: 1;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .pricing-section {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 480px;
    }

    /* Mobile Layout Header Adjustment */
    .price-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    }

    .bhk-tag {
    margin: 0;
    font-size: 24px;
    padding-top: 6px;
    }

    .card-divider {
    margin: 20px 0;
    }

    .btn-price {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    }
    .image-wrapper{padding-top: 50px;}
    /* Adjust Decorative Accents for Mobile */
    .pricing-top {
        width: 50px;
        height: 50px;
        top: 0px;
        right: -12px;
    }

    .pricing-bottom {
        height: 180px;
        left: 0;
        right: 0;
    }

}

/* ========================================================= */
/* ==================== Walkthrough SECTION ==================== */
/* ========================================================= */
.walkthrough-section {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* Section Heading */
.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 1%;
    line-height: 55px;

}

/* Description Paragraph */
.section-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    max-width: 1040px;
    margin: 0 auto 80px auto;
    font-weight: 300;
}

/* Video Wrapper Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

/* Decorative Accent Blocks */
.walkthrough-top {
    position: absolute;
    top: -48px;
    right: -48px;
    width: 48px;
    height: 48px;
    z-index: 1;
}

.walkthrough-bottom {
    position: absolute;
    bottom: 0;
    left: -30px;
    right: -50px;
    height: 200px;
    z-index: 1;
}

/* Video Player Frame */
.video-box {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  overflow: hidden;
}

/* YouTube Iframe & Poster cover full box */
.main-video,
.video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  background-size: cover;
  background-position: center;
  z-index: 2;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Custom Play Button Overlay */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background-color: var(--primary-gold, #c5a46d);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 3;
  pointer-events: none;
}

.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 3px;
}

.video-box:hover .play-btn {
  background-color: var(--primary-gold-hover, #b3925a);
  transform: translate(-50%, -50%) scale(1.08);
}

/* Hide play button and poster image when playing */
.video-box.playing .play-btn,
.video-box.playing .video-poster {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Responsive Mobile Adjustments */
@media (max-width: 768px) {
    .section-title {
        line-height: 45px;
        margin-bottom: 35px;
    }

    .section-desc {
        margin-bottom: 40px;
    }

    .video-container {
        max-width: 100%;
        padding: 30px 15px 0; /* Adds safe breathing room from screen edges */
    }

    .walkthrough-top {
        top: 0;
        right: -5px;
        width: 30px;
        height: 30px;
    }

    .walkthrough-bottom {
        left: 0;   /* Changed from negative left/right */
        right: 0;
        height: 80px;
    }

    .video-box {
        margin: 0 auto;
        width: 95%;
    }

    .play-btn {
        width: 50px;
        height: 50px;
    }
}

/* ========================================================= */
/* ==================== Highlights Section ==================== */
/* ========================================================= */
.highlights-section {
    width: 100%;
    background-color: var(--bg-color);
}

.highlights-container {
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Layout (Desktop) */
.highlights-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.highlights-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    max-width: 480px;
    font-weight: 300;
}
/* Outer Wrapper */
/* Card Marquee Container */
.cards-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    background-color: #E7E5DF; /* Light beige matching background */
}

/* Cards Track */
.cards-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: autoScroll 25s linear infinite;
}

/* Single-Line Rectangular Highlight Card */
.highlight-card {
    min-width: 280px;
    height: 80px;
    padding: 0 28px;
    background-color: #e9e6df; /* Card background color */
    border: 1px solid #B7B4AA; /* Subtle dark border */
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap; /* Prevents text from breaking into multiple lines */
    flex-shrink: 0;
    box-sizing: border-box;
    transition: all 0.25s ease-in-out;
}

/* Dark Highlight Card (Hover State / Active) */
.highlight-card:hover,
.highlight-card.active {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}

/* Longer text adjustments (like RERA number) */
.highlight-card.rera-card {
    min-width: 380px;
}

/* Smooth Infinite Animation */
@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.cards-marquee-wrapper:hover .cards-track {
    animation-play-state: paused;
}
@media (max-width: 768px) {

    .highlights-container {
        padding: 0 24px;
    }

    .highlights-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .highlights-title {
        font-size: 2.3rem;
    }

    .highlights-desc {
        max-width: 100%;
        font-size: 0.95rem;
    }

    /* Enable Infinite Auto-Scroll on Mobile */
    .cards-track {
        animation: autoScroll 18s linear infinite;
    }

    /* Pause Auto-Scroll on Hover or Touch */
    .cards-marquee-wrapper:hover .cards-track,
    .cards-marquee-wrapper:active .cards-track {
        animation-play-state: paused;
    }

    .highlight-card {
        width: 220px;
        height: 80px;
        font-size: 0.95rem;
    }
}

/* Auto-Scroll Animation Keyframes */
@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Translates half the total track width (set 1 size) for seamless looping */
        transform: translateX(calc(-50% - 10px));
    }
}

/* ========================================================= */
/* ==================== Master Plan Section ==================== */
/* ========================================================= */
.master-plan-section {
    width: 100%;
    text-align: center;
}

.master-plan-container {
    margin: 0 auto;
}

/* Titles */
.plan-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.plan-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 300;
    margin-bottom: 60px;
}

/* Cards Grid Layout */
.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.plan-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-label {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--text-dark);
}

/* Card Image Box with Decorative Accent Blocks */
.plan-image-wrapper {
    position: relative;
    width: 90%;
    max-width: 500px;
    cursor: pointer;
}

.floor-top{
    position: absolute;
    top: -47px;
    right: -47px;
    width: 48px;
    height: 48px;
    z-index: 1;
}
.floor-bottom{
position: absolute;
    bottom: 0;
    left: -30px;
    right: -50px;
    height: 200px;
    z-index: 1;
}
.site-top{
    position: absolute;
    top: -47px;
    right: -47px;
    width: 48px;
    height: 48px;
    z-index: 1;
}
.site-bottom{
position: absolute;
    bottom: 0;
    left: -30px;
    right: -50px;
    height: 200px;
    z-index: 1;
}
/* Actual Image Box */
.image-box {
    position: relative;
    z-index: 2;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.plan-image-wrapper:hover .image-box {
    transform: scale(1.015);
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

/* Navigation Arrows & Controls */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.2s;
}

.close-btn:hover {
    color: var(--primary-gold);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    font-size: 28px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
    user-select: none;
}

.nav-btn:hover {
    background-color: var(--primary-gold);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.image-counter {
    color: #ffffff;
    font-size: 0.95rem;
    margin-top: 15px;
    font-family: var(--font-body);
}

@media (max-width: 768px) {

    .plan-title {
        font-size: 2.2rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .plan-card:nth-child(2) .accent-square {
        top: -20px;
        left: -20px;
        right: auto;
    }

    .nav-btn {
        padding: 10px 14px;
        font-size: 20px;
    }
    .image-box{
        width: 85%;
        margin: 0 auto;
    }
    .plan-image-wrapper{padding-top: 10px;}
    .card-label{margin-bottom: 10px;}
    .floor-top, .site-top {
        width: 30px;
        height: 30px;
        top: 0;
        right: 0; /* Keep inside screen boundary */
    }

    .floor-bottom, .site-bottom {
        left: 0;  /* Reset negative offsets */
        right: 0;
        height: 130px;
    }
}

/* ========================================================= */
/* ==================== Amenities Section ==================== */
/* ========================================================= */
.amenities-section {
    width: 100%;
    text-align: center;
}

.amenities-container {
    margin: 0 auto;
}

/* Section Headings */
.amenities-heading {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.25;
    color: #111111;
    margin-bottom: 70px;
}

.amenities-heading span {
    display: block;
}

/* Icons Grid */
.amenities-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

/* Single Amenity Item */
.amenity-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* SVG Icon Container */
.amenity-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    transition: transform 0.3s ease;
}

.amenity-item:hover .amenity-icon {
    transform: translateY(-4px);
    color: var(--primary-gold);
}

.amenity-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.3;
}

/* Item Label */
.amenity-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: #111111;
    letter-spacing: 0.2px;
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1024px) {
    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 768px) {
    .amenities-section {
        padding: 60px 20px;
    }

    .amenities-heading {
        font-size: 2.1rem;
        margin-bottom: 45px;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px 15px;
    }

    .amenity-icon {
        width: 48px;
        height: 48px;
    }

    .amenity-label {
        font-size: 0.88rem;
    }
}

/* ========================================================= */
/* ==================== Location Section ==================== */
/* ========================================================= */
.location-section {
    width: 100%;
}

.location-container {
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Side (Title, Subtitle, Map Image) */
.location-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.location-left h2{width: 500px;}

.location-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 760px;
}

/* Map Image Wrapper with Decorative Gold Accents */
.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin-top: 10px;
}

.location-top {
    position: absolute;
    top: -48px;
    right: -48px;
    width: 48px;
    height: 48px;
    z-index: 1;
}
.location-bottom{
    position: absolute;
    bottom: 0;
    left: -30px;
    right: -50px;
    height: 200px;
    z-index: 1;
}
.map-box {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    background-color: #ffffff;
}

/* ==================== RIGHT SIDE CONTAINER (FIXED HEIGHT) ==================== */
.location-right {
    flex: 1;
    background-color: rgba(220, 217, 210, 0.45);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    padding: 35px 25px;
    height: 720px; /* Fixed Height matching left layout */
    display: flex;
    flex-direction: column;
}

.card-main-title {
    font-family: var(--font-heading);
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--text-dark);
    flex-shrink: 0; /* Keeps title fixed at the top */
}

/* Scrollable Accordion List */
.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto; /* Enables internal scrolling */
    flex-grow: 1;
    padding-right: 8px; /* Space for custom scrollbar */
}

/* Custom Modern Scrollbar */
.accordion-list::-webkit-scrollbar {
    width: 5px;
}

.accordion-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.accordion-list::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

.accordion-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-hover);
}

.accordion-item {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accordion-header {
    width: 100%;
    background-color: rgba(235, 233, 227, 0.85);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    transition: background-color 0.25s ease;
}

.accordion-header:hover {
    background-color: rgba(225, 222, 215, 0.95);
}

.accordion-header .chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid #333333;
    border-bottom: 2px solid #333333;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-right: 4px;
}

/* Active State */
.accordion-item.active .accordion-header {
    background-color: #DDDACE;
}

.accordion-item.active .chevron {
    transform: rotate(-135deg);
}

/* Accordion Body Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    background-color: #DDDACE;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    padding: 10px 20px 20px 20px;
}

.location-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
}

.location-row .loc-name {
    font-weight: 400;
}

.location-row .loc-dist {
    font-weight: 400;
    color: var(--text-dark);
}

/* ==================== RESPONSIVE / MOBILE STYLES ==================== */
@media (min-width: 1920px) {
    .map-wrapper{
        max-width: 600px;
    }
    .hero-content {
        padding: 13% 0 40px 6%;
    }
    .accent-top {top: 15px;}
    .location-right {height: 620px;}
    .testimonial-card {
        flex: 0 0 calc(50% - 15px); /* Show 2 cards at a time on desktop */
        min-width: calc(50% - 15px);
        position: relative;
        border-radius: 12px;
        padding: 60px 35px 35px 35px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: all 0.3s ease;
    }
    .testimonials-section .card-text {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 60px;
    }
    .plan-image-wrapper {width: 100%;}
    .disclaimer-text {width: 100%;}
}

@media (max-width: 768px) {
    .location-container {
        flex-direction: column;
        gap: 40px;
    }

    .location-left h2{width: 100%;}

    .location-right {
        width: 100%;
        padding: 24px 16px;
        border-radius: 12px;
    }

    .card-main-title {
        font-size: 25px;
        margin-bottom: 16px;
    }

    .map-wrapper {
        max-width: 100%;
        margin: 20px auto 0 auto;
    }
    .map-box{
        width: 80%;
        margin: 0 auto;
    }
    .location-top {
        top: -48px;
        right: -10px /* Keep inside screen boundary */
    }

    .location-bottom {
        left: 0;  /* Reset negative offsets */
        right: 0;
        height: 200px;
    }
    .accordion-list {height: 450px;}
}

/* ========================================================= */
/* ==================== carousel SECTION ==================== */
/* ========================================================= */
.carousel-section {
    width: 100%;
    text-align: center;
}
/* Carousel Track & Container */
.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0; /* Space for gold accents extending past top/bottom */
}

.carousel-track {
    display: flex;
    gap: 40px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Individual Slide */
.carousel-slide {
    flex: 0 0 75%; /* Main image visible with peak of next slide */
    position: relative;
}


.accent-top {
    top: -45px;
    right: 15px;
    width: 45px;
    height: 45px;
}

.accent-bottom-left {
    bottom: 0;
    left: 20px;
    width: 40px;
    height: 180px;
}

.accent-bottom-right {
    bottom: 0;
    right: 0;
    width: 75px;
    height: 180px;
}

/* Slide Image Box */
.slide-image-box {
    position: relative;
    z-index: 2;
    width: 90%;
    margin: 0 auto;
    /*height: 420px;*/
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.slide-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation Arrows */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.nav-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.nav-arrow.prev {
    background-color: #D3CDC2;
    color: #555;
}

.nav-arrow.next {
    background-color: #000;
    color: #fff;
}

.nav-arrow:hover {
    opacity: 0.85;
}

.nav-arrow svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Mobile Adaptations */
@media (max-width: 768px) {

    .carousel-slide {
    flex: 0 0 90%; /* Take up most of screen on mobile */
    }

    .carousel-track {
    gap: 20px;
    }

    .slide-image-box {
    height: 260px;
    width: 80%;
    }
    .carousel-wrapper{padding: 50px 0;}
    .accent-top {
        width: 40px;
        height: 40px;
        top: -40px;
        right: -6px;
    }

    .accent-bottom-left {
    height: 120px;
    }

    .accent-bottom-right {
    width: 50px;
    height: 120px;
    right: 0;
    }
}

/* ========================================================= */
/* ==================== about SECTION ==================== */
/* ========================================================= */
.about-section {
    width: 100%;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- Left Content Column --- */
.about-content {
    display: flex;
    flex-direction: column;
}

.section-tagline {
    font-family: var(--font-heading);
    font-size: 35px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 35px;
    letter-spacing: 1%;
    line-height: 55px;
}

.brand-logo {
    margin-bottom: 35px;
}

.brand-logo img {
    max-width: 300px;
    height: auto;
    display: block;
}

.about-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 300;
}
.about-text li{list-style: none;}
.about-text:last-child {
    margin-bottom: 0;
}

/* --- Right Visual Column --- */
.about-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Gold Accent Shapes */
.gold-accent-shape {
    position: absolute;
    background-color: #C5A046;
    z-index: 1;
}

/* Large main rounded box behind the building */
.shape-main {
    top: -40px;
    left: 25%;
    width: 50%;
    height: 90%;
    border-radius: 60px;
}

/* Smaller rounded shape peeking out on the right */
.shape-sub {
    bottom: 47%;
    right: 30px;
    width: 35%;
    height: 30%;
    border-radius: 80px;
}

/* Building Image Cutout */
.building-cutout {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* --- Responsive Mobile View --- */
@media (max-width: 992px) {
    .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    }

    .about-content { margin-bottom: 60px;}
    .section-tagline {
    font-size: 1.8rem;
    margin-bottom: 25px;
    }

    .brand-logo {
    margin-bottom: 25px;
    }

    .brand-logo img {
    max-width: 230px;
    }

    .shape-main {
    left: 23%;
    width: 45%;
    height: 85%;
    border-radius: 40px;
    }

    .shape-sub {
        right: 20px;
        width: 25%;
        height: 25%;
        border-radius: 35px;
        bottom: 52%;
    }
}

/* ==========================================================================
      Testimonials Section  
========================================================================== */
.testimonials-section {
  position: relative;
}

/* Section Header */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  max-width: 650px;
}
.description{
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 300;
}
/* Carousel Wrapper */
.testimonials-carousel-container {
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* Leave space for floating quote badges */
}

.testimonials-carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease-in-out;
}

/* Testimonial Card Base */
.testimonial-card {
  flex: 0 0 calc(50% - 15px); /* Show 2 cards at a time on desktop */
  min-width: calc(50% - 15px);
  position: relative;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

/* Dark Variant Card */
.testimonial-card.dark-card {
  background: var(--text-dark);
  color: var(--text-white);
}

.testimonial-card.dark-card .star-rating {
  color: var(--text-white);
}

.testimonial-card.dark-card .card-text {
  color: var(--text-white);
}

.testimonial-card.dark-card .divider {
  background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-card.dark-card .client-title {
  color: var(--text-white);
}

/* Light Variant Card */
.testimonial-card.light-card {
  background-color: var(--text-white);
  color: var(--text-dark);
}

.testimonial-card.light-card .star-rating {
  color: #BC8F54;
}

.testimonial-card.light-card .card-text {
  color: var(--text-dark);
}

.testimonial-card.light-card .divider {
  background-color: #f0f0f0;
}

.testimonial-card.light-card .client-title {
  color: #777777;
}

/* Floating Quote Badge */
.quote-badge {
  position: absolute;
  top: -22px;
  left: 35px;
  width: 44px;
  height: 44px;
  background-color: #CFA876;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Card Content */
.star-rating {
  display: flex;
  gap: 6px;
  font-size: 14px;
  margin-bottom: 25px;
}

.testimonials-section .card-text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.divider {
  height: 1px;
  width: 100%;
  margin-bottom: 20px;
}

.client-info .client-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.client-info .client-title {
  font-size: 13px;
  font-weight: 400;
}

/* Navigation Arrows */
.test-carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 35px;
  padding-right: 10px;
}

.control-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.control-btn.prev-btn {
  background-color: var(--text-dark);
  color: #ffffff;
}

.control-btn.next-btn {
  background-color: var(--text-dark);
  color: #ffffff;
}

.control-btn:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

.control-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .testimonials-section{padding: 25px 20px;}
  .testimonials-section .section-header{margin: 0;}
  .testimonials-carousel-container {padding-top: 25px;}
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .carousel-controls {
    justify-content: center;
  }
}

/* ==========================================================================
      Explore Section  
========================================================================== */
.explore-section {
  position: relative;
  overflow: hidden;
}

.explore-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* ----------------------------------
   Left Column Styling
---------------------------------- */
.explore-info {
  flex: 1 1 45%;
  max-width: 480px;
}

.info-divider {
  width: 100%;
  height: 1px;
  background-color: #eae1d3;
  margin-bottom: 32px;
}

.phone-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-icon {
  width: 46px;
  height: 46px;
  background-color: #be8e54;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.phone-number {
  font-size: 24px;
  font-weight: 700;
  color: #0f0f0f;
  text-decoration: none;
  letter-spacing: -0.3px;
}

/* ----------------------------------
   Right Column / Form Styling
---------------------------------- */
.explore-form-wrapper {
  flex: 1 1 55%;
  max-width: 620px;
}
.explore-form-wrapper img{display: flex; margin: 0 auto;}

.explore-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  background-color: #e9e6df;
  border: 1px solid #D0CEC6;
  border-radius: 10px;
  font-size: 14px;
  color: #929292;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  font-family: var(--font-body);
}

.form-group input::placeholder {
  color: #929292;
}

.form-group input:focus {
  border-color: #D0CEC6;
  background-color: #ffffff;
}

.form-submit-wrapper {
  grid-column: 1 / -1;
  margin-top: 6px;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 20px 0;
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: #000;
  width: auto !important;
}

.form-checkbox label {
  font-size: 13px;
   color: #000;
  line-height: 1.35;
}
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--text-dark);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  font-family: var(--font-body);
}

.submit-btn:active {
  transform: scale(0.98);
}


/* ----------------------------------
   Mobile View)
---------------------------------- */
@media (max-width: 768px) {

  .explore-container {
    flex-direction: column;
    gap: 28px;
  }

  .explore-info,
  .explore-form-wrapper {
    max-width: 100%;
    width: 100%;
  }

  .explore-title {
    font-size: 38px;
  }

  .explore-title .gold-text {
    white-space: normal;
    display: block;
  }

  .title-underline {
    margin-bottom: 20px;
  }

  .explore-desc {
    font-size: 15px;
    color: #666666;
    margin-bottom: 24px;
  }

  .info-divider {
    display: none;
  }

  .phone-contact {
    margin-bottom: 12px;
  }

  .phone-number {
    font-size: 22px;
  }

  .explore-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .submit-btn {
    width: 100%;
    padding: 16px 20px;
  }

  .dot-matrix-pattern {
    display: none;
  }
}

/* ==========================================================================
      FAQ Section  
========================================================================== */
.faq-section {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.faq-container {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ----------------------------------
   Header Styling
---------------------------------- */
.faq-header {
  text-align: center;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ----------------------------------
   Accordion List & Items
---------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: #ECEBE3;
  border: 1.2px solid #DFDAC8;
  border-radius: 14px;
  overflow: hidden;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  outline: none;
  gap: 16px;
}

.faq-question {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Icon (+ / -) */
.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Horizontal Line */
.faq-icon::before {
  width: 16px;
  height: 2px;
}

/* Vertical Line */
.faq-icon::after {
  width: 2px;
  height: 16px;
}

/* Active Icon Transforms into (-) */
.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* Answer Drawer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  transition: max-height 0.35s ease-in-out;
}

.answer-content {
  font-family: var(--card-bg);
  padding: 0 28px 24px 28px;
  font-size: 14px;
  line-height: 1.5;
  color: #2F2E2E;
}

/* ----------------------------------
   Decorative Background Dots
---------------------------------- */
.pattern-top-right {
  top: 40px;
  left: 90%;
}

.pattern-bottom-left {
  top: 85%;
  left: -8%;
}

/* ----------------------------------
   Mobile Responsive View 
---------------------------------- */
@media (max-width: 768px) {
  .faq-header {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 32px;
  }

  .faq-title {
    flex-direction: column;
    align-items: flex-start;
    font-size: 36px;
    gap: 2px;
  }

  .title-underline {
    margin-top: 12px;
    width: 90px;
  }

  .faq-toggle {
    padding: 18px 20px;
  }

  /* Ellipsis truncation for question title on mobile as shown in design */
  .faq-question {
    font-size: 14.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Expanded item wraps naturally */
  .faq-item.active .faq-question {
    white-space: normal;
  }

  .answer-content {
    padding: 0 20px 20px 20px;
    font-size: 13.5px;
  }

  .pattern-top-right {
    top: 15px;
    right: 10px;
  }

  .pattern-bottom-left {
    display: none;
  }
}

/* ==========================================================================
      Footer  
========================================================================== */
.site-footer {
    position: relative;
    background-color: #050505;
    padding: 80px 8% 0;
    overflow: hidden;
}

.footer-container {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Large Background Watermark Icon --- */
.footer-watermark {
    position: absolute;
    bottom: -30%;
    right: -65px;
    z-index: 1;
    width: 480px;
    height: 480px;
    opacity: 0.95;
    pointer-events: none;
}
.footer-watermark img{
    width: 80%;
}
/* --- Logo Header --- */
.footer-logo {
    margin-bottom: 50px;
}

.logo-box img{
   width: 190px;
}

/* --- Main Footer Content Grid --- */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.3fr 1.3fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.column-title {
    color: #C0A652; /* Gold Accent Color */
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 22px;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item, .info-link {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-link:hover {
    color: #C8A54A;
}

/* --- Social Icons --- */
.social-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C49B64;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-btn:hover {
    background-color: #C8A54A;
    color: var(--text-white);
    transform: translateY(-2px);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* --- RERA Section --- */
.rera-row {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

/* --- Divider --- */
.footer-divider {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.12);
    margin: 30px 0;
    width: 70%;
}

/* --- Disclaimer Block --- */
.disclaimer-block {
    max-width: 800px;
    margin-bottom: 50px;
}

.disclaimer-title {
    color: #C8A54A;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
}

.disclaimer-text {
    width: 85%;
    font-size: 13px;
    line-height: 1.7;
    color: #b0b0b0;
}

/* --- Bottom Bar --- */
.copyright-bar {
    background-color: #0a0a0a;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #888888;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
    Responsive Styles (Mobile View Match)
    ========================================================================== */
@media (max-width: 992px) {
    .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    }
    
    .footer-watermark {
    width: 320px;
    height: 320px;
    right: -80px;
    }
}

@media (max-width: 768px) {
    .site-footer {
    padding: 45px 20px 0;
    }

    .footer-container {
    padding: 0 10px;
    }

    /* Hide or trim large backdrop icon on mobile to match reference */
    .footer-watermark {
    display: none;
    }

    .footer-logo {
    margin-bottom: 35px;
    }
    .logo-box img{width: 160px;}
    .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 25px;
    }

    .column-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
    }

    .info-list {
    gap: 12px;
    }

    .social-links {
    gap: 16px;
    margin-top: 6px;
    }

    .social-btn {
    width: 48px;
    height: 48px;
    }

    .rera-row {
    margin-top: 24px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    }

    .footer-divider {
    display: none; /* Removed on mobile layout */
    }

    .disclaimer-block {
    margin-bottom: 40px;
    }

    .disclaimer-title {
    font-size: 1.05rem;
    }

    .disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.65;
    }
    .copyright-bar {padding-bottom: 20%;}
}

/* Hidden by default */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* Modal Box */
.modal-content {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.modal-explore-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.modal-explore-form .form-group{gap: 0;}
.close-btn {
  font-size: 28px;
  cursor: pointer;
  color: #888;
}

.close-btn:hover {
  color: #000;
}

/* Show class for JS */
.modal.show {
  display: flex;
}

/* Base hidden state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

/* State added by JS when element enters viewport */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: Stagger delays for sequential text elements */
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* ==========================================================================
      Floating Action Buttons  
========================================================================== */
/* ==================== FLOATING CONTACT BUTTONS ==================== */
.floating-actions {
    position: fixed;
    bottom: 20%;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 90;
}

.float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.whatsapp {
    background-color: #25d366;
    font-size: 28px;
}

.float-btn.call {
    background-color: var(--primary-gold);
    color: #fff;
}

.floating-actions-wrapper {
    position: fixed;
    bottom: 50%;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 9999;
}
.sticky-enquiry-btn {
  font-family: var(--font-body) !important;
    background-color: #be9256;
    color: #ffffff;
    border: none;
    padding: 12px 16px;
    border-radius: 0px 12px 12px 0px;
    font-weight: 400;
    white-space: nowrap;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 16px;
}

.sticky-enquiry-btn:hover{background-color: #A67B41;}
.float-whatsapp { background-color: #25D366; }
.float-phone img{width: 50px; }
.float-whatsapp i{font-size: 35px;}
.phone-sticky-btn{display: none;}
.whatsapp-sticky-btn{ display: none;}
.fa-calendar::before{ display: none;}
@media (max-width: 768px) {
  .floating-actions{display: none;}

  .floating-actions-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    width: 100%;
    background-color: var(--text-dark);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #313234;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px)) 0;
    z-index: 99999;
    height: 60px;
    gap: 5px;
  }
  .floating-actions-wrapper .sticky-enquiry-btn {
      writing-mode: horizontal-tb !important;
      transform: rotate(0deg) !important;
  }
  .floating-actions-wrapper > a:not(:last-child), .floating-actions-wrapper > button:not(:last-child) {
    border-right: 1px solid #313234 !important;
  }
  .floating-actions-wrapper > a, .floating-actions-wrapper > button {
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    color: #4a5568 !important;
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 4px 0 !important;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: none;
    font-weight: 600;
    white-space: nowrap;
  }
  .floating-actions-wrapper .phone-sticky-btn i {
     color: var(--text-white);
  }
  .floating-actions-wrapper .sticky-enquiry-btn i {
     color: var(--text-white);
  }
  .floating-actions-wrapper .whatsapp-sticky-btn i {
     color: var(--text-white);
     font-size: 20px;
  }
  .floating-actions-wrapper i {
    font-size: 16px;
    margin-bottom: 3px;
    display: inline-block;
  }
  .floating-actions-wrapper .btn-label{color: var(--text-white); font-size: 14px;}
  .whatsapp-sticky-btn{display: block;}
  .phone-sticky-btn{ display: block;}
  .fa-calendar::before{ display: block;}
}

@media (min-width: 1900px) {
    .logo img {
    width: 135px;
}
}