/* ============================================
   Godrej Crown Residency - Premium Landing
   ============================================ */

:root {
  --navy: #0B1F3A;
  --navy-light: #1a3057;
  --gold: #C8A96A;
  --gold-light: #e0c48c;
  --gold-dark: #a8884a;
  --bg: #ffffff;
  --bg-soft: #f7f5f0;
  --text: #0B1F3A;
  --muted: #5b6a80;
  --border: #e6e3dc;
  --white: #ffffff;

  --gradient-gold: linear-gradient(135deg, #e0c48c 0%, #a8884a 100%);
  --gradient-navy: linear-gradient(135deg, #0B1F3A 0%, #1a3057 100%);
  --gradient-overlay: linear-gradient(90deg, rgba(11,31,58,0.92) 0%, rgba(11,31,58,0.55) 60%, rgba(11,31,58,0.2) 100%);

  --shadow-soft: 0 4px 20px -4px rgba(11,31,58,0.08);
  --shadow-elegant: 0 20px 50px -20px rgba(11,31,58,0.25);
  --shadow-gold: 0 10px 30px -10px rgba(200,169,106,0.45);
  --shadow-card: 0 2px 8px rgba(50,60,80,0.06), 0 12px 30px -10px rgba(50,60,80,0.08);

  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.4,0,0.2,1);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.35rem; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
section { padding: 5rem 0; }

/* SECTION HEADER */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.85rem; }
.eyebrow::before, .eyebrow::after { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--gold); vertical-align: middle; margin: 0 0.6rem; }
.section-header p { color: var(--muted); margin-top: 1rem; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 1.75rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; transition: var(--transition); white-space: nowrap; }
.btn-gold { background: var(--gradient-gold); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-navy { background: var(--gradient-navy); color: var(--white); box-shadow: var(--shadow-elegant); }
.btn-navy:hover { transform: translateY(-2px); filter: brightness(1.2); }
.btn-outline-light { border: 2px solid rgba(255,255,255,0.7); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }
.btn-outline-gold { border: 2px solid var(--gold); color: var(--gold-dark); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-lg { padding: 1.05rem 2.25rem; font-size: 1rem; }
.btn-block { width: 100%; }



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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: all 0.4s ease;

  /* TOP GLASS EFFECT */
  background: rgba(11,31,58,0.65);
  backdrop-filter: blur(10px);
}

/* ================= SCROLL STATE ================= */

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  padding: 0.6rem 0;
}

/* ================= INNER ================= */

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  transition: var(--transition);
}

/* BOTH LOGOS */
.logo-default,
.logo-sticky{
  height:52px;
  width:auto;
  object-fit:contain;
  transition:0.3s ease;
}

/* DEFAULT LOGO SHOW */
.logo-default{
  display:block;
}

/* STICKY LOGO HIDE */
.logo-sticky{
  display:none;
}

/* ================= LOGO CHANGE ON SCROLL ================= */

/* HIDE DEFAULT LOGO */
.navbar.scrolled .logo-default{
  display:none;
}

/* SHOW STICKY LOGO */
.navbar.scrolled .logo-sticky{
  display:block;
}

/* ================= NAV LINKS ================= */

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
}

/* NAV LINK COLOR ON SCROLL */
.navbar.scrolled .nav-links a {
  color: var(--navy);
}

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

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

.nav-cta {
  display: none;
}

/* ================= DESKTOP ================= */

@media (min-width: 1024px) {

  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

}

/* ================= TABLET ================= */

@media(max-width:992px){

  .logo-default,
  .logo-sticky{
    height:45px;
  }

}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .navbar{
    padding:0.7rem 0;
  }

  .navbar.scrolled{
    padding:0.5rem 0;
  }

  .logo-default,
  .logo-sticky{
    height:38px;
    width:auto;
  }

  .nav-inner{
    gap:10px;
  }

}

/* ================= SMALL MOBILE ================= */

@media(max-width:480px){

  .logo-default,
  .logo-sticky{
    height:34px;
  }

}
/* MOBILE MENU BUTTON */

.menu-toggle{
  display:none;
  font-size:28px;
  color:#fff;
  background:none;
  border:none;
  cursor:pointer;
  z-index:1001;
}

