/* ═══════════════════════════════════════════════
   Mahaveer Riya Real Estate — style.css
═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #c9a55a;
  --gold-light: #e8c97a;
  --dark:       #0d0d0f;
  --dark2:      #141416;
  --dark3:      #1c1c20;
  --dark4:      #242428;
  --dark5:      #2e2e34;
  --mid:        #3c3c44;
  --light:      #f0ece4;
  --white:      #ffffff;
  --text-muted: #9d9ba4;
}

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  cursor: none;
}

section[id] { scroll-margin-top: 76px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ── CURSOR ── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%); transition: transform 0.15s;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  opacity: 0.5; transition: width 0.3s, height 0.3s, opacity 0.3s;
}

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, height 0.3s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(13,13,15,0.97); height: 60px;
  box-shadow: 0 2px 28px rgba(0,0,0,0.7); backdrop-filter: blur(14px);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-emblem {
  width: 44px; height: 44px; border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
}
.logo-emblem::before { content: ''; position: absolute; inset: 3px; border: 1px solid rgba(201,165,90,0.22); }
.logo-emblem span { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--gold); position: relative; z-index: 1; }
.logo-text .main { font-family: 'Cormorant Garamond', serif; font-size: 15.5px; font-weight: 700; color: var(--white); letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.2; }
.logo-text .sub  { font-size: 8px; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; }

.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 10px; font-weight: 500;
  color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase;
  position: relative; transition: color 0.3s; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 9px 20px; border: 1px solid var(--gold); background: transparent;
  color: var(--gold); font-family: 'Jost', sans-serif; font-size: 9px;
  font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  cursor: none; transition: background 0.3s, color 0.3s;
  text-decoration: none; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--dark); }

.nav-ham { display: none; flex-direction: column; gap: 5px; cursor: none; padding: 4px; }
.nav-ham span { display: block; width: 24px; height: 1.5px; background: var(--gold); }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(13,13,15,0.98); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--white); text-decoration: none; letter-spacing: 2px; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 26px; right: 26px; font-size: 22px; color: var(--gold); cursor: none; background: none; border: none; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  padding: 100px 5% 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1567157577867-05ccb1388e66?w=1800&q=80');
  background-size: cover; background-position: center;
  filter: brightness(0.25) saturate(0.65);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(13,13,15,0.94) 45%, rgba(13,13,15,0.3) 100%);
}
.hero-vline {
  position: absolute; top: 0; left: 5%; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent 8%, rgba(201,165,90,0.22) 38%, rgba(201,165,90,0.22) 72%, transparent 95%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}
.hero-content { max-width: 660px; }

.hero-badge { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px; opacity: 0; animation: fadeUp 0.8s 0.3s forwards; }
.hero-badge-line { width: 34px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-badge span { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 500; }

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 6.2vw, 86px);
  font-weight: 300; line-height: 1.05; color: var(--white);
  margin-bottom: 22px; opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
}
.hero-h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 13.5px; line-height: 1.9; color: var(--text-muted);
  max-width: 470px; margin-bottom: 42px; font-weight: 300;
  opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
}
.hero-actions {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 0.9s forwards;
}
.btn-primary {
  padding: 14px 36px; background: var(--gold); color: var(--dark);
  font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; transition: background 0.3s, transform 0.2s;
  cursor: none; white-space: nowrap; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  padding: 14px 36px; border: 1px solid rgba(201,165,90,0.42); color: var(--gold);
  font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; transition: border-color 0.3s, background 0.3s;
  cursor: none; white-space: nowrap; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,165,90,0.07); }

.hero-stats {
  display: flex; opacity: 0; animation: fadeUp 1s 1.1s forwards;
  flex-shrink: 0; border: 1px solid rgba(201,165,90,0.18);
}
.stat-item { text-align: center; padding: 22px 32px; border-right: 1px solid rgba(201,165,90,0.18); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: var(--gold); line-height: 1; display: block; }
.stat-label { font-size: 8px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 7px; display: block; }

.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s 1.7s forwards;
}
.scroll-text { font-size: 8px; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; }
.scroll-line { width: 1px; height: 42px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s infinite; }

/* ══════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════ */
.marquee-wrap { background: var(--gold); padding: 12px 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 35s linear infinite; white-space: nowrap; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 12px; padding: 0 26px;
  font-size: 9px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--dark); flex-shrink: 0;
}
.marquee-dot { width: 3px; height: 3px; background: rgba(0,0,0,0.3); border-radius: 50%; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════════ */
.sec-pad { padding: 110px 5%; }

.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.section-label .line { width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-label span { font-size: 9px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; font-weight: 500; }
.section-label.center { justify-content: center; }

.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 300; line-height: 1.15; color: var(--white); margin-bottom: 18px;
}
.section-h2 em { font-style: italic; color: var(--gold); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { font-size: 13px; color: var(--text-muted); max-width: 460px; margin: 0 auto; line-height: 1.85; font-weight: 300; }

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
#about { background: var(--dark2); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-img-wrap { position: relative; padding: 22px 0 60px 22px; }
.about-corner { position: absolute; top: 0; left: 0; width: 64px; height: 64px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.about-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center; display: block; filter: brightness(0.82) saturate(0.82); }
.about-img-accent { position: absolute; bottom: 0; right: 0; width: 50%; aspect-ratio: 1; object-fit: cover; display: block; border: 5px solid var(--dark2); filter: brightness(0.85); }
.year-badge { position: absolute; top: 50px; left: 0; transform: translateX(-16px); background: var(--gold); padding: 16px 15px; text-align: center; z-index: 2; }
.year-badge .yr { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; color: var(--dark); line-height: 1; display: block; }
.year-badge .since { font-size: 7.5px; letter-spacing: 2px; color: var(--dark); display: block; text-transform: uppercase; font-weight: 600; margin-top: 4px; }

.about-body { font-size: 13px; line-height: 1.95; color: var(--text-muted); font-weight: 300; margin-bottom: 16px; }
.about-owner { margin-top: 34px; padding: 20px 22px; border: 1px solid var(--dark5); display: flex; align-items: center; gap: 16px; background: var(--dark3); }
.owner-av { width: 54px; height: 54px; flex-shrink: 0; background: var(--dark5); border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; }
.owner-av i { font-size: 21px; color: var(--gold); }
.owner-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--white); }
.owner-title { font-size: 8.5px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-top: 3px; }

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
#services { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { background: var(--dark3); padding: 44px 30px; position: relative; overflow: hidden; transition: background 0.4s; cursor: none; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.service-card:hover { background: var(--dark4); }
.service-card:hover::after { transform: scaleX(1); }
.svc-num { font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 300; color: rgba(201,165,90,0.07); position: absolute; top: 10px; right: 14px; line-height: 1; pointer-events: none; transition: color 0.4s; }
.service-card:hover .svc-num { color: rgba(201,165,90,0.13); }
.svc-icon { width: 50px; height: 50px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: background 0.3s; }
.service-card:hover .svc-icon { background: var(--gold); }
.svc-icon i { font-size: 18px; color: var(--gold); transition: color 0.3s; }
.service-card:hover .svc-icon i { color: var(--dark); }
.svc-title { font-family: 'Cormorant Garamond', serif; font-size: 23px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.svc-desc { font-size: 12.5px; line-height: 1.85; color: var(--text-muted); font-weight: 300; }

/* ══════════════════════════════════════════════
   PROJECTS
══════════════════════════════════════════════ */
#projects { background: var(--dark2); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card { position: relative; overflow: hidden; cursor: none; }
.project-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; transition: transform 0.7s, filter 0.5s; filter: brightness(0.65) saturate(0.72); }
.project-card:hover img { transform: scale(1.07); filter: brightness(0.42) saturate(0.5); }
.proj-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 35%, transparent 65%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px 22px; }
.proj-tag { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-weight: 500; }
.proj-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--white); line-height: 1.2; }
.proj-loc { font-size: 10px; color: var(--text-muted); margin-top: 5px; display: flex; align-items: center; gap: 5px; }
.proj-loc i { color: var(--gold); font-size: 9px; }
.proj-hover { position: absolute; inset: 0; background: rgba(0,0,0,0.83); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; padding: 26px; opacity: 0; transition: opacity 0.4s; }
.project-card:hover .proj-hover { opacity: 1; }
.proj-hover-text { font-size: 11.5px; line-height: 1.8; color: var(--text-muted); text-align: center; font-weight: 300; }

