/* ============================================================
   Rodha Ventures — Global Stylesheet
   Theme: Royal Navy (#13294B) · Champagne Gold (#C9A24B) · White
   Refined corporate real-estate identity:
   - Royal Navy leads as the structural / trust color
   - Gold is the single luxury accent (matches the brand mark)
   - Red survives only as a rare punctuation, like the logo's peak tower
   ============================================================ */

:root {
  /* Royal navy scale — mapped onto legacy --navy names so dark surfaces flow through */
  --navy: #13294B;        /* primary dark — headings, dark sections */
  --navy-deep: #0A1A33;   /* deepest navy — footer, overlays */
  --navy-soft: #1c386b;   /* raised surface — icon tiles */
  --black: #13294B;
  --black-deep: #0A1A33;

  /* Gold — luxury metallic accent (kept in sync with the logo gradient) */
  --gold: #C9A24B;
  --gold-deep: #A8853A;
  --gold-light: #E7C46A;
  --gold-soft: rgba(201, 162, 75, .14);
  --gold-glow: rgba(201, 162, 75, .32);

  /* Red — reserved accent, used sparingly */
  --red: #C8102E;
  --red-deep: #960A22;
  --red-soft: #E12A41;

  --ink: #1d2433;         /* body headings on light */
  --muted: #5b6678;       /* secondary text */
  --line: #e6e9f0;        /* hairlines */
  --bg: #ffffff;
  --bg-soft: #f5f7fb;     /* cool, clean section tint */
  --white: #ffffff;

  --radius: 8px;          /* architectural, restrained */
  --radius-sm: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 10px rgba(19, 41, 75, .06);
  --shadow-md: 0 18px 50px rgba(19, 41, 75, .12);
  --shadow-lg: 0 30px 70px rgba(10, 26, 51, .18);
  --max: 1200px;

  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --t: .3s cubic-bezier(.4, 0, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  width: 100%;
}
body.menu-open { overflow: hidden; }
img, svg, iframe, table { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.18; font-weight: 700; letter-spacing: -.01em; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 6px; font-family: var(--font-body);
  font-weight: 600; font-size: 14.5px;
  cursor: pointer; border: 1.5px solid transparent; transition: var(--t); letter-spacing: .2px;
}
/* Primary action — champagne gold (pops on dark hero and light sections alike) */
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--navy-deep); box-shadow: 0 8px 22px var(--gold-glow); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 32px var(--gold-glow); }
/* Alt luxe gold (kept for template compatibility) */
.btn-luxe { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--navy-deep); }
.btn-luxe:hover { transform: translateY(-2px); box-shadow: 0 14px 32px var(--gold-glow); }
/* Outline — on dark backgrounds */
.btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); transform: translateY(-2px); }
/* Deep ink — secondary on light */
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
/* Ghost — quiet secondary on light */
.btn-ghost { border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* ---------- Section helpers ---------- */
.section { padding: 104px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.eyebrow {
  display: inline-block; color: var(--gold-deep); font-family: var(--font-body); font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase; font-size: 12.5px; margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 17px; }
.divider { width: 56px; height: 2px; background: var(--gold); border-radius: 2px; margin: 18px auto 0; }

/* ============================================================
   TOP BAR + HEADER
   ============================================================ */
.topbar { background: var(--navy-deep); color: #c7cdd4; font-size: 13px; border-bottom: 1px solid rgba(201,162,75,.16); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 44px; }
.topbar a { color: #c7cdd4; transition: var(--t); }
.topbar a:hover { color: var(--gold-light); }
.topbar .tb-left { display: flex; gap: 26px; }
.topbar .tb-social { display: flex; gap: 18px; align-items: center; }
.topbar .tb-social a:hover { color: var(--gold-light); }

.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(19,41,75,.05);
  border-bottom: 1px solid transparent; transition: var(--t);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand img { height: 46px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 16px; font-weight: 500; color: var(--ink); border-radius: 6px;
  position: relative; transition: var(--t); font-size: 15px;
}
.nav a:hover { color: var(--gold-deep); }
.nav a.active { color: var(--navy); font-weight: 600; }
.nav a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 2px; height: 2px; background: var(--gold); border-radius: 2px;
}
.header-cta { margin-left: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--navy); border-radius: 3px; transition: var(--t); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(10,26,51,.95) 0%, rgba(19,41,75,.86) 46%, rgba(19,41,75,.62) 100%),
              url("../img/hero-skyline.svg") center/cover no-repeat;
  z-index: -1;
}
.hero-inner { padding: 130px 0 138px; max-width: 740px; }
.hero h1 { color: #fff; font-size: clamp(36px, 5.2vw, 62px); line-height: 1.06; }
.hero h1 span { color: var(--gold-light); font-style: italic; }
.hero p { margin: 24px 0 36px; font-size: 19px; color: #d4dae1; max-width: 600px; font-weight: 400; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 52px; margin-top: 64px; flex-wrap: wrap; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-stats .num { font-family: var(--font-head); font-size: 42px; font-weight: 700; color: var(--gold-light); }
.hero-stats .lbl { font-size: 13.5px; color: #aab4bf; letter-spacing: .6px; margin-top: 4px; }

/* ============================================================
   ABOUT / INTRO
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.about-grid .media { position: relative; }
.about-grid .media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-grid .media .badge {
  position: absolute; right: -18px; bottom: -18px; background: var(--gold);
  color: var(--navy-deep); padding: 22px 26px; border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
}
.about-grid .media .badge b { font-size: 30px; display: block; font-family: var(--font-head); line-height: 1; }
.about-grid h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 20px; }
.about-grid p { color: var(--muted); margin-bottom: 16px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin: 24px 0 32px; }
.feature-list li { display: flex; gap: 11px; align-items: flex-start; font-weight: 500; color: var(--navy); font-size: 15px; }
.feature-list .tick {
  flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-soft);
  color: var(--gold-deep); display: grid; place-items: center; font-size: 12px; font-weight: 700;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 32px;
  transition: var(--t); position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--gold); transition: var(--t);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { width: 100%; }
.service-card .ico {
  width: 60px; height: 60px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(140deg, var(--navy), var(--navy-soft)); color: var(--gold-light); font-size: 26px;
  border: 1px solid rgba(201,162,75,.22);
}
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 15px; }
.service-card .more { display: inline-block; margin-top: 18px; color: var(--gold-deep); font-weight: 600; font-size: 14px; font-family: var(--font-body); transition: var(--t); }
.service-card:hover .more { gap: 4px; letter-spacing: .3px; }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.project-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--t); border: 1px solid var(--line);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.project-card .thumb { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.project-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project-card:hover .thumb img { transform: scale(1.06); }
.project-card .tag {
  position: absolute; top: 14px; left: 14px; background: rgba(10,26,51,.82); color: #fff;
  padding: 6px 14px; border-radius: 4px; font-size: 11.5px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
  backdrop-filter: blur(2px);
}
.project-card .body { padding: 24px 24px 26px; }
.project-card h3 { font-size: 21px; margin-bottom: 6px; }
.project-card .loc { color: var(--muted); font-size: 14px; display: flex; align-items: center; gap: 6px; }
.project-card .meta { display: flex; gap: 18px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.project-card .meta div { font-size: 13px; color: var(--muted); }
.project-card .meta b { display: block; color: var(--navy); font-size: 15px; font-weight: 600; margin-top: 2px; }

/* ============================================================
   STRIP / STATS / CTA
   ============================================================ */
.cta-strip { position: relative; color: #fff; text-align: center; padding: 92px 0; overflow: hidden; }
.cta-strip::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, rgba(10,26,51,.94), rgba(19,41,75,.86)), url("../img/cta-bg.svg") center/cover;
}
.cta-strip h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); }
.cta-strip p { color: #cdd4db; max-width: 620px; margin: 16px auto 30px; font-size: 18px; }

/* Brands */
.brands { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: center; }
.brands .b {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; height: 96px;
  display: grid; place-items: center; transition: var(--t); filter: grayscale(1); opacity: .72;
}
.brands .b:hover { filter: none; opacity: 1; box-shadow: var(--shadow-sm); transform: translateY(-3px); border-color: rgba(201,162,75,.4); }

/* Steps / process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { text-align: center; padding: 0 10px; }
.step .n {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy), var(--navy-soft)); color: var(--gold-light);
  font-family: var(--font-head); font-size: 24px; font-weight: 700; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,162,75,.22);
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-hero { position: relative; color: #fff; padding: 96px 0 76px; text-align: center; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, rgba(10,26,51,.94), rgba(19,41,75,.78)), url("../img/hero-skyline.svg") center/cover;
}
.page-hero h1 { color: #fff; font-size: clamp(32px, 4.5vw, 50px); }
.breadcrumb { margin-top: 14px; color: #aab4bf; font-size: 14px; }
.breadcrumb a { color: var(--gold-light); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: stretch; }
.contact-info { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 46px 42px; }
.contact-info h3 { color: #fff; font-size: 27px; margin-bottom: 8px; }
.contact-info p.lead { color: #c2cbd3; margin-bottom: 30px; }
.contact-info .row { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-info .row .ico {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 10px; background: var(--gold-soft);
  color: var(--gold-light); display: grid; place-items: center; font-size: 20px;
}
.contact-info .row .lbl { font-size: 12.5px; color: #9aa6b2; letter-spacing: .6px; text-transform: uppercase; }
.contact-info .row b { font-size: 16px; word-break: break-word; font-weight: 500; }
.contact-info .socials { display: flex; gap: 12px; margin-top: 8px; }
.contact-info .socials a {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center;
  color: #fff; transition: var(--t);
}
.contact-info .socials a:hover { background: var(--gold); color: var(--navy-deep); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 42px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 7px; font-size: 13.5px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 6px; font: inherit; color: var(--ink);
  transition: var(--t); background: #fbfcfd;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px var(--gold-soft); }
.field textarea { resize: vertical; min-height: 120px; }

.alert { padding: 14px 18px; border-radius: 6px; margin-bottom: 22px; font-weight: 500; font-size: 15px; }
.alert-success { background: #e9f7ef; color: #1a7a47; border: 1px solid #b6e6cb; }
.alert-error { background: #fdeceb; color: #b3261e; border: 1px solid #f5c2c0; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 60px; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ============================================================
   PROJECT DETAILS
   ============================================================ */
.pd-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 44px; align-items: start; }
.pd-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.pd-side { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; position: sticky; top: 108px; }
.pd-side h3 { font-size: 23px; margin-bottom: 20px; }
.pd-spec { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); }
.pd-spec span { color: var(--muted); }
.pd-spec b { color: var(--navy); font-weight: 600; }
.pd-price { font-family: var(--font-head); font-size: 30px; color: var(--gold-deep); font-weight: 700; }
.prose h2 { font-size: 29px; margin: 30px 0 12px; }
.prose p { color: var(--muted); margin-bottom: 14px; }
.amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-top: 12px; }
.amenities li { display: flex; gap: 10px; color: var(--navy); font-weight: 500; font-size: 15px; }
.amenities .tick { color: var(--gold-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); color: #9aa6b2; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 54px; }
.site-footer img.flogo { height: 48px; margin-bottom: 20px; }
.site-footer p { font-size: 14.5px; line-height: 1.85; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.site-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--gold); }
.site-footer ul li { margin-bottom: 11px; }
.site-footer ul a { transition: var(--t); font-size: 14.5px; }
.site-footer ul a:hover { color: var(--gold-light); padding-left: 5px; }
.fcontact div { display: flex; gap: 12px; margin-bottom: 14px; font-size: 14.5px; }
.fcontact .ico { color: var(--gold); flex: 0 0 18px; }
.fsocials { display: flex; gap: 12px; margin-top: 20px; }
.fsocials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #fff; transition: var(--t); }
.fsocials a:hover { background: var(--gold); color: var(--navy-deep); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; text-align: center; font-size: 13.5px; }