/* CHANGE COLOR ON SCROLL */

.navbar.scrolled .menu-toggle{
  color:var(--navy);
}

/* MOBILE */

@media(max-width:1023px){

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    padding:20px;
    display:none;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links a{
    color:var(--navy);
    padding:10px 0;
  }

}

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 7rem 0 4rem; color: var(--white); }
.hero-bg { position: absolute; inset: 0; z-index: -2; background: var(--navy); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: var(--gradient-overlay); }
.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.2fr 0.8fr; gap: 4rem; } }
.hero-content { animation: fadeInUp 0.9s ease-out; }
.hero-tag { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.45rem 0.95rem; background: rgba(200,169,106,0.18); border: 1px solid rgba(200,169,106,0.4); border-radius: 999px; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.5rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 .accent { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 560px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.5rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 560px; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.18); }
.hero-stats .stat-num { font-family: var(--font-serif); font-size: 1.6rem; color: var(--gold-light); }
.hero-stats .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); letter-spacing: 0.05em; }
.hero-form { animation: fadeInUp 1.1s ease-out; }

/* LEAD FORM */
.lead-form { background: var(--white); color: var(--text); padding: 1.75rem; border-radius: 16px; box-shadow: var(--shadow-elegant); }
.lead-form h3 { color: var(--navy); margin-bottom: 0.3rem; }
.lead-form .form-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.25rem; }
.field { margin-bottom: 0.85rem; }
.field input { width: 100%; height: 48px; padding: 0 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.95rem; transition: var(--transition); background: var(--white); }
.field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,106,0.15); }
.field-phone { display: flex; gap: 0.5rem; }
.field-phone .prefix { display: inline-flex; align-items: center; justify-content: center; padding: 0 0.85rem; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.privacy { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--muted); margin-top: 0.85rem; }
.privacy svg { color: var(--gold-dark); flex-shrink: 0; }

/* TRUST BAR */
.trust-bar { background: var(--bg-soft); padding: 2rem 0; border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; align-items: center; text-align: center; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; color: var(--navy); }
.trust-item svg { color: var(--gold); }
.trust-item strong { font-family: var(--font-serif); font-size: 1.35rem; }
.trust-item span { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; }

/* ABOUT */
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 16px; box-shadow: var(--shadow-elegant); aspect-ratio: 4/5; object-fit: cover; }
.about-badge { position: absolute; bottom: -28px; right: -10px; background: var(--white); padding: 1.25rem 1.5rem; border-radius: 14px; box-shadow: var(--shadow-card); border-top: 4px solid var(--gold); }
.about-badge strong { display: block; font-family: var(--font-serif); font-size: 1.6rem; color: var(--navy); }
.about-badge span { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.05em; }
.about-list { list-style: none; margin-top: 1.5rem; display: grid; gap: 0.85rem; }
.about-list li { display: flex; gap: 0.75rem; align-items: flex-start; }
.about-list svg { color: var(--gold); flex-shrink: 0; margin-top: 0.15rem; }

/* HIGHLIGHTS */
.highlights { background: var(--bg-soft); }
.cards-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
.feat-card { background: var(--white); padding: 1.75rem; border-radius: 14px; box-shadow: var(--shadow-card); border: 1px solid var(--border); transition: var(--transition); }
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-elegant); border-color: var(--gold); }
.feat-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--gradient-gold); display: grid; place-items: center; color: var(--navy); margin-bottom: 1.1rem; }
.feat-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.feat-card p { color: var(--muted); font-size: 0.95rem; }

/* LOCATION */
.loc-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .loc-grid { grid-template-columns: repeat(4, 1fr); } }
.loc-card { background: var(--white); padding: 1.5rem; border-radius: 12px; border: 1px solid var(--border); display: flex; gap: 1rem; align-items: flex-start; transition: var(--transition); }
.loc-card:hover { border-color: var(--gold); box-shadow: var(--shadow-card); }
.loc-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(200,169,106,0.15); color: var(--gold-dark); display: grid; place-items: center; flex-shrink: 0; }
.loc-card h4 { font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 0.2rem; }
.loc-card p { font-size: 0.85rem; color: var(--muted); }

