:root {
  --primary: #003087;
  --secondary: #e63329;
  --accent-pink: #e91e8c;
  --accent-green: #00a651;
  --accent-orange: #f7941d;
  --accent-teal: #00aeef;
  --gold: #c9a84c;
  --dark: #0a0a0a;
  --dark2: #111827;
  --light: #f8f9fc;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --gradient-primary: linear-gradient(135deg, #003087 0%, #001a4e 100%);
  --gradient-accent: linear-gradient(135deg, #e63329, #e91e8c);
  --gradient-gold: linear-gradient(135deg, #c9a84c, #f5d485, #c9a84c);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.25);
  --radius: 12px;
  --radius-lg: 20px;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--white); overflow-x:hidden; }

/* ===== FLOATING CTA BUTTON ===== */
.floating-cta {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 9999; display: flex; flex-direction: column; gap: 0;
}
.floating-cta a {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; color: white; text-decoration: none;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.5px; transition: all 0.3s;
  writing-mode: horizontal-tb;
}
.floating-cta .fcall { background: var(--primary); border-radius: 12px 0 0 0; }
.floating-cta .fwhatsapp { background: #25d366; border-radius: 0 0 0 12px; }
.floating-cta a:hover { padding-right: 28px; }
.floating-cta a i { font-size: 18px; }

/* Mobile bottom CTA */
.mobile-bottom-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999; background: var(--dark2);
  padding: 8px 12px; gap: 8px;
}
.mobile-bottom-cta a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 6px; padding: 12px 8px; border-radius: 8px;
  color: white; text-decoration: none; font-family:'Rajdhani',sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 0.5px;
}
.mbc-call { background: var(--primary); }
.mbc-wa { background: #25d366; }
.mbc-enquire { background: var(--gradient-accent); }

/* POPUP */
.popup-overlay {
  display: none; position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.popup-overlay.active { display: flex; }
.popup-box {
  background: white; border-radius: 20px; padding: 40px 36px;
  max-width: 420px; width: 90%; position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}
.popup-box h3 { font-family:'Playfair Display',serif; font-size: 24px; color: var(--primary); margin-bottom: 6px; }
.popup-box p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.popup-actions { display: flex; gap: 16px; }
.popup-actions a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 16px; border-radius: 12px; color: white;
  text-decoration: none; font-family:'Rajdhani',sans-serif;
  font-weight: 700; font-size: 16px; transition: transform 0.2s;
}
.popup-actions a:hover { transform: scale(1.04); }
.popup-call { background: var(--primary); }
.popup-wa { background: #25d366; }
.popup-close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px;
  border: none; background: #f3f4f6; border-radius: 50%; cursor: pointer;
  font-size: 16px; color: var(--text-muted);
}
.popup-trigger-btn {
  position: fixed; right: 20px; top: 50%; transform: translateY(-50%) translateX(0);
  z-index: 9998; background: var(--gradient-accent); color: white;
  border: none; border-radius: 50%; width: 56px; height: 56px;
  font-size: 22px; cursor: pointer; box-shadow: 0 8px 24px rgba(230,51,41,0.4);
  animation: pulse-btn 2s infinite;
}
@keyframes pulse-btn {
  0%,100%{box-shadow:0 8px 24px rgba(230,51,41,0.4);}
  50%{box-shadow:0 8px 40px rgba(230,51,41,0.7);}
}

/* ===== HEADER ===== */
header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(0,30,87,0.97); backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(201,168,76,0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 200px 1fr auto;
  align-items: center; padding: 0 24px; height: 72px; gap: 20px;
}
.logo-wrap img { height: 52px; object-fit: contain; }
nav { display: flex; justify-content: center; gap: 6px; }
nav a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 8px 14px; border-radius: 6px; transition: all 0.2s;
  position: relative;
}
nav a::after {
  content:''; position:absolute; bottom:4px; left:50%; right:50%;
  height:2px; background:var(--gold); transition:all 0.3s;
}
nav a:hover { color: var(--gold); }
nav a:hover::after { left:14%; right:14%; }
.header-right { display: flex; gap: 10px; align-items: center; }
.header-right a {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 8px; text-decoration: none;
  font-family:'Rajdhani',sans-serif; font-weight:700;
  font-size:13px; letter-spacing:0.5px; transition:all 0.2s;
}
.hdr-call { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); }
.hdr-wa { background: #25d366; color: white; }
.hdr-call:hover { background: rgba(255,255,255,0.2); }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; }
.hamburger span { width:24px; height:2px; background:white; border-radius:2px; transition:all 0.3s; }