/* ══════════════════════════════════════════════
   AREAS
══════════════════════════════════════════════ */
#areas { background: var(--dark); position: relative; overflow: hidden; }
.areas-bg-img { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1599658880436-c61792e70672?w=1600&q=80'); background-size: cover; background-position: center; opacity: 0.03; }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; position: relative; }
.area-item { padding: 30px 22px; background: var(--dark3); position: relative; overflow: hidden; transition: background 0.3s; cursor: none; }
.area-item:hover { background: var(--dark4); }
.area-item::after { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--gold); transition: height 0.4s; }
.area-item:hover::after { height: 100%; }
.area-icon { font-size: 15px; color: var(--gold); margin-bottom: 12px; opacity: 0.6; display: block; }
.area-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--white); }
.area-type { font-size: 9px; letter-spacing: 1.5px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; }

/* ══════════════════════════════════════════════
   PORTALS
══════════════════════════════════════════════ */
#portals { background: var(--dark2); }
.portals-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; margin-top: 52px; }
.portal-card { background: var(--dark3); padding: 36px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; transition: background 0.35s; cursor: none; position: relative; overflow: hidden; }
.portal-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform 0.4s; }
.portal-card:hover { background: var(--dark4); }
.portal-card:hover::after { transform: scaleX(1); }
.portal-icon-box { width: 62px; height: 62px; border: 1px solid var(--dark5); background: var(--dark4); display: flex; align-items: center; justify-content: center; transition: border-color 0.3s; }
.portal-card:hover .portal-icon-box { border-color: var(--gold); }
.p-logo { width: 42px; height: 42px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: 0.5px; }
.p-99      { background: linear-gradient(135deg, #d43424, #b02516); }
.p-housing { background: linear-gradient(135deg, #1c7ee5, #0d5dc7); }
.p-magic   { background: linear-gradient(135deg, #e8760a, #c45e00); font-size: 11px; }
.p-nobroker{ background: linear-gradient(135deg, #2ab557, #1a8e40); font-size: 11px; }
.p-prop    { background: linear-gradient(135deg, #9b42c8, #7025a8); font-size: 11px; }
.portal-name { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; color: var(--white); }
.portal-tag  { font-size: 8.5px; letter-spacing: 1.5px; color: var(--text-muted); text-transform: uppercase; }
.portal-badge { display: inline-block; padding: 2px 10px; background: rgba(201,165,90,0.1); border: 1px solid rgba(201,165,90,0.28); font-size: 7.5px; letter-spacing: 1.5px; color: var(--gold); text-transform: uppercase; }

.trust-strip { margin-top: 30px; padding: 22px 0; border-top: 1px solid var(--dark5); border-bottom: 1px solid var(--dark5); display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 12px 32px; border-right: 1px solid var(--dark5); }
.trust-item:last-child { border-right: none; }
.trust-item i { font-size: 17px; color: var(--gold); flex-shrink: 0; }
.trust-item-label { font-size: 10.5px; font-weight: 600; color: var(--white); letter-spacing: 0.5px; }
.trust-item-sub { font-size: 9.5px; color: var(--text-muted); margin-top: 2px; }

/* ══════════════════════════════════════════════
   PARTNERS
══════════════════════════════════════════════ */
#partners { background: var(--dark); }
.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; margin-top: 52px; }
.partner-card { background: var(--dark3); padding: 34px 18px; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: background 0.3s; cursor: none; text-align: center; }
.partner-card:hover { background: var(--dark4); }
.partner-icon { width: 52px; height: 52px; border: 1px solid var(--dark5); display: flex; align-items: center; justify-content: center; background: var(--dark4); transition: border-color 0.3s; }
.partner-card:hover .partner-icon { border-color: var(--gold); }
.partner-icon i { font-size: 19px; color: var(--gold); }
.partner-name { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 600; color: var(--white); }

/* ══════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════ */
#gallery { background: var(--dark2); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 10px; margin-top: 52px; }
.gallery-item { overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s, filter 0.4s; filter: brightness(0.75) saturate(0.75); }
.gallery-item:hover img { transform: scale(1.07); filter: brightness(0.98) saturate(1); }
.gi-wide { grid-column: span 2; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
#testimonials { background: var(--dark); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi-card { padding: 36px 28px; background: var(--dark3); border: 1px solid var(--dark5); transition: border-color 0.3s, background 0.3s; cursor: none; }
.testi-card:hover { border-color: rgba(201,165,90,0.28); background: var(--dark4); }
.testi-q { font-family: 'Cormorant Garamond', serif; font-size: 68px; color: var(--gold); line-height: 0.6; opacity: 0.16; margin-bottom: 10px; display: block; }
.testi-text { font-size: 13px; line-height: 1.9; color: var(--text-muted); font-weight: 300; font-style: italic; margin-bottom: 22px; }
.testi-stars { color: var(--gold); font-size: 10px; letter-spacing: 3px; margin-bottom: 16px; }
.testi-rule { width: 28px; height: 1px; background: var(--dark5); margin-bottom: 16px; }
.testi-author { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--white); font-weight: 600; }
.testi-role { font-size: 8.5px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-top: 3px; }

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
#contact { background: var(--dark2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 64px; margin-top: 52px; align-items: start; }
.contact-h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; color: var(--white); margin-bottom: 14px; }
.contact-h3 em { font-style: italic; color: var(--gold); }
.contact-desc { font-size: 13px; line-height: 1.9; color: var(--text-muted); margin-bottom: 32px; font-weight: 300; }
.contact-row { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 22px; }
.contact-icon { width: 40px; height: 40px; flex-shrink: 0; border: 1px solid var(--dark5); display: flex; align-items: center; justify-content: center; background: var(--dark3); }
.contact-icon i { font-size: 14px; color: var(--gold); }
.contact-lbl { font-size: 8px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; display: block; }
.contact-val { font-size: 13px; color: var(--light); line-height: 1.75; }
.contact-val a { color: var(--light); text-decoration: none; transition: color 0.2s; }
.contact-val a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 13px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 8px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.fg input,
.fg select,
.fg textarea {
  background: var(--dark3); border: 1px solid var(--dark5);
  color: var(--light); font-family: 'Jost', sans-serif; font-size: 13px;
  padding: 12px 15px; outline: none; width: 100%;
  transition: border-color 0.3s; -webkit-appearance: none; appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--mid); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg textarea { resize: vertical; min-height: 110px; }
select option { background: var(--dark3); color: var(--light); }

.submit-btn {
  padding: 14px 36px; background: var(--gold); color: var(--dark);
  font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  border: none; cursor: none; transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
}
.submit-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.submit-btn:disabled { opacity: 0.7; transform: none; }

.form-success {
  display: none; padding: 12px 16px;
  background: rgba(201,165,90,0.08); border: 1px solid var(--gold);
  color: var(--gold); font-size: 12px;
}
.form-error {
  display: none; padding: 12px 16px;
  background: rgba(220,50,50,0.08); border: 1px solid #c0392b;
  color: #e74c3c; font-size: 12px;
}

.map-wrap { margin-top: 68px; width: 100%; height: 320px; filter: grayscale(1) brightness(0.75) sepia(0.15); overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer { background: var(--dark); border-top: 1px solid var(--dark5); padding: 60px 5% 26px; }
.footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.1fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid var(--dark5); }
.footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 16px; }
.footer-about { font-size: 12.5px; line-height: 1.85; color: var(--text-muted); font-weight: 300; }
.footer-socials { display: flex; gap: 9px; margin-top: 20px; }
.social-btn { width: 33px; height: 33px; border: 1px solid var(--dark5); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 12px; text-decoration: none; transition: border-color 0.3s, color 0.3s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--white); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 11.5px; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-links span { font-size: 11.5px; color: var(--text-muted); line-height: 1.7; display: block; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; flex-wrap: wrap; gap: 8px; }
.footer-copy, .footer-est { font-size: 10px; color: var(--mid); }

/* ══════════════════════════════════════════════
   FIXED BUTTONS
══════════════════════════════════════════════ */
.back-top {
  position: fixed; bottom: 26px; right: 26px;
  width: 44px; height: 44px; background: var(--gold); color: var(--dark);
  border: none; cursor: none; z-index: 900;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  opacity: 0; transform: translateY(12px); transition: opacity 0.3s, transform 0.3s, background 0.3s;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--gold-light); }

.wa-float {
  position: fixed; bottom: 80px; right: 26px;
  display: flex; align-items: center; gap: 9px;
  background: var(--dark3); border: 1px solid var(--gold);
  padding: 8px 13px; z-index: 900; cursor: none;
  transition: background 0.3s; text-decoration: none;
}
.wa-float:hover { background: var(--dark4); }
.wa-float i { color: #25d366; font-size: 15px; }
.wa-float span { font-size: 11px; color: var(--light); font-weight: 500; }

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes fadeUp   { from{opacity:0;transform:translateY(26px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn   { from{opacity:0;} to{opacity:1;} }
@keyframes marquee  { from{transform:translateX(0);} to{transform:translateX(-50%);} }
@keyframes scrollPulse { 0%,100%{opacity:1;} 50%{opacity:0.2;} }

.reveal { opacity:0; transform:translateY(34px); transition:opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1120px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .portals-grid  { grid-template-columns: repeat(3, 1fr); }
  .trust-item    { padding: 12px 20px; }
}
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-ham { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid    { grid-template-columns: repeat(3, 1fr); }
  .testi-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats    { display: none; }
}
@media (max-width: 700px) {
  .sec-pad { padding: 80px 5%; }
  .about-inner   { grid-template-columns: 1fr; gap: 50px; }
  .about-img-wrap{ padding: 18px 0 50px 18px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 42px; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .areas-grid    { grid-template-columns: repeat(2, 1fr); }
  .portals-grid  { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row      { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr; gap: 28px; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .trust-strip   { flex-direction: column; align-items: flex-start; padding: 0 5%; }
  .trust-item    { border-right: none; border-bottom: 1px solid var(--dark5); width: 100%; }
  .trust-item:last-child { border-bottom: none; }
}