/* FLOOR PLANS */
.floor-plans { background: var(--bg-soft); }
.fp-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .fp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fp-grid { grid-template-columns: repeat(3, 1fr); } }
.fp-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card); transition: var(--transition); }
.fp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-elegant); }
.fp-head { background: var(--gradient-navy); color: var(--white); padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.fp-head h3 { color: var(--white); font-size: 1.4rem; }
.fp-head .area { color: var(--gold-light); font-size: 0.85rem; letter-spacing: 0.05em; }
.fp-body { padding: 1.5rem; }
.fp-body ul { list-style: none; display: grid; gap: 0.6rem; margin-bottom: 1.25rem; }
.fp-body li { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--muted); padding-bottom: 0.5rem; border-bottom: 1px dashed var(--border); }
.fp-body li strong { color: var(--navy); font-weight: 600; }
.fp-price { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 1.1rem; }
.fp-price .amt { font-family: var(--font-serif); font-size: 1.75rem; color: var(--navy); }
.fp-price .lbl { color: var(--muted); font-size: 0.8rem; }

/* PRICE */
/* ───────── PRICE SECTION ───────── */

.price {
  background: var(--gradient-navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.price::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,106,0.18) 0%, transparent 70%);
}

/* GRID */
.price-grid {
  display: grid;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .price-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* TEXT */
.price h2 { color: var(--white); }
.price .eyebrow { color: var(--gold-light); }

.price-amount {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 1rem 0 0.5rem;
}

.price-amount .accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-sub {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
}

/* ───────── IMAGE BLUR CARD ───────── */

.payment-plan {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 100%;
  min-height: 320px;
  cursor:pointer;
}


/* IMAGE */
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: blur(6px);
  transform: scale(1.1);
}

/* DARK OVERLAY */
.payment-plan::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

/* TEXT OVERLAY */
.plan-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.plan-overlay span {
  background: rgba(255,255,255,0.15);
  padding: 10px 20px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ───────── MOBILE ───────── */
@media(max-width:768px){

  .price-grid {
    gap: 2rem;
  }

  .payment-plan {
    min-height: 250px;
  }

}

/* GALLERY */
.gallery-grid { display: grid; gap: 0.85rem; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; } }
.g-item { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.g-item:hover img { transform: scale(1.08); }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(11,31,58,0.7)); opacity: 0; transition: var(--transition); }
.g-item:hover::after { opacity: 1; }
.g-item .g-label { position: absolute; bottom: 1rem; left: 1rem; color: var(--white); font-family: var(--font-serif); opacity: 0; transform: translateY(8px); transition: var(--transition); z-index: 1; }
.g-item:hover .g-label { opacity: 1; transform: translateY(0); }
.g-tall { grid-row: span 2; }
@media (max-width: 767px) { .g-tall { grid-row: span 1; } }

/* AMENITIES */
.amenities { background: var(--bg-soft); }
.am-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .am-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .am-grid { grid-template-columns: repeat(6, 1fr); } }
.am-card { background: var(--white); padding: 1.5rem 1rem; border-radius: 12px; text-align: center; border: 1px solid var(--border); transition: var(--transition); }
.am-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.am-card svg { color: var(--gold-dark); margin: 0 auto 0.75rem; }
.am-card span { font-size: 0.85rem; font-weight: 500; color: var(--navy); }



/* FAQ */
.faq { background: var(--bg-soft); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 0.85rem; }
.faq-item { background: var(--white); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-card); }
.faq-q { width: 100%; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-align: left; font-weight: 600; color: var(--navy); font-size: 1rem; }
.faq-q .icon { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; color: var(--gold-dark); transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q .icon { background: var(--gold); color: var(--navy); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; color: var(--muted); font-size: 0.95rem; }

/* FINAL CTA */
.final-cta { background: var(--navy); color: var(--white); position: relative; overflow: hidden; padding: 6rem 0; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(200,169,106,0.18), transparent 60%); }
.fcta-grid { display: grid; gap: 3rem; align-items: center; position: relative; z-index: 1; }
@media (min-width: 1024px) { .fcta-grid { grid-template-columns: 1.1fr 0.9fr; } }
.final-cta h2 { color: var(--white); }
.final-cta h2 .accent { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }
.final-cta p { color: rgba(255,255,255,0.78); margin: 1rem 0 1.75rem; max-width: 540px; }
.fcta-points { list-style: none; display: grid; gap: 0.75rem; }
.fcta-points li { display: flex; gap: 0.65rem; align-items: center; color: rgba(255,255,255,0.9); font-size: 0.95rem; }
.fcta-points svg { color: var(--gold-light); flex-shrink: 0; }