.mobile-nav {
  display:none; position:absolute; top:61px; left:0; right:0;
  background:rgba(0,30,87,0.98); padding:16px 24px 20px;
  border-bottom: 2px solid rgba(201,168,76,0.3);
}
.mobile-nav.open { display:flex; flex-direction:column; gap:4px; }
.mobile-nav a {
  color:rgba(255,255,255,0.85); text-decoration:none;
  font-family:'Rajdhani',sans-serif; font-weight:600;
  font-size:15px; letter-spacing:0.5px; padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* ===== BANNER / HERO ===== */
/* =========================================
   PREMIUM HERO SECTION
========================================= */

.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  background:#000;
}

/* BACKGROUND IMAGE */

.hero-bg{
  position:absolute;
  inset:0;
  background:url('omaxe-dwarka.jpg') center center/cover no-repeat;
  transform:scale(1.05);
  animation:heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom{
  from{
    transform:scale(1.05);
  }
  to{
    transform:scale(1.15);
  }
}

/* DARK OVERLAY */

.hero-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    90deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.72) 38%,
    rgba(0,0,0,0.58) 60%,
    rgba(0,0,0,0.75) 100%
  );
  z-index:1;
}

/* GLOW EFFECTS */

.hero-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
  z-index:1;
}

.glow-1{
  width:320px;
  height:320px;
  background:rgba(0,174,239,0.22);
  top:-60px;
  left:-60px;
}

.glow-2{
  width:280px;
  height:280px;
  background:rgba(201,168,76,0.18);
  right:-60px;
  bottom:-80px;
}

/* GRID */

.hero-grid-lines{
  position:absolute;
  inset:0;
  background-image:
  linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size:60px 60px;
  z-index:1;
}

/* MAIN CONTAINER */

.hero-inner{
  position:relative;
  z-index:3;
  width:100%;
  max-width:1380px;
  margin:auto;
  padding:50px 24px 50px;
  display:grid;
  grid-template-columns:1fr 390px;
  gap:70px;
  align-items:flex-start;
}

/* LEFT CONTENT */

.hero-content{
  color:#fff;
  max-width:660px;
}

/* TAG */

.hero-tag{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:10px 22px;
  border-radius:100px;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.15);
  font-size:13px;
  letter-spacing:2px;
  font-weight:700;
  color:#fff;
  margin-bottom:28px;
}

.pulse-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#00d26a;
  animation:pulse 1.5s infinite;
}

@keyframes pulse{
  0%{
    transform:scale(1);
    opacity:1;
  }
  50%{
    transform:scale(1.5);
    opacity:0.5;
  }
  100%{
    transform:scale(1);
    opacity:1;
  }
}

/* HEADING */

.hero h1{
  font-size:clamp(47px,5vw,40px);
  line-height:1;
  font-weight:900;
      font-family: 'Playfair Display';
  margin-bottom:24px;
  color:#fff;
  letter-spacing:-2px;
}

.hero-small-text{
  display:block;
  font-size:58px;
   font-family: 'Playfair Display';
  font-weight:800;
  text-transform: uppercase;
  color:rgb(255, 255, 255);
  margin-bottom:14px;
 
  letter-spacing:1px;
}

.hero .highlight{
  display:block;
  background:linear-gradient(90deg,#d4af37,#fff1b8);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* SUBTEXT */

.hero-sub{
font-size: 15px;
    line-height: 1.8;
    color: rgb(255 255 255);
    margin-bottom: 28px;
    max-width: 720px;
    font-family: 'Rajdhani';
}

/* LOCATION */

.hero-location{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 15px;
  border-radius:5px;
  background:rgba(0, 0, 0, 0.229);
  border:1px solid rgba(255, 255, 255, 0.277);
  color:#ffffff;
  margin-bottom:24px;
  font-weight:600;
}

/* STATS */

.hero-stats{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:34px;
}

.stat-box{
  min-width:150px;
  padding:20px;
  border-radius:18px;
  background:rgba(255,255,255,0.07);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.1);
}

.stat-box h3{
  font-size:32px;
  margin-bottom:6px;
  color:#fff;
}

.stat-box p{
  color:rgba(255,255,255,0.7);
  font-size:14px;
}

/* HIGHLIGHTS */

.hero-highlights{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-bottom:38px;
}

.hero-hl-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:8px;
  border-radius:10px;
  background:rgb(0 0 0 / 78%);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  transition:0.35s;
}

