/* ===================================================
   MATSON MECHANICAL SERVICE — Main Stylesheet
   Colors from logo: Navy Blue, Flame Red, Charcoal
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy: #2C4A6E;
  --navy-dark: #1a2e45;
  --navy-light: #3a5f8a;
  --flame: #C0392B;
  --flame-light: #e74c3c;
  --blue-accent: #3B7DC4;
  --charcoal: #1a1a1a;
  --mid-gray: #555;
  --light-gray: #f4f6f8;
  --border: #dde3ea;
  --white: #ffffff;
  --text: #222;
  --transition: 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Top Bar ---- */
.top-bar {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-size: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
}

.top-bar a {
  color: #f0c040;
  font-weight: 600;
  font-size: 15px;
  transition: color var(--transition);
}
.top-bar a:hover { color: var(--flame-light); }

/* ---- Header / Nav ---- */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border-bottom: 3px solid var(--flame);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

/* Transparent M logo in nav */
.nav-logo-icon {
  height: 64px;
  width: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav ul li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--flame);
  background: rgba(192, 57, 43, 0.06);
}

.nav-cta {
  background: var(--flame) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--flame-light) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO SECTION ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,46,69,0.97) 0%, rgba(44,74,110,0.88) 50%, rgba(192,57,43,0.15) 100%);
  z-index: 1;
}

/* SVG grid pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,0.18);
  border: 1px solid rgba(192,57,43,0.4);
  color: #f5a59d;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--flame-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: #f0c040;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--flame);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  transition: all var(--transition);
  border: 2px solid var(--flame);
}

.btn-primary:hover {
  background: var(--flame-light);
  border-color: var(--flame-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #f0c040;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 36px;
}

.hero-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.hero-card-items { display: flex; flex-direction: column; gap: 14px; }

.hero-card-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

.hero-card-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(192,57,43,0.4);
}

.hero-card-icon {
  font-size: 22px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192,57,43,0.2);
  border-radius: 8px;
  flex-shrink: 0;
}

.hero-card-item-text strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-card-item-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.hero-card-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.hero-card-cta a {
  display: block;
  background: var(--flame);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px;
  border-radius: 6px;
  transition: all var(--transition);
}

.hero-card-cta a:hover { background: var(--flame-light); }

/* ---- Trust Band ---- */
.trust-band {
  background: var(--navy);
  padding: 22px 24px;
}

.trust-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-item .icon {
  font-size: 18px;
  opacity: 0.9;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

/* ---- Section Base ---- */
section { padding: 80px 24px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--flame);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--mid-gray);
  max-width: 560px;
  line-height: 1.8;
}

/* ---- Services Section ---- */
.services-section { background: var(--light-gray); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--flame);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: block;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-card a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.service-card a:hover { color: var(--flame); }

/* ---- Why Choose Us ---- */
.why-section {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(192,57,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left .section-title { color: var(--white); }
.why-left .section-desc { color: rgba(255,255,255,0.6); }

.why-features { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: all var(--transition);
}

.why-feature:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(192,57,43,0.3);
}

.why-feature-icon {
  font-size: 22px;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192,57,43,0.15);
  border-radius: 8px;
  border: 1px solid rgba(192,57,43,0.25);
}

.why-feature-text strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-feature-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.why-stat-card:hover {
  background: rgba(192,57,43,0.1);
  border-color: rgba(192,57,43,0.3);
}

.why-stat-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #f0c040;
  margin-bottom: 6px;
}

.why-stat-card span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- Process Section ---- */
.process-section { background: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--border);
  transition: all var(--transition);
}

.process-step:hover .step-number {
  background: var(--flame);
  box-shadow: 0 0 0 2px rgba(192,57,43,0.2), 0 8px 20px rgba(192,57,43,0.3);
}

.process-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.7;
  padding: 0 8px;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--flame) 0%, #8b1a0f 100%);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.523-4.477-10-10-10s-10 4.477-10 10 4.477 10 10 10 10-4.477 10-10zm10 0c0 5.523 4.477 10 10 10s10-4.477 10-10-4.477-10-10-10-10 4.477-10 10z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 32px;
}

