/* ============================================================
   ERVAKON.COM — Premium Plumbing Services Philippines
   Main Stylesheet
   ============================================================ */

/* ── Google Fonts (Inter + Playfair Display) ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:      #0B1F3A;
  --navy-mid:  #122747;
  --gold:      #C9A84C;
  --gold-light:#E2C47A;
  --white:     #FFFFFF;
  --off-white: #F8F7F4;
  --gray-100:  #F2F2F2;
  --gray-300:  #D1D1D1;
  --gray-500:  #8A8A8A;
  --gray-700:  #444444;
  --text:      #1A1A1A;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(11,31,58,.12);
  --shadow-lg: 0 12px 48px rgba(11,31,58,.18);
  --transition: .3s ease;
  --max-w:     1240px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utility ── */
.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin-top: 14px;
}
.section-subtitle.light { color: rgba(255,255,255,.7); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 28px rgba(201,168,76,.35);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--off-white);
  box-shadow: 0 6px 28px rgba(255,255,255,.2);
}

/* ================================================================
   HEADER / NAV
================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,.2);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 24px; height: 24px; fill: var(--navy); }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.logo-text span { color: var(--gold); }
.logo-tagline {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-menu a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--gold); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

/* CTA button inside nav — maximum specificity override */
.nav-menu a.btn.btn-primary,
.nav-menu a.btn.btn-primary:hover,
.nav-menu a.btn.btn-primary:focus,
.nav-menu a.btn.btn-primary.active,
.nav-menu a.nav-cta,
.nav-menu a.nav-cta:hover,
.nav-menu a.nav-cta.active {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
}
.nav-menu a.btn::after,
.nav-menu a.nav-cta::after {
  display: none !important;
  width: 0 !important;
}

.nav-cta {
  padding: 10px 22px;
  font-size: .88rem;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,.88) 0%, rgba(11,31,58,.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  padding: 6px 16px;
  border-radius: 100px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-stat-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.hero-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 6px;
}
.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; }
  50% { opacity: 1; }
}

/* ================================================================
   TRUST BAR
================================================================ */
.trust-bar {
  background: var(--navy);
  padding: 28px 0;
  border-top: 1px solid rgba(201,168,76,.2);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
}
.trust-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.1);
}

/* ================================================================
   SERVICES SECTION
================================================================ */
.services-section {
  padding: 100px 0;
  background: var(--off-white);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-subtitle {
  margin: 14px auto 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card-body {
  padding: 28px;
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.65;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: .88rem;
  font-weight: 600;
  margin-top: 18px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2.2; }

/* ================================================================
   WHY US
================================================================ */
.why-section {
  padding: 100px 0;
  background: var(--navy);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.why-badge {
  position: absolute;
  bottom: 28px; left: 28px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
}
.why-badge strong { display: block; font-size: 1.5rem; }
.why-text { padding: 10px 0; }
.why-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-num {
  width: 40px; height: 40px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.why-item-text h4 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}
.why-item-text p {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
}

/* ================================================================
   PROCESS SECTION
================================================================ */
.process-section {
  padding: 100px 0;
  background: var(--white);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201,168,76,.2));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 76px; height: 76px;
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}
.process-step h4 {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step p {
  font-size: .87rem;
  color: var(--gray-500);
}

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--off-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: .2;
  position: absolute;
  top: 12px; left: 24px;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testimonial-text {
  color: var(--gray-700);
  font-size: .93rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}
.author-name {
  font-weight: 600;
  color: var(--navy);
  font-size: .93rem;
}
.author-location {
  font-size: .8rem;
  color: var(--gray-500);
}

/* ================================================================
   CTA SECTION
================================================================ */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3b6b 100%);
  text-align: center;
}
.cta-section .section-title.light { margin-bottom: 14px; }
.cta-section .section-subtitle.light { margin: 0 auto 36px; }
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  margin-top: 24px;
  justify-content: center;
}
.cta-phone svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; }
.cta-phone a { color: var(--gold); font-weight: 600; }

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: #071528;
  color: rgba(255,255,255,.65);
  font-size: .87rem;
}
.footer-top {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand p {
  margin: 16px 0 24px;
  line-height: 1.75;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.1);
}
.social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,.7); }
.footer-col h4 {
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  font-size: .87rem;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .87rem;
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(255,255,255,.5);
  font-size: .82rem;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ================================================================
   COOKIE BANNER
================================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text { color: rgba(255,255,255,.8); font-size: .88rem; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.btn-cookie-accept {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 22px;
  border-radius: var(--radius);
  font-size: .87rem;
  font-weight: 600;
}
.btn-cookie-decline {
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.7);
  padding: 9px 22px;
  border-radius: var(--radius);
  font-size: .87rem;
}

/* ================================================================
   INNER PAGE HERO
================================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3b6b 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero .section-tag { margin-bottom: 12px; }
.page-hero .section-title.light { margin-bottom: 14px; }
.page-hero .section-subtitle.light { margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  font-size: .83rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { width: 4px; height: 4px; background: rgba(255,255,255,.3); border-radius: 50%; }

/* ================================================================
   SERVICES PAGE
================================================================ */
.services-full {
  padding: 90px 0;
}
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-full-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.service-full-card:hover { box-shadow: var(--shadow-lg); }
.service-full-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}
.service-full-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.service-full-body h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.service-full-body p {
  color: var(--gray-500);
  font-size: .9rem;
  flex: 1;
  line-height: 1.7;
}
.service-features {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--gray-700);
}
.service-feature::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ================================================================
   ABOUT PAGE
