@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ==================================================
   GLOBAL SETTINGS
================================================== */

html {
  scroll-behavior: smooth;
}

:root {

  /* BACKGROUNDS */
  --bg-primary: #ffffff;
  --bg-secondary: #fbf7ed;
  --bg-soft: #f9f7f2;

  /* GOLD PALETTE */
  --gold-light: #e8d7a5;
  --gold: #c6a64a;
  --gold-dark: #a8841f;

  /* TEXT COLORS */
  --text-primary: #2a2a2a;
  --text-secondary: #666;
  --text-muted: #8a8a8a;

  /* EFFECTS */
  --gold-gradient: linear-gradient(
    90deg,
    #e8d7a5,
    #c6a64a,
    #a8841f
  );

  --shadow-soft: 0 5px 20px rgba(0,0,0,0.06);
  --shadow-premium: 0 15px 40px rgba(0,0,0,0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==================================================
   TYPOGRAPHY SYSTEM
================================================== */

h1, h2 {
  color: var(--gold-dark);
}

h3, h4, h5 {
  color: var(--gold);
}

p {
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: var(--gold-dark);
  transition: 0.3s;
}

a:hover {
  color: var(--gold);
}

/* ==================================================
   NAVBAR
================================================== */

.navbar {
  position: fixed;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-light);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 40px;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold-dark);
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-weight: 500;
  position: relative;
}

/* luxury underline animation */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Hamburger */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--gold-dark);
  display: block;
}

/* MOBILE NAV */

@media (max-width:768px){

  .hamburger{
    display:flex;
  }

  nav{
    position:fixed;
    right:-100%;
    top:0;
    width:260px;
    height:100vh;
    background:#fff;
    flex-direction:column;
    padding:90px 30px;
    transition:0.3s;
    box-shadow:-5px 0 20px rgba(0,0,0,0.1);
  }

  nav.active{
    right:0;
  }
}

/* ==================================================
   BUTTONS
================================================== */

.btn {
  background: var(--gold-gradient);
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
  box-shadow: var(--shadow-soft);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium);
}

/* ==================================================
   HERO
================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
  
    background-image: url("assets/fs\ \(1\).avif");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  
    overflow: hidden;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
  
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.75) 45%,
      rgba(255,255,255,0.35) 100%
    );
  
    z-index: 1;
  }

.hero-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-subtitle {
  color: var(--gold);
  letter-spacing:2px;
  margin-bottom:20px;
  text-transform:uppercase;
}

.hero-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  padding:35px;
  border-radius:12px;
  box-shadow: var(--shadow-premium);
  max-width:450px;
}

.hero-features {
  list-style:none;
  margin:20px 0;
}

.hero-features li {
  margin-bottom:12px;
  color:var(--text-primary);
}

.hero-features li::before{
  content:"✓";
  color:var(--gold);
  margin-right:10px;
}

/* ==================================================
   SECTIONS
================================================== */

.section {
  padding:80px 0;
}

.section.alt {
  background:linear-gradient(
    180deg,
    var(--bg-primary),
    var(--bg-secondary)
  );
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--gold-dark);
    font-weight: 600;
  }

/* ==================================================
   GRID SYSTEM
================================================== */

.grid-2{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

/* ==================================================
   CARDS
================================================== */

.plan-card,
.price-box,
.ami-box{
  background:#fff;
  border-radius:10px;
  box-shadow:var(--shadow-soft);
  padding:25px;
  transition:0.3s;
}

.plan-card:hover,
.price-box:hover,
.ami-box:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-premium);
}

/* ==================================================
   CTA
================================================== */

.cta{
  background:var(--gold-gradient);
  color:#fff;
  text-align:center;
  padding:80px 20px;
}

.cta h2{
  color:#fff;
}

/* ==================================================
   FOOTER
================================================== */

.footer{
  background:#111;
  color:#bbb;
  padding:50px 0 20px;
  font-size:0.9rem;
}

.footer h4{
  color:#fff;
}

.footer-links a{
  color:#ccc;
}

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

/* ==================================================
   FLOATING CALL BUTTON
================================================== */

.floating-call{
  position:fixed;
  bottom:20px;
  right:20px;
  width:55px;
  height:55px;
  border-radius:50%;
  background:var(--gold-gradient);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  box-shadow:var(--shadow-premium);
}

/* ==================================================
   IMAGE SYSTEM — GLOBAL FIX
================================================== */