/* ============================================================
   FLOATING WHATSAPP + MODAL
   ============================================================ */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center; font-size: 28px; box-shadow: 0 10px 26px rgba(37,211,102,.4);
  transition: var(--t);
}
.wa-float:hover { transform: scale(1.08); }

.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,26,51,.62); backdrop-filter: blur(4px); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius); max-width: 460px; width: 100%; padding: 40px 36px; position: relative;
  box-shadow: var(--shadow-lg); animation: pop .3s ease; max-height: 90vh; overflow-y: auto;
}
@keyframes pop { from { transform: translateY(20px) scale(.97); opacity: 0; } to { transform: none; opacity: 1; } }
.modal h3 { font-size: 25px; }
.modal p.sub { color: var(--muted); margin-bottom: 24px; font-size: 15px; }
.modal-close { position: absolute; top: 16px; right: 18px; background: none; border: 0; font-size: 26px; cursor: pointer; color: var(--muted); line-height: 1; }
.modal-close:hover { color: var(--navy); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   POLISH — premium finishing details
   ============================================================ */

/* Gold text selection + refined focus ring */
::selection { background: var(--gold); color: var(--navy-deep); }
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px;
}

/* Eyebrow — flanking gold kicker lines (centered & left-aligned both read well) */
.eyebrow { position: relative; }
.eyebrow::before, .eyebrow::after {
  content: ""; display: inline-block; width: 26px; height: 1.5px;
  background: var(--gold); vertical-align: middle; opacity: .85;
}
.eyebrow::before { margin-right: 14px; }
.eyebrow::after { margin-left: 14px; }
/* On light dark heroes the gold reads; keep eyebrow gold there too */
.hero .eyebrow, .page-hero .eyebrow { color: var(--gold-light); }