.hero-hl-item:hover{
  transform:translateY(-5px);
  background:rgba(255,255,255,0.11);
}

.hero-hl-icon{
  width:48px;
  height:48px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  flex-shrink:0;
}

.hl-blue{
  background:rgba(0,174,239,0.18);
  color:#4fd8ff;
}

.hl-pink{
  background:rgba(233,30,140,0.16);
  color:#ff77c8;
}

.hl-green{
  background:rgba(0,166,81,0.18);
  color:#5df0a0;
}

.hl-orange{
  background:rgba(247,148,29,0.18);
  color:#ffbb69;
}

.hero-hl-text{
  font-size:12px;
  font-weight:600;
  color:#fff;
  line-height:1.4;
  font-family: 'Rajdhani';
}

/* BUTTONS */

.hero-btns{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn-primary{
     padding: 10px 20px;
    border-radius: 4px;
    background: #003087;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
 box-shadow: 6px 4px 5px #c9a84c;
}

.btn-primary:hover{
  transform:translateY(-4px);
}

.btn-outline{
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #25d366 !important;
    backdrop-filter: blur(10px);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
       box-shadow: 6px 4px 5px #c9a84c;
}

.btn-outline:hover{
  background:#fff;
  color:#000;
}

.overview-cta-row{
  display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

/* FORM CARD */

.hero-form-card{
  background:rgba(13,13,13,0.75);
  backdrop-filter:blur(22px);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:28px;
  padding:38px;
  color:#fff;
  box-shadow:0 30px 80px rgba(0,0,0,0.45);
}

.form-top-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:100px;
  background:rgba(201,168,76,0.15);
  border:1px solid rgba(201,168,76,0.35);
  color:#f3d06f;
  font-size:12px;
  font-weight:700;
  margin-bottom:18px;
}

.hero-form-card h3{
  font-size:34px;
  margin-bottom:10px;
}

.hero-form-card p{
  color:rgba(255,255,255,0.7);
  margin-bottom:26px;
  line-height:1.6;
}

.form-group{
  margin-bottom:7px;
}

.form-group label{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  color:rgba(255,255,255,0.85);
}

.form-group input,
.form-group select{
  width:100%;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.06);
  padding:0 18px;
  color:#fff;
  outline:none;
  font-size:15px;
}

.form-group input::placeholder{
  color:rgba(255,255,255,0.4);
}

.form-submit{
  width:100%;
  height:58px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,#c99d2d,#f3d06f);
  color:#000;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  transition:0.3s;
  margin-top:10px;
}

.form-submit:hover{
  transform:translateY(-3px);
}

.form-trust{
  display:flex;
  justify-content:space-between;
  margin-top:20px;
  color:rgba(255,255,255,0.6);
  font-size:13px;
}

/* MOBILE */

@media(max-width:991px){

  .hero-inner{
    grid-template-columns:1fr;
    padding-top:110px;
    gap:40px;
  }

  .hero h1{
    font-size:46px;
  }

  .hero-highlights{
    grid-template-columns:1fr;
  }

  .hero-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  .hero-form-card{
    padding:28px;
  }

}

@media(max-width:576px){

  .hero{
    min-height:auto;
  }

  .hero-inner{
    padding:100px 18px 50px;
  }

  .hero h1{
    font-size:38px;
    line-height:1.1;
  }

  .hero-sub{
    font-size:16px;
    text-align: center;
  }

  .hero-stats{
    grid-template-columns:1fr;
  }

  .btn-primary,
  .btn-outline{
    width:100%;
    justify-content:center;
  }

  .hero-form-card h3{
    font-size:28px;
  }

}
/* Hero Form */
.hero-form-card {
  background: white; border-radius: 20px; padding: 22px 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: fadeInRight 1s ease 0.3s both; position: relative; overflow: hidden;
}
.hero-form-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-pink), var(--gold));
}
.hero-form-card h3 {
  font-family:'Playfair Display',serif; font-size: 22px; color: var(--primary);
  margin-bottom: 4px; font-weight: 700;
}
.hero-form-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.form-group { margin-bottom: 7px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select {
  width: 100%; padding: 7px 16px; border: 1.5px solid #e5e7eb;
  border-radius: 8px; font-family: 'Lato', sans-serif; font-size: 14px;
  color: var(--text); transition: border-color 0.2s; outline: none;
  background: #f9fafb;
  height: 50px;
}
.form-group input:focus, .form-group select:focus { border-color: var(--primary); background: white; }
.form-submit {
  width: 100%; background: var(--gradient-primary); color: white; border: none;
  padding: 16px; border-radius: 10px; font-family:'Rajdhani',sans-serif;
  font-weight: 700; font-size: 16px; letter-spacing: 0.5px; cursor: pointer;
  transition: all 0.3s; margin-top: 6px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,48,135,0.35); }
