/* ==========================================================================
   5Star Plumbing Solutions — Main Stylesheet
   ========================================================================== */

:root {
  --navy-900: #082a4d;
  --navy-800: #0d3f6e;
  --navy-700: #164b7e;
  --navy-600: #1f6fc4;
  --gold-600: #c98a12;
  --gold-500: #e8a923;
  --gold-400: #ffd35c;
  --gray-50: #f7f9fc;
  --gray-100: #eef2f7;
  --gray-200: #dfe6ee;
  --text-dark: #1c2b3a;
  --text-muted: #5b6b7d;
  --white: #ffffff;
  --success: #1c8a52;
  --danger: #c62828;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(8, 42, 77, 0.08);
  --shadow-md: 0 12px 30px rgba(8, 42, 77, 0.12);
  --shadow-lg: 0 24px 60px rgba(8, 42, 77, 0.18);
  --container: 1180px;
  --transition: all 0.25s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 16px; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.bg-gray { background: var(--gray-50); }
.bg-navy { background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy p { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.8); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-600);
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--gold-500);
  border-radius: 3px;
  display: inline-block;
}

.section-head { max-width: 720px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 10px 24px rgba(232, 169, 35, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(232, 169, 35, 0.45); }
.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-3px); }
.btn-outline-navy {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-800);
}
.btn-outline-navy:hover { background: var(--navy-800); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.86rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.9); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-right a:hover { color: var(--gold-400); }
.topbar i { color: var(--gold-400); margin-right: 6px; }
.badge-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6be08a;
  font-weight: 600;
}
.badge-open::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3fe873;
  box-shadow: 0 0 0 4px rgba(63, 232, 115, 0.25);
}