================================================================ */
.about-intro {
  padding: 90px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; height: 420px; object-fit: cover; }
.about-text .section-subtitle { max-width: 100%; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.value-card {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 16px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.value-card h4 { color: var(--navy); font-weight: 600; font-size: .93rem; margin-bottom: 4px; }
.value-card p { font-size: .82rem; color: var(--gray-500); }

.team-section {
  padding: 80px 0;
  background: var(--off-white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}
.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
}
.team-card-body { padding: 24px; }
.team-card h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { color: var(--gold); font-size: .83rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.team-card p { color: var(--gray-500); font-size: .87rem; margin-top: 10px; }

.certifications-section {
  padding: 80px 0;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.cert-card {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.cert-icon {
  width: 56px; height: 56px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.cert-icon svg { width: 28px; height: 28px; stroke: var(--navy); fill: none; stroke-width: 1.6; }
.cert-card h4 { font-size: .92rem; color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.cert-card p { font-size: .8rem; color: var(--gray-500); }

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-section {
  padding: 90px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--gray-500);
  font-size: .93rem;
  margin-bottom: 32px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.contact-detail-text label {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
  margin-bottom: 3px;
}
.contact-detail-text a,
.contact-detail-text span {
  font-size: .95rem;
  font-weight: 500;
  color: var(--navy);
}
.contact-detail-text a:hover { color: var(--gold); }

/* Contact form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-notice {
  font-size: .8rem;
  color: var(--gray-500);
  margin-top: 12px;
}
.form-notice a { color: var(--gold); }
.form-success {
  display: none;
  background: #e9f7ef;
  border: 1px solid #4caf50;
  border-radius: var(--radius);
  padding: 16px;
  color: #2e7d32;
  font-size: .9rem;
  margin-top: 16px;
}
.map-section {
  padding: 0 0 90px;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================================================
   LEGAL PAGES (Privacy, Terms, Cookies)
================================================================ */
.legal-section {
  padding: 90px 0;
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--navy);
  margin: 36px 0 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--gray-700);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
  color: var(--gray-700);
  font-size: .95rem;
  line-height: 1.8;
}
.legal-content a { color: var(--gold); }
.legal-updated {
  display: inline-block;
  background: var(--off-white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: .82rem;
  color: var(--gray-500);
  margin-bottom: 36px;
}
.legal-toc {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 40px;
}
.legal-toc h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-toc ul a {
  color: var(--gold);
  font-size: .87rem;
}
.legal-toc ul a:hover { text-decoration: underline; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { flex-direction: row; }
  .hero-stat-row { grid-template-columns: repeat(4, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-img-wrap img { height: 360px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .service-full-card { grid-template-columns: 200px 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 24px; gap: 8px; border-top: 1px solid rgba(201,168,76,.2); }
  .nav-menu.open { display: flex; }
  /* Regular nav links on mobile */
  .nav-menu a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); width: 100%; color: rgba(255,255,255,.85); }
  /* CTA button on mobile — maximum override including .active state */
  .nav-menu a.btn,
  .nav-menu a.btn-primary,
  .nav-menu a.nav-cta,
  .nav-menu a.btn.active,
  .nav-menu a.btn-primary.active,
  .nav-menu a.nav-cta.active,
  .nav-menu a.btn:hover,
  .nav-menu a.btn-primary:hover,
  .nav-menu a.nav-cta:hover {
    display: inline-flex !important;
    padding: 13px 24px !important;
    border-bottom: none !important;
    width: auto !important;
    align-self: flex-start;
    margin-top: 10px;
    border-radius: var(--radius) !important;
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 700 !important;
    font-size: .92rem !important;
    letter-spacing: 0 !important;
  }
  .nav-menu a.btn::after,
  .nav-menu a.btn-primary::after,
  .nav-menu a.nav-cta::after { display: none !important; width: 0 !important; }
  .burger { display: flex; }
  .hero-stat-row { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-direction: column; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .service-full-card { grid-template-columns: 1fr; }
  .service-full-card img { height: 200px; }
  .team-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-inner { justify-content: center; }
  .trust-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; }
}