.form-note { text-align: center; font-size: 11px; color: var(--text-muted); margin-top: 10px; }
.form-note i { color: var(--accent-green); }

/* ===== TICKER ===== */
.ticker-bar {
  background: var(--gradient-accent); padding: 10px 0; overflow: hidden;
}
.ticker-inner {
  display: flex; gap: 0; animation: ticker 30s linear infinite; white-space: nowrap;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px; padding: 0 40px;
  color: white; font-family: 'Rajdhani',sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: 0.5px;
}
.ticker-item i { font-size: 12px; opacity: 0.7; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== SECTIONS ===== */
.section { padding: 90px 134px; }
.section-light { background: var(--light); }
.section-dark { background: #032057; color: white; }
.container { max-width: 1320px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,48,135,0.08); color: var(--primary);
  padding: 6px 16px; border-radius: 50px; font-family: 'Rajdhani',sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag-light {
  background: rgba(201,168,76,0.15); color: var(--gold);
}
h2.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 46px);color: #06235b;
  font-weight: 800; line-height: 1.15; margin-bottom: 16px;padding: 17px 0px;
}
.title-line {
  width: 60px; height: 4px; background: var(--gradient-accent);
  border-radius: 2px; margin: 0 0 24px;
}

/* ===== OVERVIEW ===== */
/* =========================================
   OVERVIEW SECTION PREMIUM
========================================= */

/* =========================================
   SMALL CLASSIC LUXURY BOXES
========================================= */

.overview-points{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:40px;
}

.ov-point{
  position:relative;
  background:#fff;
  border-radius:5px;
  padding:27px 5px;
  text-align:center;
  border:1px solid rgba(0,0,0,0.06);
  transition:0.35s ease;
  overflow:hidden;
  box-shadow:0 4px 14px rgba(0,0,0,0.04);
}

/* TOP LINE */

.ov-point::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:55px;
  height:2px;
  border-radius:20px;
  background:#003087;
  transition:0.35s;
}

.ov-point:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 24px rgba(0,0,0,0.08);
}

.ov-point:hover::before{
  width:90px;
}

/* ICON */

.ov-icon{
  width:46px;
  height:46px;
  margin:0 auto 16px;
  border-radius:9px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  background:#f8f5ef;
  color:#b08d57;
  border:1px solid rgba(176,141,87,0.14);
  transition:0.35s;
}

.ov-point:hover .ov-icon{
  background:#e63329;
  color:#fff;
}

/* REMOVE COLORFUL LOOK */

.ov-icon-1,
.ov-icon-2,
.ov-icon-3,
.ov-icon-4,
.ov-icon-5,
.ov-icon-6,
.ov-icon-7,
.ov-icon-8{
  background:#003087;
  color:#fff;
}

/* TITLE */

.ov-point h3{
  font-size:17px;
  line-height:1.4;
  margin-bottom:10px;
  color:#1d2230;
  font-weight:700;
  font-family:'Playfair Display', serif;
}

/* DESCRIPTION */

.ov-point p{
  font-size:13px;
  line-height:1.7;
  color:#6c7380;
  margin:0;
}

/* TABLET */

@media(max-width:1100px){

  .overview-points{
    grid-template-columns:repeat(2,1fr);
  }

}

/* MOBILE */

@media(max-width:767px){

  .overview-points{
    grid-template-columns:1fr 1fr;
  }

  .ov-point{
    padding:17px 12px;
  }

}


