/* ============================================================
   GR CORP – style.css
   Theme: Light Sky-Blue Hero + Dark Navy sections + Gold accents
   Matches reference image colour palette exactly
   ============================================================ */

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

:root {
  --navy:        #0d2350;
  --navy-dark:   #071630;
  --navy-mid:    #122b5e;
  --sky-blue:    #c8dff5;
  --sky-light:   #ddeefa;
  --gold:        #C9A84C;
  --gold-light:  #E2C97E;
  --gold-dark:   #A8862D;
  --white:       #ffffff;
  --off-white:   #f4f8fd;
  --muted:       #6b87a8;
  --green-wa:    #25D366;
  --green-dark:  #1aad54;
  --border-light: rgba(255,255,255,0.18);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --shadow-card: 0 8px 40px rgba(0,0,0,0.15);
  --trans: 0.24s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--navy-dark); overflow-x: hidden; line-height: 1.6; }
.gold-text { color: var(--gold); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   NAVBAR — white background with navy text, like reference
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  border-bottom: 2px solid rgba(201,168,76,0.25);
  box-shadow: 0 2px 16px rgba(13,35,80,0.10);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
  gap: 16px;
}

/* ---- LOGO: 5× larger than default ---- */
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }

.logo-img {
  height: 220px;   /* 5× of the old 44px baseline */
  width: auto;
  object-fit: contain;
  /* keep it from overflowing the navbar height */
  max-height: 72px;
}