img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Prevent layout jumps */
  section img {
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
  }
  
  /* ==================================================
     HERO IMAGE BALANCE
  ================================================== */
  
  .hero {
    overflow: hidden;
  }
  
  .hero-container {
    align-items: center;
  }
  
  .hero-text {
    max-width: 520px;
  }
  
  /* ==================================================
     SPLIT SECTIONS (Overview / Highlights / Location)
  ================================================== */
  
  .split-section {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  
  .split-text {
    flex: 1;
    max-width: 600px;
  }
  
  .split-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .split-image img {
    width: 100%;
    max-width: 520px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: var(--shadow-premium);
  }
  
  /* Reverse spacing balance */
  .split-section.reverse {
    flex-direction: row-reverse;
  }
  
  /* ==================================================
     SITE PLAN IMAGE
  ================================================== */
  
  #plans img {
    max-width: 900px;
    width: 100%;
    margin: 40px auto 0;
    border-radius: 14px;
    box-shadow: var(--shadow-premium);
  }
  
  /* ==================================================
     FLOOR PLAN CARDS
  ================================================== */
  
  .plan-card {
    overflow: hidden;
    padding: 0;
  }
  
  .plan-card img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .plan-info {
    padding: 20px 24px 28px;
    text-align: left;
  }
  
  /* ==================================================
     PRICING BOX ALIGNMENT
  ================================================== */
  
  .price-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .price-body {
    padding: 25px;
  }
  
  /* ==================================================
     AMENITIES GRID BALANCE
  ================================================== */
  
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
  }
  
  .ami-box {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* ==================================================
     GALLERY — PROFESSIONAL LAYOUT
  ================================================== */
  
  #gallery .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
  }
  
  #gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
    transition: 0.4s ease;
    cursor: pointer;
  }
  
  #gallery img:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-premium);
  }
  
  /* ==================================================
     GOOGLE MAP RESPONSIVE FIX
  ================================================== */
  
  .split-image iframe {
    width: 100%;
    max-width: 520px;
    height: 420px;
    border-radius: 14px;
    box-shadow: var(--shadow-premium);
  }
  
  /* ==================================================
     SECTION SPACING SYSTEM (Luxury Rhythm)
  ================================================== */
  
  .section {
    padding: 100px 0;
  }
  
  .section-title {
    margin-bottom: 20px;
  }
  
  .title-divider {
    margin-bottom: 35px;
  }
  
  /* ==================================================
     MOBILE OPTIMIZATION
  ================================================== */
  
  @media (max-width: 900px) {
  
    .split-section,
    .split-section.reverse {
      flex-direction: column;
      text-align: center;
      gap: 40px;
    }
  
    .split-text {
      max-width: 100%;
    }
  
    .split-image img,
    .split-image iframe {
      max-width: 100%;
    }
  
    .hero-container {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }
  
    .hero-text {
      max-width: 100%;
    }
  
    #gallery img {
      height: 220px;
    }
  }

  /* ================= MODAL ================= */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
  
    align-items: center;
    justify-content: center;
  }
  
  .modal.active {
    display: flex;
  }
  
  .modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-premium);
    animation: modalFade 0.35s ease;
  }
  
  @keyframes modalFade {
    from {
      opacity: 0;
      transform: translateY(30px) scale(.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  .close-modal {
    position: absolute;
    right: 18px;
    top: 12px;
    font-size: 28px;
    cursor: pointer;
    color: var(--gold-dark);
  }

  /* ==================================================
   PREMIUM FAQ ACCORDION
================================================== */

.accordion-container {
    max-width: 850px;
    margin: 50px auto 0;
  }
  
  /* FAQ CARD */
  details {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: 0.35s ease;
    border: 1px solid transparent;
  }
  
  details:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
    border-color: var(--gold-light);
  }
  
  /* QUESTION */
  summary {
    padding: 22px 26px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--gold-dark);
    list-style: none;
    position: relative;
  }
  
  /* Remove default arrow */
  summary::-webkit-details-marker {
    display: none;
  }
  
  /* PLUS ICON */
  summary::after {
    content: "+";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: var(--gold);
    transition: 0.3s ease;
  }
  
  /* OPEN STATE */
  details[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
  }
  
  /* ANSWER AREA */
  .details-content {
    padding: 0 26px 24px 26px;
    color: var(--text-secondary);
    line-height: 1.7;
    border-top: 1px solid #f0f0f0;
  
    animation: faqOpen 0.35s ease;
  }
  
  /* Smooth open animation */
  @keyframes faqOpen {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* SECTION CENTERING IMPROVEMENT */
  #faq,
  .section .accordion-container {
    text-align: left;
  }
  
  /* MOBILE */
  @media (max-width:768px) {
  
    summary {
      font-size: 1rem;
      padding: 18px 20px;
    }
  
    .details-content {
      padding: 0 20px 20px;
    }
  }