/* ============================================================
   AEDIS PROPERTY SOLUTIONS — MAIN STYLESHEET
   Colour system: Navy (trust) + White (clarity) + Gold (premium)
   ============================================================ */

:root {
  --navy: #0a1f3d;
  --navy-dark: #061529;
  --navy-light: #14335e;
  --navy-tint: #eef2f7;
  --gold: #c9a227;
  --gold-light: #e0bf4e;
  --gold-dark: #a8841c;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --ink: #1a1f2b;
  --gray: #5a6472;
  --gray-light: #9aa3b2;
  --border: #e3e7ee;
  --success: #1f9d55;

  --font-brand: 'Alice', Georgia, serif;
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 10px rgba(10, 31, 61, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 31, 61, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 31, 61, 0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 76px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section { position: relative; }

/* ---------- Utility ---------- */
.section-pad { padding: 80px 0; }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-off { background: var(--off-white); }
.text-center { text-align: center; }
.gold-text { color: var(--gold); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.bg-navy .eyebrow { color: var(--gold-light); }
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-head { max-width: 680px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 14px; }
.section-head p { color: var(--gray); font-size: 1.05rem; }
.bg-navy .section-head p { color: #c3cde0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-dark);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201, 162, 39, 0.45); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(10, 31, 61, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-brand);
  color: var(--white);
  font-weight: 400;
  font-size: 1.48rem;
  letter-spacing: 0.7px;
  flex-shrink: 0;
}
.logo .mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 1.1rem;
  font-weight: 800;
}
.logo .tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  color: #dbe2ee;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
  transition: color var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
.header-phone .icon-circle {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(201,162,39,0.18);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.header-phone small { display: block; font-size: 0.65rem; color: var(--gray-light); font-weight: 400; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---------- Mobile Nav ---------- */
@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 10px 0;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1.05rem;
    width: 100%;
  }
  .main-nav a.active::after { display: none; }
  .main-nav a.active { color: var(--gold-light); }
  .mobile-cta {
    margin: 18px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .header-phone .label-text { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn.quote-btn-header { display: none; }
}

@media (min-width: 993px) {
  .mobile-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(6,21,41,0.94) 30%, rgba(6,21,41,0.72) 65%, rgba(10,31,61,0.55) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 100px 0 90px; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}
.hero p.lead { font-size: 1.15rem; color: #d6dded; margin-bottom: 34px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.hero-trust div { display: flex; align-items: center; gap: 10px; }
.hero-trust .num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--gold-light); }
.hero-trust small { display: block; color: #b9c3d6; font-size: 0.78rem; }

.page-hero {
  min-height: 340px;
  padding-top: var(--header-h);
}
.page-hero .hero-content { padding: 70px 0 60px; max-width: 760px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: #b9c3d6; font-size: 0.9rem; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------- Image fallback safety net ---------- */
.img-box { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-light), var(--navy)); }
.img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.img-box.img-fallback::before {
  content: '\f1ad';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: rgba(201,162,39,0.55);
  background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
}

/* ---------- Trust Strip ---------- */
.trust-strip { background: var(--navy-dark); padding: 22px 0; }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 22px; justify-content: space-between; align-items: center; }
.trust-strip .item { display: flex; align-items: center; gap: 10px; color: #c3cde0; font-size: 0.88rem; font-weight: 500; }
.trust-strip .item i { color: var(--gold-light); }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: var(--navy-tint);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); color: var(--white); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.94rem; margin-bottom: 16px; }
.service-card .link { font-weight: 600; font-size: 0.88rem; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.service-card .link i { transition: transform var(--transition); font-size: 0.78rem; }
.service-card:hover .link i { transform: translateX(4px); }
.service-card .link:hover { color: var(--gold-dark); }

/* Detailed service block (services.html) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .sd-media { order: 2; }
.service-detail.reverse .sd-text { order: 1; }
.sd-media .img-box { border-radius: var(--radius-lg); aspect-ratio: 4/3; box-shadow: var(--shadow-md); }
.sd-text .num-tag {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}
.sd-text h3 { font-size: 1.6rem; margin-bottom: 14px; }
.sd-text p { color: var(--gray); margin-bottom: 20px; }
.check-list { display: grid; gap: 11px; margin-bottom: 26px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--ink); }
.check-list i { color: var(--gold-dark); margin-top: 3px; flex-shrink: 0; }

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.why-item { text-align: center; padding: 10px; }
.why-item .icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-dark);
  font-size: 1.7rem;
}
.why-item h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--white); }
.why-item p { color: #b9c3d6; font-size: 0.9rem; }

/* ---------- Process Steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.process-step { position: relative; text-align: center; padding: 0 10px; }
.process-step .step-num {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  border: 3px solid var(--navy-tint);
  position: relative;
  z-index: 2;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { color: var(--gray); font-size: 0.9rem; }
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
  z-index: 1;
}

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  text-align: center;
  padding: 34px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
}
.stat-card .stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--gold-light);
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.stat-card p { color: #b9c3d6; font-size: 0.9rem; margin-top: 8px; }

/* ---------- Projects / Portfolio ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--gold); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.project-card .img-box { aspect-ratio: 4/3; }
.project-card:hover .img-box img { transform: scale(1.08); }
.project-card .p-body { padding: 22px 24px; }
.project-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,162,39,0.12);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.project-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.project-card .p-loc { color: var(--gray); font-size: 0.86rem; display: flex; align-items: center; gap: 6px; }
.project-card.hide { display: none; }

/* ---------- Testimonials ---------- */
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-card p.quote { color: var(--ink); font-size: 0.98rem; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-head);
}
.testi-author strong { font-size: 0.92rem; display: block; }
.testi-author span { font-size: 0.8rem; color: var(--gray); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy) 60%, var(--navy-light));
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.18), transparent 70%);
  top: -200px; right: -150px;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-inner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 10px; }