/* ---------- Header / Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.brand img { height: 52px; width: auto; }
.nav-links { display: contents; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu > li { position: relative; }
.dropdown ul { margin: 0; padding: 0; list-style: none; }
.nav-links a.nav-link {
  display: block;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--navy-900);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a.nav-link:hover, .nav-links a.nav-link.active { color: var(--gold-600); background: var(--gray-50); }
.has-dropdown > a.nav-link::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 6px;
  font-size: 0.75rem;
}
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 280px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.92rem;
}
.dropdown a i { color: var(--gold-500); width: 18px; text-align: center; }
.dropdown a:hover { background: var(--gray-50); color: var(--navy-800); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-call {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--navy-900);
}
.nav-call .icon-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-call small { display: block; font-weight: 500; color: var(--text-muted); font-size: 0.72rem; }
.nav-call strong { font-size: 1.02rem; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy-900);
}
.mobile-close { display: none; }

@media (max-width: 991px) {
  .nav-links { display: none; }
  .nav-call span { display: none; }
  .nav-call .icon-circle { margin: 0; }
  .menu-toggle { display: block; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(340px, 86vw);
    background: var(--navy-900);
    padding: 90px 20px 30px;
    gap: 4px;
    z-index: 600;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .nav-links.mobile-open .nav-menu { display: contents; }
  .nav-links.mobile-open a.nav-link { color: var(--white); }
  .nav-links.mobile-open a.nav-link:hover { background: rgba(255,255,255,0.08); color: var(--gold-400); }
  .nav-links.mobile-open .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    display: none;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    margin-bottom: 6px;
  }
  .nav-links.mobile-open .has-dropdown.open .dropdown { display: block; }
  .nav-links.mobile-open .dropdown a { color: rgba(255,255,255,0.85); }
  .nav-links.mobile-open .dropdown a:hover { background: rgba(255,255,255,0.1); color: var(--gold-400); }
  .nav-links.mobile-open .mobile-close {
    display: block;
    position: absolute;
    top: 24px; right: 24px;
    color: var(--white);
    font-size: 1.6rem;
    background: none; border: none;
  }
  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(8,42,77,0.55);
    z-index: 590;
  }
  .nav-overlay.active { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-900) 10%, var(--navy-700) 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(232,169,35,0.28), transparent 45%),
                     radial-gradient(circle at 10% 90%, rgba(31,111,196,0.35), transparent 50%);
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 90px;
}
.hero-stars { color: var(--gold-400); font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }
.hero-stars span { color: rgba(255,255,255,0.85); letter-spacing: normal; font-size: 0.95rem; margin-left: 8px; font-weight: 600; }
.hero h1 { color: var(--white); }
.hero h1 .accent { color: var(--gold-400); }
.hero p.lead { color: rgba(255,255,255,0.85); font-size: 1.12rem; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.hero-trust { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 42px; }
.hero-trust li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.92rem; color: rgba(255,255,255,0.9); }
.hero-trust i { color: var(--gold-400); font-size: 1.15rem; }

.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,0.15);
}
.hero-media img { width: 100%; height: 480px; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -26px; left: -26px;
  background: var(--white);
  color: var(--navy-900);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
}
.hero-badge .icon-circle { background: var(--navy-900); color: var(--gold-400); width: 50px; height: 50px; }
.hero-badge strong { display: block; font-size: 1.3rem; line-height: 1; }
.hero-badge span { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }

.icon-circle {
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 50px; padding-bottom: 60px; }
  .hero-media { order: -1; }
  .hero-media img { height: 320px; }
  .hero-badge { position: static; margin-top: -40px; margin-left: 20px; }
}

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  margin-top: -60px;
  position: relative;
  z-index: 5;
  padding: 34px 10px;
}
.stats-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats-bar .stat strong { display: block; font-family: 'Poppins',sans-serif; font-size: 2.1rem; color: var(--navy-900); font-weight: 800; }
.stats-bar .stat span { color: var(--text-muted); font-weight: 600; font-size: 0.88rem; }
.stats-bar .stat i { color: var(--gold-500); font-size: 1.3rem; margin-bottom: 6px; display: block; }
@media (max-width: 700px) { .stats-bar .container { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 950px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.service-card .icon-circle {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: var(--gold-400);
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card h3 a { color: var(--navy-900); }
.service-card h3 a:hover { color: var(--gold-600); }
.service-card p { margin-bottom: 14px; }
.service-card .card-link { font-weight: 700; color: var(--navy-800); display: inline-flex; align-items: center; gap: 8px; }
.service-card .card-link i { transition: var(--transition); }
.service-card:hover .card-link i { transform: translateX(4px); }
.service-card .num-tag {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Poppins',sans-serif;
  font-size: 2.4rem; font-weight: 800;
  color: var(--gray-100);
  z-index: 0;
}

/* ---------- Feature grid (why choose us) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
@media (max-width: 700px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-item { display: flex; gap: 18px; }
.feature-item .icon-circle {
  width: 54px; height: 54px;
  background: var(--gray-50);
  color: var(--navy-800);
  font-size: 1.3rem;
  border: 2px solid var(--gold-500);
}
.feature-item h3 { font-size: 1.08rem; margin-bottom: 6px; }
.feature-item p { margin-bottom: 0; }

.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .split-2 { grid-template-columns: 1fr; gap: 36px; } }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: 460px; object-fit: cover; }
.split-media .ring-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: 50%;
  width: 130px; height: 130px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  text-align: center;
  font-family: 'Poppins',sans-serif;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}
.split-media .ring-badge span { font-size: 1.8rem; line-height: 1; }
.split-media .ring-badge small { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.5px; }

.checklist li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-weight: 600; color: var(--text-dark); }
.checklist i { color: var(--success); margin-top: 3px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3/4;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute; inset: auto 0 0 0;
  padding: 18px 16px 14px;
  background: linear-gradient(0deg, rgba(8,42,77,0.92), transparent);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  transform: translateY(8px);
  opacity: 0.92;
}
.gallery-item.wide { grid-column: span 2; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px dashed var(--gray-200);
  height: 100%;
}
.testimonial-card .stars { color: var(--gold-500); margin-bottom: 14px; letter-spacing: 3px; }
.testimonial-card p.quote { font-style: italic; color: var(--text-dark); }
.testimonial-card .placeholder-note {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-600);
  background: #fff6e0;
  padding: 4px 10px;
  border-radius: 20px;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--gold-500), var(--gold-400));
  border-radius: var(--radius-lg);
  padding: 54px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--navy-900);
}
.cta-banner h2 { color: var(--navy-900); margin-bottom: 8px; }
.cta-banner p { color: rgba(8,42,77,0.75); margin-bottom: 0; }
.cta-banner .btn-primary { background: var(--navy-900); color: var(--white); box-shadow: 0 10px 24px rgba(8,42,77,0.3); }
.cta-banner .btn-primary:hover { background: var(--navy-800); }

/* ---------- Service areas ---------- */
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.area-tags span {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.area-tags i { color: var(--gold-500); }

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--navy-900);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
}
.faq-question i { color: var(--gold-500); transition: var(--transition); flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 22px; }