/* ===== PRICE SECTION ===== */
.price-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
  margin-top: 48px;
}
.price-card {
  background: white; border-radius: 20px; padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); text-align: center;
  transition: all 0.35s; position: relative; overflow: hidden;
  border: 2px solid transparent;
}
.price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.pc-1::before { background: var(--primary); }
.pc-2::before { background: var(--gradient-accent); }
.pc-3::before { background: linear-gradient(90deg, var(--accent-green), var(--accent-teal)); }
.pc-4::before { background: var(--gradient-gold); }
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(0,48,135,0.1); }
.price-card-icon {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.pci-1 { background: rgba(0,48,135,0.1); color: var(--primary); }
.pci-2 { background: rgba(230,51,41,0.1); color: var(--secondary); }
.pci-3 { background: rgba(0,166,81,0.1); color: var(--accent-green); }
.pci-4 { background: rgba(201,168,76,0.15); color: var(--gold); }
.price-card h3 { font-family:'Rajdhani',sans-serif; font-size:18px; font-weight:700; color:var(--text); margin-bottom:8px; }
.price-card .price-range {
  font-family:'Playfair Display',serif; font-size:26px; font-weight:800;
  color: var(--primary); margin-bottom: 6px; line-height: 1.1;
}
.price-card .price-size { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.price-card ul { list-style: none; text-align: left; margin-bottom: 24px; }
.price-card ul li {
  padding: 7px 0; border-bottom: 1px solid #f3f4f6; font-size: 14px;
  color: var(--text-muted); display: flex; align-items: center; gap: 8px;
}
.price-card ul li i { color: var(--accent-green); font-size: 12px; }
.price-card ul li:last-child { border: none; }
.btn-price {
  display: block; width: 100%; padding: 13px; border-radius: 10px;
  background: var(--gradient-primary); color: white; text-decoration: none;
  font-family:'Rajdhani',sans-serif; font-weight:700; font-size:14px;
  letter-spacing:0.5px; text-align:center; transition:all 0.3s;
  cursor: pointer; border: none;
}
.btn-price:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,48,135,0.3); }
.price-disclaimer { text-align:center; font-size:12px; color:var(--text-muted); margin-top:24px; }

/* ===== FLOOR PLAN ===== */



/* =========================================
   PREMIUM FLOOR PLAN SECTION
========================================= */

.floor-section{
  background:#f8f7f4;
  position:relative;
}

/* GRID */

.floor-modern-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:55px;
}

/* CARD */

.floor-card{
  position:relative;
  height:420px;
  border-radius:24px;
  overflow:hidden;
  background:#000;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  transition:0.45s ease;
}

.floor-card:hover{
  transform:translateY(-10px);
  box-shadow:0 18px 45px rgba(0,0,0,0.15);
}

/* BG IMAGE */

.floor-card-bg{
  position:absolute;
  inset:0;
}

.floor-card-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:blur(2px);
  transform:scale(1.08);
  transition:0.5s;
}

.floor-card:hover .floor-card-bg img{
  transform:scale(1.15);
  filter:blur(2px);
}

/* DARK OVERLAY */

.floor-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(to top, rgba(0, 0, 0, 0.88) 10%, rgb(0 0 0 / 59%) 55%, rgba(0, 0, 0, 0.2) 100%);
}

/* CONTENT */

.floor-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:30px 24px;
  color:#fff;
  text-align:left;
}

/* TAG */

.floor-tag{
  display:inline-flex;
  width:max-content;
  padding:8px 14px;
  border-radius:50px;
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.14);
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:18px;
}

/* TITLE */

.floor-content h3{
  font-size:28px;
  line-height:1.2;
  margin-bottom:12px;
  font-family:'Playfair Display', serif;
}

/* TEXT */

.floor-content p{
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,0.74);
  margin-bottom:22px;
}

/* BUTTON */

.floor-btn{
  width:max-content;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 22px;
  border-radius:14px;
  background:#fff;
  color:#111;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:0.35s;
}

.floor-btn:hover{
  background:var(--gold);
  color:#fff;
  transform:translateY(-3px);
}

/* MASTER CARD */

.master-card{
  background:#111;
}

/* TABLET */