/* FOOTER */
.footer {
  background: #060f1d;
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
  text-align: center;
}

/* DISCLAIMER */
.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto 2rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

/* BOTTOM */
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.8rem;
}

@media (min-width:768px){
  .foot-bottom{
    flex-direction: row;
    justify-content: space-between;
  }
}



/* FLOATING ACTIONS */
.float-actions { position: fixed; bottom: 1.25rem; right: 1.25rem; display: flex; flex-direction: column; gap: 0.7rem; z-index: 40; }
.float-btn { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: var(--white); box-shadow: var(--shadow-elegant); transition: var(--transition); }
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25D366; }
.float-call { background: var(--gradient-gold); color: var(--navy); }

/* STICKY MOBILE CTA */
.mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); padding: 0.75rem 1rem; box-shadow: 0 -4px 20px rgba(11,31,58,0.12); display: flex; gap: 0.5rem; z-index: 30; border-top: 1px solid var(--border); }
.mobile-cta .btn { flex: 1; padding: 0.75rem 1rem; font-size: 0.88rem; }
@media (min-width: 768px) { .mobile-cta { display: none; } }
@media (max-width: 767px) { .float-actions { bottom: 90px; } }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* TOAST */
.toast { position: fixed; top: 6rem; right: 1.25rem; background: var(--navy); color: var(--white); padding: 1rem 1.25rem; border-radius: 12px; box-shadow: var(--shadow-elegant); border-left: 4px solid var(--gold); transform: translateX(120%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); z-index: 100; max-width: 320px; }
.toast.show { transform: translateX(0); }
.toast strong { display: block; margin-bottom: 0.2rem; }
.toast small { color: rgba(255,255,255,0.7); font-size: 0.82rem; }



/* ================= FORM STATES ================= */

button.loading {
  opacity: 0.6;
  pointer-events: none;
}

input.error {
  border-color: red !important;
}

/* ================= POPUP ================= */
/* ===== POPUP MAIN WRAPPER ===== */
#popupForm {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

/* ===== DARK BACKGROUND ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

/* ===== POPUP BOX ===== */
.popup-box {
  position: relative;
  background: #f4f1ec;
  padding: 40px 30px;
  border-radius: 25px;
  width: 380px;
  max-width: 90%;
  text-align: center;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: popupFade 0.4s ease;
}

/* ===== ANIMATION ===== */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== SMALL TAG ===== */
.popup-box .tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #b8962e;
  margin-bottom: 10px;
  font-weight: 600;
}

/* ===== HEADING ===== */
.popup-box h2 {
  font-size: 28px;
  color: #1f3b2d;
  margin-bottom: 10px;
}

/* ===== SUBTEXT ===== */
.popup-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

/* ===== INPUT FIELDS ===== */
.popup-box input {
  width: 100%;
  padding: 16px;
  margin-bottom: 15px;
  border-radius: 40px;
  border: none;
  background: #e9e6e1;
  font-size: 14px;
  outline: none;
}

/* ===== BUTTON ===== */
.popup-box button {
  width: 100%;
  padding: 16px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(90deg,#e0c05a,#b8902d);
  color: #0f2d22;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.popup-box button:hover {
  transform: scale(1.05);
}

/* ===== FOOTER TEXT ===== */
.popup-box small {
  display: block;
  margin-top: 15px;
  font-size: 12px;
  color: #777;
}

/* ===== CLOSE BUTTON  ===== */
.popup-close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 480px) {
  .popup-box {
    padding: 25px 20px;
  }

  .popup-box h2 {
    font-size: 22px;
  }
}