.brand-fallback { display: flex; align-items: center; gap: 10px; }
.brand-icon-box { flex-shrink: 0; }
.brand-text-block { display: flex; flex-direction: column; }
.brand-name { font-size: 1.5rem; font-weight: 900; color: var(--navy); line-height: 1; }
.brand-name .gold-text { color: var(--gold); }
.brand-tagline { font-size: 0.62rem; color: var(--muted); letter-spacing: 0.06em; font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-contact {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.85rem; font-weight: 600; color: var(--navy-dark);
}
.nav-contact svg { color: var(--gold); flex-shrink: 0; }

.menu-toggle {
  display: none; background: none; border: 2px solid var(--navy);
  color: var(--navy); font-size: 1.2rem; padding: 5px 11px;
  border-radius: var(--radius-sm); cursor: pointer;
}

.mobile-nav {
  display: none; flex-direction: column; gap: 12px;
  background: var(--navy); padding: 14px 24px 18px;
}
.mobile-nav a { color: #fff; text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.mobile-nav.open { display: flex; }

/* ============================================================
   HERO — sky-blue gradient background + building photo
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  padding-top: 78px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #a8ccec 0%, #c8dff5 40%, #ddeefa 70%, #eef6fd 100%);
  overflow: hidden;
}

.hero-bg-img {
  position: absolute; inset: 0;
  background:
    url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1800&q=80')
    right center / 55% auto no-repeat;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(168,204,236,0.96) 0%,
    rgba(168,204,236,0.88) 38%,
    rgba(168,204,236,0.30) 65%,
    transparent 100%);
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 410px;
  gap: 48px; align-items: center;
  padding-top: 36px; padding-bottom: 56px;
}

/* Hero typography — dark navy on light bg like reference */
.hero-heading {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.hero-h1-navy { color: var(--navy-dark); }
.hero-h1-gold { color: var(--gold-dark); display: inline-block; }
.hero-cursor { color: var(--navy); font-weight: 300; margin-left: 4px; }

.hero-sub {
  font-size: 1rem; color: #2a3f6f; margin-bottom: 32px; line-height: 1.7; font-weight: 500;
}
.hero-sub .gold-text { color: var(--gold-dark); font-weight: 700; }

/* Price Cards — white cards with navy border, gold price */
.price-cards { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }

.price-card {
  background: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(13,35,80,0.12);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  min-width: 152px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(13,35,80,0.10);
  transition: transform var(--trans), box-shadow var(--trans);
  position: relative; overflow: hidden;
}
.price-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy-mid), #1e5098);
}
.price-card--gold::after { background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(13,35,80,0.18); }

.pc-top { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.pc-icon { font-size: 1.4rem; }
.pc-bhk { font-size: 1.1rem; font-weight: 800; color: var(--navy-dark); }
.pc-note { font-size: 0.62rem; font-weight: 700; color: var(--navy-mid); background: #e8f1fb; border-radius: 20px; padding: 2px 8px; display: inline-block; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.price-card--gold .pc-note { background: rgba(201,168,76,0.12); color: var(--gold-dark); }
.pc-from { font-size: 0.72rem; color: var(--muted); }
.pc-price { font-size: 1.35rem; font-weight: 800; color: var(--gold-dark); }

/* Feature Strip — matches reference: dark navy row with icons */
.feature-strip {
  display: flex; flex-wrap: wrap; gap: 0;
  background: var(--navy-dark);
  border-radius: var(--radius-md);
  padding: 12px 8px;
  margin-top: 8px;
}

.feat-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 6px;
  flex: 1; min-width: 80px; padding: 8px 6px;
}

.feat-icon-wrap {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background var(--trans);
}
.feat-item:hover .feat-icon-wrap { background: rgba(201,168,76,0.22); }

.feat-item span { font-size: 0.62rem; color: rgba(255,255,255,0.88); font-weight: 500; line-height: 1.35; }

/* ============================================================
   LEAD FORM — white card on right, dark header
   ============================================================ */
.hero-right { display: flex; align-items: flex-start; justify-content: flex-end; }

.lead-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 60px rgba(13,35,80,0.22);
  width: 100%; max-width: 390px;
  overflow: hidden;
  position: sticky; top: 94px;
}

.lead-card-header {
  background: var(--navy-dark);
  padding: 20px 28px;
  text-align: center;
}
.lead-card-header h2 {
  color: #fff; font-size: 1.15rem; font-weight: 800; letter-spacing: 0.1em;
}

.lead-card form { padding: 24px 28px 0; }

.field-wrap {
  position: relative; margin-bottom: 13px;
}
.field-ico {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: var(--muted); display: flex; align-items: center; z-index: 1;
}
.field-ico.rupee { font-size: 1rem; font-family: 'Poppins', sans-serif; }

.field-wrap input, .field-wrap select {
  width: 100%;
  border: 1.5px solid #d4dde8;
  border-radius: var(--radius-sm);
  padding: 12px 12px 12px 38px;
  font-family: 'Poppins', sans-serif; font-size: 0.87rem; color: var(--navy-dark);
  outline: none; background: #f8fbff;
  transition: border-color var(--trans), box-shadow var(--trans);
  -webkit-appearance: none; appearance: none;
}
.field-wrap input::placeholder { color: #9aafc4; }
.field-wrap select { color: #9aafc4; cursor: pointer; }
.field-wrap select.has-val { color: var(--navy-dark); }
.field-wrap select option { color: var(--navy-dark); background: #fff; }
.field-wrap input:focus, .field-wrap select:focus {
  border-color: var(--navy-mid); box-shadow: 0 0 0 3px rgba(13,35,80,0.08);
}

.select-field { position: relative; }
.sel-arrow { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; font-size: 0.85rem; }

.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: var(--green-wa);
  color: #fff; font-family: 'Poppins', sans-serif;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.06em;
  border: none; border-radius: var(--radius-sm);
  padding: 14px; cursor: pointer; margin-top: 4px;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-wa:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.45); }

.form-err { color: #e53e3e; font-size: 0.76rem; min-height: 16px; margin-top: -4px; margin-bottom: 4px; }
.form-secure { text-align: center; font-size: 0.72rem; color: var(--muted); padding: 12px 28px 18px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--navy-dark);
  border-top: 3px solid var(--gold);
  padding: 20px 0;
}

.trust-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}

.trust-left {
  display: flex; align-items: center; gap: 16px;
  flex: 1;
}
.trust-home-icon { font-size: 2.2rem; flex-shrink: 0; }
.trust-left p { font-size: 0.92rem; color: rgba(255,255,255,0.88); font-weight: 500; line-height: 1.5; }

.trust-right {
  display: flex; align-items: center; gap: 12px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius-md);
  padding: 14px 20px;
}
.trust-shield { font-size: 2rem; flex-shrink: 0; }
.trust-badge-text { font-size: 0.88rem; color: #fff; font-weight: 600; line-height: 1.5; }
.trust-badge-text strong { color: var(--gold-light); }

/* ============================================================
   NRI + TESTIMONIALS (2-col white section like reference)
   ============================================================ */
.nri-testi-section {
  background: var(--off-white);
  padding: 72px 0;
  border-bottom: 2px solid #dde8f5;
}

.nri-testi-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}