/* Hero — soft gold glow + text depth for a richer, deeper feel */
.hero::after {
  content: ""; position: absolute; top: -20%; right: -10%; width: 60%; height: 120%;
  background: radial-gradient(closest-side, rgba(201,162,75,.16), transparent 70%);
  pointer-events: none; z-index: -1;
}
.hero h1, .page-hero h1 { text-shadow: 0 2px 30px rgba(0,0,0,.28); }
.hero p { text-shadow: 0 1px 18px rgba(0,0,0,.25); }

/* Buttons — subtle sheen sweep on hover */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg); transition: left .6s ease; pointer-events: none;
}
.btn-gold::after, .btn-luxe::after { background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent); }
.btn-navy::after, .btn-ghost::after, .btn-outline::after { background: linear-gradient(100deg, transparent, rgba(201,162,75,.4), transparent); }
.btn:hover::after { left: 130%; }

/* Cards — gentler, more refined hover lift */
.service-card, .project-card { will-change: transform; }

/* Project image — soft gradient veil for depth + premium legibility */
.project-card .thumb::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(10,26,51,.28), transparent 42%);
  opacity: .75; transition: var(--t);
}
.project-card:hover .thumb::after { opacity: .45; }

/* Service "Learn more" — animated arrow nudge */
.service-card .more { position: relative; }
.service-card:hover .more { color: var(--gold); }