@media(max-width:1200px){

  .floor-modern-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

/* MOBILE */

@media(max-width:767px){

  .floor-modern-grid{
    grid-template-columns:1fr;
  }

  .floor-card{
    height:360px;
  }

  .floor-content{
    padding:24px 20px;
  }

  .floor-content h3{
    font-size:24px;
  }

}
/* ===== AMENITIES ===== */
.amenities-grid {
  display:grid; grid-template-columns:repeat(auto-fill, minmax(165px,1fr)); gap:15px;
  margin-top:48px;
}
.amenity-card {
  background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 13px 10px;
    text-align: center;
    transition: all 0.35s;
    cursor: default;
}
.amenity-card:hover {
  background:rgba(255,255,255,0.1); transform:translateY(-6px);
  border-color:rgba(201,168,76,0.4); box-shadow:0 12px 36px rgba(0,0,0,0.3);
}
.amenity-icon {
  width: 45px;
    height: 45px;
    border-radius: 4px; margin:0 auto 14px;
  display:flex; align-items:center; justify-content:center; font-size:26px;
}
.amenity-card h4 {
  font-family:'Rajdhani',sans-serif; font-weight:700; font-size:13px;
  color:rgba(255,255,255,0.9); letter-spacing:0.3px;
}

/* ===== HIGHLIGHT STRIP ===== */
.project-highlights-section{
padding: 60px 10px;
}
.highlights-wrapper{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:35px;
  align-items:start;
}

.highlights-content{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.highlight-card{
  display:flex;
  align-items:flex-start;
  gap:14px;
  background:#fff;
  padding:22px;
  border-radius:4px;
  border:1px solid #ececec;
  transition:0.3s ease;
  box-shadow:0 8px 25px rgba(0,0,0,0.04);
}

.highlight-card:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.highlight-icon{
min-width: 58px;
    width: 58px;
    height: 100%;
    border-radius: 4px;
    background: #0d2b7e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.highlight-info h4{
  font-size:23px;
  line-height:1.3;
  margin-bottom:4px;
  color:#111;
  font-weight:700;
font-family: 'Optima';
}

.highlight-info p{
  margin:0;
  font-size:13px;
  line-height:1.7;
  color:#666;
}

.highlights-image img{
  width:100%;
  height:405px;
  object-fit:cover;
  border-radius:4px;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

@media(max-width:991px){

  .highlights-wrapper{
    grid-template-columns:1fr;
  }

  .highlights-content{
    grid-template-columns:1fr;
  }

  .highlights-image img{
    height:auto;
    margin-top:10px;
  }
}



/* ===== LOCATION ===== */
.location-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:end; }
.location-points { display:flex; flex-direction:column; gap:16px; margin-top:14px; }
.loc-point {
  display:flex; gap:14px; align-items:center; padding:16px 18px;
  background:white; border-radius:12px; box-shadow:0 2px 12px rgba(0,0,0,0.07);
  transition:all 0.3s;
}
.loc-point:hover { transform:translateX(6px); box-shadow:0 6px 20px rgba(0,0,0,0.12); }
.loc-dot {
  width:36px; height:36px; border-radius:50%; display:flex;
  align-items:center; justify-content:center; flex-shrink:0; font-size:14px;
}
.loc-dot-1 { background:rgba(0,48,135,0.1); color:var(--primary); }
.loc-dot-2 { background:rgba(230,51,41,0.1); color:var(--secondary); }
.loc-dot-3 { background:rgba(0,166,81,0.1); color:var(--accent-green); }
.loc-dot-4 { background:rgba(0,174,239,0.1); color:var(--accent-teal); }
.loc-dot-5 { background:rgba(247,148,29,0.1); color:var(--accent-orange); }
.loc-dot-6 { background:rgba(201,168,76,0.15); color:var(--gold); }
.loc-text { font-family:'Rajdhani',sans-serif; font-size:15px; font-weight:600; color:var(--text); }
.loc-dist { font-size:13px; color:var(--text-muted); }
.location-map {
  border-radius:4px; overflow:hidden; box-shadow:var(--shadow-lg);
  height:430px; background:#e8f0fe; position:relative;
}
.location-map iframe { width:100%; height:100%; border:none; }

/* ===== ABOUT DEVELOPER ===== */
.dev-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.dev-stats { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin:28px 0; }
.dev-stat {
  background:white; border-radius:14px; padding:24px; text-align:center;
  box-shadow:0 4px 16px rgba(0,0,0,0.07); transition:all 0.3s;
}
.dev-stat:hover { transform:translateY(-4px); }
.dev-stat .ds-num {
  font-family:'Playfair Display',serif; font-size:38px; font-weight:900;
  background:var(--gradient-primary); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text; line-height:1;
}
.dev-stat .ds-label { font-size:13px; color:var(--text-muted); margin-top:4px; }

/* ===== FOOTER FORM ===== */
.footer-form-section {
  background: #000000; padding: 80px 24px;
}
.footer-form-inner {
  max-width:600px; margin:0 auto; text-align:center;
}
.footer-form-card {
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1);
  border-radius:24px; padding:50px 40px; margin-top:36px;
  position:relative; overflow:hidden;

}
.footer-form-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--primary),var(--accent-pink),var(--gold));
}
.footer-form-card .form-group input,
.footer-form-card .form-group select {
    background: rgb(255 255 255 / 11%);
    border-color: rgb(255 255 255 / 47%);
    color: white;
    height: 55px;
}
.footer-form-card .form-group input::placeholder { color:rgba(255,255,255,0.4); }
.footer-form-card .form-group label { color:rgba(255,255,255,0.6); }
.footer-form-card .form-group select option { background:#1a1a2e; color:white; }

/* ===== FOOTER ===== */

/* ===== DISCLAIMER ===== */
.disclaimer {
  background:#050a15; padding:28px 24px;
  border-top:1px solid rgba(255,255,255,0.05);
}
.disclaimer p {
  max-width:1200px; margin:0 auto; font-size:11px; line-height:1.8;
  color:rgba(255,255,255,0.3); text-align:center;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
@keyframes slideInLeft { from{opacity:0;transform:translateX(-20px)} to{opacity:1;transform:translateX(0)} }

/* ===== FLASH/PULSE ANIMATIONS ===== */
.flash-badge {
  display:inline-block; background:var(--secondary); color:white;
  padding:3px 10px; border-radius:4px; font-size:11px; font-weight:700;
  letter-spacing:0.5px; text-transform:uppercase; margin-left:8px;
  animation:flashBadge 1.5s ease infinite;
}
@keyframes flashBadge { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.7;transform:scale(0.95)} }

.glow-text { animation:glowText 2s ease infinite; }
@keyframes glowText { 0%,100%{text-shadow:0 0 20px rgba(201,168,76,0)} 50%{text-shadow:0 0 30px rgba(201,168,76,0.5)} }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity:1; transform:translateY(32px); transition:all 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:1; transform:translateX(-32px); transition:all 0.7s ease; }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:1; transform:translateX(32px); transition:all 0.7s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* ===== MASTER PLAN ===== */
.master-plan-wrap {
  background: linear-gradient(135deg, #001a4e, #003087);
  border-radius: 24px; padding: 48px; color: white;
  position: relative; overflow: hidden; margin-top: 48px;
}
.master-plan-wrap::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at 70% 30%, rgba(0,174,239,0.15), transparent 50%);
}
.mp-inner { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; position:relative; z-index:1; }
.mp-content h3 { font-family:'Playfair Display',serif; font-size:32px; margin-bottom:12px; }
.mp-content p { color:rgba(255,255,255,0.7); line-height:1.7; margin-bottom:24px; }
.mp-zones { display:flex; flex-direction:column; gap:10px; }
.mp-zone {
  display:flex; align-items:center; gap:12px; padding:12px 16px;
  background:rgba(255,255,255,0.06); border-radius:10px;
  font-family:'Rajdhani',sans-serif; font-size:14px; font-weight:600;
}
.zone-color { width:14px; height:14px; border-radius:50%; flex-shrink:0; }
.mp-image-wrap {
  background:rgba(255,255,255,0.05); border-radius:16px; overflow:hidden;
  aspect-ratio:4/3; display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,0.1); position:relative;
}
.mp-image-placeholder {
  display:flex; flex-direction:column; align-items:center; gap:12px;
  color:rgba(255,255,255,0.3);
}
.mp-image-placeholder i { font-size:72px; }
.mp-image-placeholder span { font-family:'Rajdhani',sans-serif; font-size:14px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns:1fr 380px; gap:40px; }
  .overview-grid, .dev-grid, .floor-plan-grid, .strip-grid, .location-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .mp-inner { grid-template-columns:1fr; }
}
@media (max-width: 768px) {
  .header-inner { grid-template-columns:1fr auto; }
  nav { display:none; }
  .header-right { display:none; }
  .hamburger { display:flex; }
  .hero-inner { grid-template-columns:1fr; padding:80px 16px 40px; }
  .hero-form-card { max-width:100%; }
  .hero-highlights { grid-template-columns:1fr 1fr; }
  .floating-cta { display:none; }
  .mobile-bottom-cta { display:flex; }
  body { padding-bottom:64px; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .floor-specs { grid-template-columns:1fr 1fr; }
  .dev-stats { grid-template-columns:1fr 1fr; }
  .price-cards { grid-template-columns:1fr; }
  .popup-trigger-btn { display:none; }
  .amenities-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:480px) {
  .hero h1 { font-size:32px;text-align:center; }
  .hero-btns { flex-direction:column; }
  .hero-btns a { text-align:center; justify-content:center; }
  .footer-form-card { padding:32px 20px; }
  .master-plan-wrap { padding:28px 20px; }
}

@media screen and (max-width: 456px){
  .hero-tag {
    gap: 12px;
    padding: 10px 11px;
    font-size: 8px;
  }

  .logo-wrap img{
    height: 36px;
  }
  .header-inner{
    height: 60px;
  }
  .section{
    padding:30px 20px!important;
  }
  .ov-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    border-radius: 2px;}

    .ov-point h3{
      font-size: 14px;
    }
    .ov-point p{
      font-size: 11px;
    }
}