/* NRI col */
.nri-title {
  font-size: 1.7rem; font-weight: 900; color: var(--navy-dark);
  margin-bottom: 12px; text-transform: uppercase;
}
.nri-bar {
  display: inline-block; background: var(--navy-dark); color: #fff;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 7px 14px; border-radius: 4px;
  margin-bottom: 18px;
}
.nri-desc { font-size: 0.88rem; color: #4a5e82; line-height: 1.75; margin-bottom: 20px; }

.nri-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.nri-list li { display: flex; align-items: center; gap: 11px; font-size: 0.9rem; font-weight: 600; color: var(--navy-dark); }
.chk {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 900;
}

/* Globe decoration */
.nri-globe { position: relative; display: flex; align-items: center; gap: 20px; margin-top: 8px; }
.globe-anim { position: relative; width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ga-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(13,35,80,0.18);
  animation: ringPulse 3s ease-in-out infinite;
}
.r1 { width: 60px; height: 60px; animation-delay: 0s; }
.r2 { width: 86px; height: 86px; animation-delay: 0.8s; border-style: dashed; }
.ga-core { position: relative; z-index: 2; font-size: 2.4rem; }
@keyframes ringPulse { 0%,100%{opacity:.3;} 50%{opacity:.7;} }
.plane-dot { font-size: 1.6rem; color: var(--navy-mid); }

/* Testimonials col */
.testi-title {
  font-size: 1.35rem; font-weight: 900; color: var(--navy-dark);
  text-transform: uppercase; margin-bottom: 20px;
}

.testi-list { display: flex; flex-direction: column; gap: 14px; }

.testi-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border-radius: var(--radius-md);
  padding: 18px 20px;
  border: 1px solid #dde6f4;
  box-shadow: 0 2px 12px rgba(13,35,80,0.07);
  transition: box-shadow var(--trans), transform var(--trans);
}
.testi-card:hover { box-shadow: 0 6px 24px rgba(13,35,80,0.13); transform: translateY(-2px); }

.testi-avatar {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: #ddeefa; display: flex; align-items: center; justify-content: center;
}
.testi-body p { font-size: 0.84rem; color: #4a5e82; line-height: 1.65; margin-bottom: 7px; font-style: italic; }
.testi-body strong { font-size: 0.85rem; color: var(--gold-dark); font-weight: 700; }

/* ============================================================
   LOCATION
   ============================================================ */
.location-section {
  padding: 72px 0;
  background: #fff;
}

.location-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}

.loc-title {
  font-size: 2rem; font-weight: 900; color: var(--navy-dark);
  text-transform: uppercase; margin-bottom: 18px;
}

.loc-addr {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.96rem; font-weight: 700; color: var(--navy-dark);
  margin-bottom: 24px;
}
.loc-pin { font-size: 1.4rem; color: #e53e3e; }

.btn-visit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-dark); color: #fff;
  text-decoration: none; font-family: 'Poppins', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.07em;
  padding: 13px 22px; border-radius: var(--radius-sm);
  transition: background var(--trans), transform var(--trans);
  border: 2px solid var(--navy-dark);
}
.btn-visit:hover { background: var(--navy-mid); transform: translateY(-2px); }

.map-box {
  border-radius: var(--radius-md); overflow: hidden;
  border: 2px solid #d4dde8;
  box-shadow: var(--shadow-card);
}
.map-box iframe { display: block; width: 100%; height: 300px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-dark); padding: 52px 0 0; }

.footer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; padding-bottom: 48px;
}

.footer-col { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }

.ft-icon-circle {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1.5px solid rgba(201,168,76,0.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}

.ft-label { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.ft-val { font-size: 0.87rem; color: rgba(255,255,255,0.88); text-decoration: none; line-height: 1.65; }
.ft-val:hover { color: var(--gold-light); }
address.ft-val { font-style: normal; }

.footer-bottom {
  background: rgba(0,0,0,0.3); border-top: 1px solid rgba(201,168,76,0.15);
  padding: 18px 24px; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: waPulse 2.4s ease-in-out infinite;
  transition: transform var(--trans);
}
.float-wa:hover { transform: scale(1.12); animation: none; box-shadow: 0 6px 28px rgba(37,211,102,0.7); }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 18px rgba(37,211,102,0.4);} 50%{box-shadow:0 4px 34px rgba(37,211,102,0.75);} }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: 1fr 370px; }
  .nri-testi-inner { gap: 40px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { justify-content: center; }
  .hero-bg-img { background-size: cover; background-position: center; opacity: 0.25; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(168,204,236,0.92), rgba(168,204,236,0.75)); }
  .nri-testi-inner { grid-template-columns: 1fr; }
  .location-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .logo-img { max-height: 56px; }
  .hero-heading { font-size: 2rem; }
  .trust-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .feat-item { min-width: 70px; }
}

@media (max-width: 480px) {
  .hero-inner { gap: 28px; }
  .price-cards { flex-direction: column; }
  .price-card { width: 100%; }
  .lead-card { max-width: 100%; }
  .nri-title { font-size: 1.35rem; }
  .testi-title { font-size: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ga-ring, .float-wa { animation: none; }
  * { transition: none !important; }
}