.cta-banner .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--flame);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all var(--transition);
  margin: 0 8px;
}

.cta-banner .btn-white:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.cta-banner .btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all var(--transition);
  margin: 0 8px;
}

.cta-banner .btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ---- Service Areas ---- */
.areas-section { background: var(--light-gray); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.area-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--navy);
  font-weight: 600;
  transition: all var(--transition);
}

.area-chip:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ---- Footer ---- */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 52px 24px 28px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-logo {
  height: 90px;
  width: auto;
  margin-bottom: 16px;
  background: rgba(255,255,255,1);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 10px;
  padding: 10px 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin: 14px 0 20px;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
}

.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand .brand-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
  margin-top: 2px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--flame-light); }

.footer-phone-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover { color: var(--flame-light); }
.footer-col ul li a::before { content: '→'; font-size: 11px; opacity: 0.5; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}

/* ========================
   SERVICES PAGE
======================== */

.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.3); margin: 0 6px; }

/* Service Detail Cards */
.service-detail-section { background: var(--white); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}

.service-detail-grid:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-detail-visual {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 0;
  text-align: center;
  border: 1px solid var(--border);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.service-detail-visual img.svc-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  display: block;
}

.service-detail-visual img.svc-photo.pos-bottom {
  object-position: center bottom;
}

.service-detail-visual img.svc-photo.pos-top {
  object-position: center top;
}

/* overlay label on photos */
.service-detail-visual .photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,46,69,0.85) 0%, transparent 100%);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 28px 16px 14px;
  text-align: center;
  border-radius: 0 0 12px 12px;
}

.service-detail-visual .big-icon {
  font-size: 64px;
  line-height: 1;
}

.service-detail-visual .icon-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.service-detail-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.service-detail-text p {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-checklist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.service-checklist li::before {
  content: '✓';
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ========================
   FAQ PAGE
======================== */

.faq-section { background: var(--white); }

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 52px;
  align-items: flex-start;
  margin-top: 52px;
}

.faq-sidebar { position: sticky; top: 108px; }

.faq-nav { display: flex; flex-direction: column; gap: 6px; }

.faq-nav-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-gray);
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.faq-nav-item:hover,
.faq-nav-item.active {
  background: var(--light-gray);
  color: var(--navy);
  border-left-color: var(--flame);
}

.faq-categories { display: flex; flex-direction: column; gap: 40px; }

.faq-category h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-category h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--navy); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--white);
  transition: background var(--transition);
  user-select: none;
  gap: 12px;
}

.faq-question:hover { background: var(--light-gray); }
.faq-item.open .faq-question { background: var(--light-gray); color: var(--navy); }

.faq-chevron {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  transition: all var(--transition);
  color: var(--mid-gray);
}

.faq-item.open .faq-chevron {
  background: var(--navy);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.faq-item.open .faq-answer { display: block; }

/* Testimonials */
.testimonials-section { background: var(--light-gray); }

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.testimonial-quote {
  font-size: 48px;
  line-height: 0.8;
  color: var(--flame);
  font-family: 'Playfair Display', serif;
  opacity: 0.25;
  position: absolute;
  top: 20px; left: 28px;
}

.testimonial-stars {
  font-size: 14px;
  color: #f0a500;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  padding-top: 10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.testimonial-author-info span {
  font-size: 12px;
  color: var(--mid-gray);
}

/* ========================
   RESPONSIVE
======================== */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-right { grid-template-columns: repeat(4, 1fr); }
  .why-stat-card:nth-child(odd) { margin-top: 0; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-detail-grid.reverse { direction: ltr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { display: none; }
}

@media (max-width: 768px) {
  section { padding: 56px 20px; }
  .hamburger { display: flex; }
  nav ul {
    display: none;
    position: fixed;
    top: 88px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
    z-index: 999;
  }
  nav ul.open { display: flex; }
  nav ul li { width: 100%; }
  nav ul li a {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 8px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .trust-band-inner { gap: 16px; }
  .trust-divider { display: none; }
}