#locationidh2{
  font-size: 40px;
}

/* =========================
   PREMIUM POPUP
========================= */

.estate-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.75);
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    opacity:0;
    visibility:hidden;
    transition:0.4s ease;
    backdrop-filter:blur(5px);
}

.estate-popup-overlay.active{
    opacity:1;
    visibility:visible;
}

.estate-popup-box{
    width:100%;
    max-width:480px;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    position:relative;
    animation:estatePopup 0.5s ease;
    box-shadow:0 20px 70px rgba(0,0,0,0.35);
}

@keyframes estatePopup{

    from{
        transform:translateY(40px) scale(0.95);
        opacity:0;
    }

    to{
        transform:translateY(0) scale(1);
        opacity:1;
    }

}

.estate-popup-content{
    padding:38px 32px;
}

.estate-popup-close{
    position:absolute;
    top:12px;
    right:14px;
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    transition:0.3s ease;
}

.estate-popup-close:hover{
    transform:rotate(90deg);
}

.estate-popup-tag{
    display:inline-block;
    padding:8px 14px;
    background:#f3f3f3;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    color:#111;
    margin-bottom:16px;
}

.estate-popup-content h2{
    font-size:36px;
    line-height:1.2;
    margin-bottom:8px;
    color:#111;
    font-family: optima;
    font-weight:700;
}