/* ---------- Process steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .steps-grid { grid-template-columns: 1fr; } }
.step-item { text-align: center; position: relative; }
.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  font-family: 'Poppins',sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 42px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.9rem; color: var(--navy-900); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  font-family: inherit;
  font-size: 0.96rem;
  transition: var(--transition);
  background: var(--gray-50);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232,169,35,0.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: -8px; }
.form-success, .form-error {
  display: none;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
}
.form-success { background: #e8f7ee; color: var(--success); }
.form-error { background: #fdeaea; color: var(--danger); }
.form-success.show, .form-error.show { display: flex; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.75); }
.footer-top { padding: 70px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--white); font-family: 'Poppins',sans-serif; margin-bottom: 20px; font-size: 1.02rem; }
.footer-grid li { margin-bottom: 12px; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-about p { color: rgba(255,255,255,0.65); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold-500); color: var(--navy-900); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact i { color: var(--gold-400); margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--gold-400); }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-900);
  z-index: 400;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.2);
}
.mobile-call-bar .container { display: flex; padding: 0; }
.mobile-call-bar a {
  flex: 1;
  text-align: center;
  padding: 15px 10px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-call-bar a.call { background: var(--gold-500); color: var(--navy-900); }
@media (max-width: 767px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 58px; }
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(232,169,35,0.25), transparent 45%);
}
.page-header .container { position: relative; z-index: 2; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.breadcrumbs a:hover { color: var(--gold-400); }
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.8); max-width: 640px; margin-bottom: 0; }

/* ---------- Service detail layout ---------- */
.service-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
@media (max-width: 900px) { .service-layout { grid-template-columns: 1fr; } }
.service-content img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); margin: 28px 0; width: 100%; height: 360px; object-fit: cover; }
.service-content h2 { margin-top: 40px; }
.service-content ul.tick-list li { display: flex; gap: 12px; margin-bottom: 12px; font-weight: 600; color: var(--text-dark); }
.service-content ul.tick-list i { color: var(--success); margin-top: 4px; }

.sidebar-card {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 26px;
  position: sticky;
  top: 100px;
}
.sidebar-card h3 { font-size: 1.1rem; }
.sidebar-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.sidebar-list li a:hover, .sidebar-list li a.active { background: var(--white); color: var(--navy-800); box-shadow: var(--shadow-sm); }
.sidebar-list li a i:last-child { color: var(--gold-500); }
.sidebar-cta {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
}
.sidebar-cta h3 { color: var(--white); }
.sidebar-cta p { color: rgba(255,255,255,0.75); }

/* ---------- Map ---------- */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
@media (max-width: 800px) { .value-grid { grid-template-columns: 1fr; } }
.value-card { text-align: center; padding: 34px 24px; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.value-card .icon-circle { width: 60px; height: 60px; margin: 0 auto 18px; background: var(--gray-50); color: var(--navy-800); border: 2px solid var(--gold-500); font-size: 1.4rem; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 800px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); text-align: center; }
.team-card .avatar {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  font-size: 3rem;
}
.team-card .info { padding: 22px; }
.team-card h3 { margin-bottom: 4px; }
.team-card span { color: var(--gold-600); font-weight: 700; font-size: 0.85rem; }

.timeline { border-left: 3px solid var(--gold-500); padding-left: 30px; }
.timeline .t-item { margin-bottom: 30px; position: relative; }
.timeline .t-item::before {
  content: "";
  position: absolute; left: -38px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--navy-900); border: 3px solid var(--gold-500);
}
.timeline .t-item strong { color: var(--navy-900); display:block; margin-bottom: 4px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8,42,77,0.92);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  padding: 30px;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 26px; right: 30px;
  color: var(--white); font-size: 2rem; background: none; border: none;
}

/* Reveal-on-scroll base */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