.cta-inner p { color: #c3cde0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group label .req { color: #c0392b; }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--off-white);
  transition: var(--transition);
  color: var(--ink);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.82rem; color: var(--gray); margin-top: 4px; display: flex; align-items: center; gap: 6px; }

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}
.contact-card-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-info-list { display: flex; flex-direction: column; gap: 26px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .ci-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--navy-tint);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--gray); font-size: 0.94rem; }
.contact-info-item a:hover { color: var(--gold-dark); }
.map-box { border-radius: var(--radius-lg); overflow: hidden; margin-top: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.map-box iframe { width: 100%; height: 280px; border: 0; display: block; }

.hours-box { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--border); }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.92rem; color: var(--gray); }
.hours-row strong { color: var(--ink); font-weight: 600; }

/* ---------- Modal (Get a Quote) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 21, 41, 0.72);
  backdrop-filter: blur(3px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  transition: var(--transition);
}
.modal-close:hover { background: var(--navy); color: var(--white); }
.modal-box h3 { font-size: 1.4rem; margin-bottom: 6px; }
.modal-box .modal-sub { color: var(--gray); font-size: 0.92rem; margin-bottom: 26px; }
.modal-box .form-grid { grid-template-columns: 1fr; }

/* ---------- Fixed WhatsApp Button ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 1500;
  transition: transform var(--transition);
  animation: pulse-wa 2.4s infinite;
}
.whatsapp-fab:hover { transform: scale(1.08); }
@keyframes pulse-wa {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-fab .wa-tip {
  position: absolute;
  right: 72px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-fab:hover .wa-tip { opacity: 1; transform: translateX(0); }

/* ---------- Sticky Mobile Call Bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1400;
  background: var(--navy-dark);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
@media (max-width: 640px) {
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 70px; }
  .whatsapp-fab { bottom: 92px; width: 54px; height: 54px; font-size: 1.5rem; right: 18px; }
}
.mobile-call-bar a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
}
.mobile-call-bar .mc-call { background: var(--gold); color: var(--navy-dark); }
.mobile-call-bar .mc-quote { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #b9c3d6; padding-top: 70px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about .logo { margin-bottom: 18px; }
.footer-about p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; color: #a3aec2; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 22px; position: relative; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.9rem; color: #a3aec2; transition: var(--transition); }
.footer-col a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; margin-bottom: 4px; }
.footer-contact i { color: var(--gold-light); margin-top: 3px; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: #7e8aa3;
}
.footer-bottom .footer-phone { color: var(--gold-light); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.footer-bottom .footer-phone a { color: var(--gold-light); }

/* ---------- Back to top ---------- */
.back-top {
  position: fixed;
  bottom: 26px; left: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 1400;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Fade-in helper (fallback if AOS unavailable) ---------- */
[data-aos] { will-change: transform, opacity; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-track { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
}

@media (max-width: 860px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  .service-detail.reverse .sd-media { order: 1; }
  .service-detail.reverse .sd-text { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section-pad { padding: 56px 0; }
  .services-grid, .why-grid, .process-grid, .stats-grid, .projects-grid { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
  .hero-content { padding: 70px 0 60px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { gap: 20px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; width: 100%; }
  .cta-actions .btn { flex: 1; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding-bottom: 34px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal-box { padding: 28px 22px; }
  .back-top { left: 16px; bottom: 92px; width: 42px; height: 42px; }
}