.estate-popup-location{
    font-size:15px;
    color:#777;
    margin-bottom:20px;
}

.estate-popup-points{
    padding:0;
    margin:0 0 24px;
    list-style:none;
}

.estate-popup-points li{
    font-size:14px;
    color:#222;
    margin-bottom:10px;
    position:relative;
    padding-left:24px;
}

.estate-popup-points li:before{
    content:'✓';
    position:absolute;
    left:0;
    top:0;
    font-weight:700;
    color:#000;
}

.estate-popup-content .form-group{
    margin-bottom:8px;
}

.estate-popup-content input{
 width: 100%;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 0 16px;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

.estate-popup-content input:focus{
    border-color:#111;
}

.estate-consent{
    display:flex;
    align-items:flex-start;
    margin-top:12px;
}

.estate-consent input{
    width:16px;
    height:16px;
    margin-top:4px;
}

.estate-consent p{
    font-size:10px;
    line-height:17px;
    margin-left:8px;
    color:#555;
    margin-bottom:0;
}

.estate-popup-btn{
    width:100%;
    height:54px;
    border:none;
    border-radius:14px;
    background:#111;
    color:#fff;
    font-size:15px;
    font-weight:600;
    margin-top:18px;
    transition:0.3s ease;
}

.estate-popup-btn:hover{
    transform:translateY(-2px);
}

/* =========================
   MOBILE
========================= */

@media(max-width:575px){

    .estate-popup-content{
        padding:34px 22px;
    }

    .estate-popup-content h2{
        font-size:30px;
    }

}

.em{
display:none;
font-size:12px;
margin-top:5px;
color:#ff4d4d;
font-weight:500;
}

.em.show{
display:block;
}

.err{
border:1px solid #ff4d4d !important;
}