/* Process steps — connecting thread between the numbers (desktop) */
.steps { position: relative; }
@media (min-width: 993px) {
  .step { position: relative; }
  .step:not(:last-child)::after {
    content: ""; position: absolute; top: 32px; left: calc(50% + 42px); width: calc(100% - 84px); height: 2px;
    background: repeating-linear-gradient(90deg, rgba(201,162,75,.55) 0 8px, transparent 8px 16px);
    z-index: 0;
  }
  .step .n { position: relative; z-index: 1; }
}

/* Section headings — a touch more architectural tracking on display sizes */
.section-head h2, .hero h1, .cta-strip h2 { letter-spacing: -.015em; }

/* Smooth, premium image + card transitions */
.about-grid .media img, .pd-media img { transition: var(--t); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .services-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .brands { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid, .pd-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 48px; }
  .pd-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar .tb-left { gap: 16px; }
  .section { padding: 76px 0; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .site-header .container { height: 68px; }
  .brand img { height: 38px; }

  .nav {
    position: fixed; top: 68px; right: 0; width: 80%; max-width: 300px; height: calc(100vh - 68px);
    background: #fff; flex-direction: column; align-items: stretch; padding: 20px; gap: 4px;
    transform: translateX(100%); transition: transform .35s ease; box-shadow: var(--shadow-md);
    overflow-y: auto; visibility: hidden;
  }
  .nav.open { transform: translateX(0); visibility: visible; }
  .nav a { width: 100%; padding: 13px 16px; border-radius: 6px; }
  .nav a:hover, .nav a.active { background: var(--bg-soft); }
  .nav a.active::after { display: none; }
  .header-cta { width: 100%; margin: 12px 0 0; justify-content: center; }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-backdrop {
    position: fixed; inset: 68px 0 0 0; background: rgba(10,26,51,.5);
    opacity: 0; visibility: hidden; transition: opacity .3s ease; z-index: 99;
  }
  .nav-backdrop.open { opacity: 1; visibility: visible; }

  .section { padding: 64px 0; }
  .section-head { margin-bottom: 44px; }

  .topbar { font-size: 12.5px; }
  .topbar .container { height: 40px; justify-content: center; }
  .topbar .tb-left .hide-sm { display: none; }
  .topbar .tb-social { display: none; }

  .hero-inner { padding: 76px 0 82px; }
  .hero p { font-size: 17px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero-stats { gap: 28px 38px; margin-top: 44px; padding-top: 30px; }
  .hero-stats .num { font-size: 34px; }

  .about-grid .media .badge { right: 12px; bottom: -16px; padding: 16px 20px; }
  .about-grid .media .badge b { font-size: 24px; }

  .contact-info, .form-card { padding: 32px 26px; }
  .map-wrap iframe { height: 320px; }

  .pd-side { margin-top: 8px; }

  .cta-strip { padding: 64px 0; }
  .page-hero { padding: 68px 0 54px; }

  .wa-float { width: 52px; height: 52px; font-size: 24px; right: 18px; bottom: 18px; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .services-grid, .projects-grid, .steps, .form-row, .feature-list, .amenities { grid-template-columns: 1fr; }
  .brands { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .brands .b { height: 80px; padding: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; text-align: left; }

  .btn { padding: 13px 24px; font-size: 14px; }
  .hero h1 { font-size: clamp(30px, 8vw, 42px); }
  .hero p { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 24px 30px; }
  .hero-stats > div { flex: 1 1 40%; }
  .hero-stats .num { font-size: 30px; }

  .section-head p { font-size: 15.5px; }
  .about-grid .media .badge { left: 50%; right: auto; transform: translateX(-50%); bottom: -20px; white-space: nowrap; }
  .modal { padding: 32px 24px; }
  .modal h3 { font-size: 22px; }
}

@media (max-width: 380px) {
  .hero-stats > div { flex: 1 1 100%; }
  .brands { grid-template-columns: repeat(2, 1fr); }
}
