/* ============================================================
   Portland Concrete Company – Service Page Design System
   Unique layout distinct from the homepage
   Color Palette: Forest Green + Warm Sandstone (shared)
   ============================================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #00519C;
  --primary-light: #2875BA;
  --primary-dark: #003B73;
  --primary-fg: #FFFFFF;

  --accent: #D4A373;
  --accent-light: #E6C9A8;
  --accent-dark: #B8864E;

  --bg-main: #FAFAF8;
  --bg-alt: #F0EDE8;
  --bg-muted: #F5F3EF;

  --text-heading: #1A1A1A;
  --text-body: #4A4A4A;
  --text-muted: #7A7A7A;
  --text-light: #9A9A9A;

  --card-bg: #FFFFFF;
  --border: #E0DDD5;
  --border-light: #EBE8E2;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover { color: var(--primary-light); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.25;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); }

p { margin-bottom: 1rem; }
ul, ol { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--primary-fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent);
  color: #1A1A1A;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--primary-dark);
  color: var(--primary-fg);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  text-align: center;
}
.top-bar a {
  color: var(--accent-light);
  font-weight: 600;
}
.top-bar a:hover { color: #fff; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--card-bg);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--primary);
  background: rgba(0,81,156,0.06);
}

.nav-cta { display: none; }

.nav-phone-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-fg);
  flex-shrink: 0;
}

.nav-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  color: var(--text-heading);
  flex-shrink: 0;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--card-bg);
  z-index: 200;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.mobile-menu-header .nav-brand-logo {
  height: 36px;
  width: auto;
}
.mobile-menu-close {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu-links a {
  padding: 0.85rem 0.5rem;
  font-size: 1rem;
  color: var(--text-heading);
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu-cta { margin-top: 2rem; }

/* ============================================================
   SERVICE PAGE – UNIQUE DESIGN (NOT HOMEPAGE)
   ============================================================ */

/* ---------- Service Hero (Compact, Split-layout) ---------- */
.svc-hero {
  background: linear-gradient(160deg, var(--primary-dark) 0%, #002B54 60%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.svc-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,163,115,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.svc-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom right, transparent 49.5%, var(--bg-main) 50%);
  z-index: 2;
}

.svc-hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0 4rem;
  align-items: center;
}

.svc-hero-text {
  color: #fff;
}

.svc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.svc-breadcrumb a {
  color: rgba(255,255,255,0.55);
  transition: color 0.25s ease;
}
.svc-breadcrumb a:hover { color: var(--accent-light); }
.svc-breadcrumb svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
}

.svc-hero-text h1 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  line-height: 1.2;
}

.svc-hero-text h1 span {
  color: var(--accent-light);
}

.svc-hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.svc-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.svc-hero .btn-accent {
  font-weight: 700;
}

.svc-hero .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.svc-hero .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}

.svc-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(255,255,255,0.1);
  max-height: 360px;
}
.svc-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Trust Ribbon ---------- */
.svc-trust {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.svc-trust-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
}
.svc-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  white-space: nowrap;
}
.svc-trust-item svg {
  width: 16px; height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ---------- Service Sections ---------- */
.svc-section {
  padding: 4rem 0;
}

.svc-section-header {
  margin-bottom: 2rem;
}
.svc-section-header h2 {
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
.svc-section-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 0.6rem;
}
.svc-section-header p {
  color: var(--text-muted);
  max-width: 680px;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ---------- Content Split (Text + Image) ---------- */
.svc-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.svc-split-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-body);
}

.svc-split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.svc-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}
.svc-split-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* ---------- Signs / Checklist Grid ---------- */
.svc-signs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.svc-sign-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}
.svc-sign-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.svc-sign-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(45,106,79,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.svc-sign-icon svg {
  width: 18px; height: 18px;
}

.svc-sign-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.svc-sign-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------- Options / Service Cards ---------- */
.svc-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.svc-option-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.svc-option-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transition: width 0.3s ease;
}
.svc-option-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.svc-option-card:hover::before {
  width: 6px;
  background: var(--accent);
}

.svc-option-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  padding-left: 0.75rem;
}
.svc-option-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
  padding-left: 0.75rem;
}

/* ---------- Local Conditions ---------- */
.svc-local {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.svc-local::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,163,115,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.svc-local h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.svc-local h2::after {
  background: var(--accent);
}
.svc-local p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 800px;
}
.svc-local .svc-section-header p {
  color: rgba(255,255,255,0.7);
}

/* ---------- Process / Timeline ---------- */
.svc-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

.svc-process-step {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 2rem;
  position: relative;
}
.svc-process-step:last-child {
  padding-bottom: 0;
}

/* Vertical line connecting steps */
.svc-process-step::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.svc-process-step:last-child::before {
  display: none;
}

.svc-process-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--bg-main), 0 0 0 6px var(--border);
}
.bg-alt .svc-process-num {
  box-shadow: 0 0 0 4px var(--bg-alt), 0 0 0 6px var(--border);
}

.svc-process-content {
  flex: 1;
  padding-top: 0.3rem;
}
.svc-process-content h3 {
  margin-bottom: 0.35rem;
}
.svc-process-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---------- Mid-page CTA Banner ---------- */
.svc-cta-mid {
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 3rem 0;
}
.svc-cta-mid h2 {
  margin-bottom: 0.75rem;
}
.svc-cta-mid h2::after { display: none; }
.svc-cta-mid p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
}
.svc-cta-mid .svc-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ---------- Why Choose Us Cards ---------- */
.svc-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.svc-why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}
.svc-why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.svc-why-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.svc-why-icon svg {
  width: 20px; height: 20px;
}

.svc-why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.svc-why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ---------- FAQ Accordion ---------- */
.svc-faq-wrap {
  max-width: 800px;
}

.svc-faq-item {
  border-bottom: 1px solid var(--border);
}
.svc-faq-item:last-child { border-bottom: none; }

.svc-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  text-align: left;
  line-height: 1.4;
  transition: color 0.25s ease;
}
.svc-faq-question:hover { color: var(--primary); }

.svc-faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.svc-faq-item.active .svc-faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.svc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.svc-faq-item.active .svc-faq-answer {
  max-height: 600px;
  padding-bottom: 1.25rem;
}
.svc-faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Other Services Grid ---------- */
.svc-other-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.svc-other-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  transition: all 0.25s ease;
  color: var(--text-heading);
  font-weight: 500;
  font-size: 0.92rem;
}
.svc-other-card:hover {
  border-color: var(--primary);
  background: rgba(45,106,79,0.04);
  transform: translateX(4px);
  color: var(--primary);
}
.svc-other-card svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ---------- Related Services ---------- */
.svc-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.svc-related-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.svc-related-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-3px);
}
.svc-related-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}
.svc-related-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.svc-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}
.svc-related-link svg {
  width: 14px; height: 14px;
  transition: transform 0.25s ease;
}
.svc-related-card:hover .svc-related-link svg {
  transform: translateX(3px);
}

/* ---------- Final CTA ---------- */
.svc-cta-final {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.svc-cta-final::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,163,115,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.svc-cta-final h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.svc-cta-final h2::after {
  background: var(--accent);
  margin: 0.6rem auto 0;
}
.svc-cta-final p {
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}
.svc-cta-final .svc-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.svc-cta-final .btn-accent {
  font-size: 1rem;
  padding: 1rem 2rem;
}
.svc-cta-final .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.svc-cta-final .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--accent-light); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ---------- Floating Phone ---------- */
.float-phone {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}
.float-phone:hover {
  transform: scale(1.1);
  color: #fff;
}

/* ---------- Section Backgrounds ---------- */
.bg-main { background: var(--bg-main); }
.bg-alt { background: var(--bg-alt); }
.bg-muted { background: var(--bg-muted); }

/* ---------- Content Body Text ---------- */
.svc-content p {
  font-size: 0.95rem;
  line-height: 1.75;
}

.svc-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.svc-content ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.65;
}
.svc-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============================================================
   Responsive Breakpoints
   ============================================================ */

/* Tablet (640px+) */
@media (min-width: 640px) {
  .svc-signs-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-options-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-why-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-other-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Medium (768px+) */
@media (min-width: 768px) {
  .svc-section { padding: 5rem 0; }

  .svc-hero-inner {
    grid-template-columns: 1fr 1fr;
    padding: 4rem 0 5rem;
  }

  .svc-split {
    grid-template-columns: 1fr 1fr;
  }

  .svc-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 3rem;
  }
  .svc-process-step::before {
    display: none;
  }
  .svc-process-num {
    box-shadow: none;
  }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .svc-other-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-phone-mobile { display: none; }
  .nav-menu-btn { display: none; }
  .float-phone { display: none; }
  .nav-brand-logo { height: 48px; }

  .svc-hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 4.5rem 0 5.5rem;
    gap: 3rem;
  }

  .svc-signs-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-options-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-why-grid { grid-template-columns: repeat(2, 1fr); }

  .svc-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 4rem;
  }

  .svc-other-grid { grid-template-columns: repeat(4, 1fr); }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
  .container { padding: 0 2rem; }
}

/* ---------- Modern Footer ---------- */
.footer-modern {
  background: #061B35;
  color: #A9C8EA;
  padding: 3.75rem 0 0;
}
.footer-modern .footer-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3.25rem;
}
.footer-modern h4 {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}
.footer-logo {
  display: block;
  width: min(100%, 210px);
  height: auto;
  margin: 0 0 1.1rem;
}
.footer-intro {
  color: #A9C8EA;
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 1.45rem;
  max-width: 27rem;
}
.footer-details {
  display: grid;
  gap: 0.72rem;
}
.footer-details p {
  color: #A9C8EA;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
.footer-details strong {
  color: #FFFFFF;
}
.footer-details a,
.footer-modern .footer-links a {
  color: #A9C8EA;
  transition: color 0.2s ease;
}
.footer-details a:hover,
.footer-modern .footer-links a:hover {
  color: #FFFFFF;
}
.footer-modern .footer-links {
  gap: 0.8rem;
}
.footer-modern .footer-links a {
  font-size: 0.94rem;
  line-height: 1.45;
}
.footer-map {
  border: 1px solid rgba(169, 200, 234, 0.38);
  border-radius: 0.85rem;
  overflow: hidden;
  background: #FFFFFF;
  aspect-ratio: 1.55 / 1;
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.footer-modern .footer-bottom {
  border-top: 1px solid rgba(169, 200, 234, 0.18);
  color: #A9C8EA;
  font-size: 0.84rem;
  padding: 1.35rem 0;
  text-align: left;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
@media (min-width: 720px) {
  .footer-modern .footer-layout {
    grid-template-columns: 1.25fr 1fr;
  }
  .footer-map-column {
    grid-column: span 2;
  }
  .footer-bottom-inner {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1100px) {
  .footer-modern .footer-layout {
    grid-template-columns: 1.35fr 0.95fr 0.85fr 1.2fr;
    gap: 3.25rem;
  }
  .footer-map-column {
    grid-column: auto;
  }
}
/* Keep all four footer sections inline on desktop. */
@media (min-width: 900px) {
  .footer-modern .footer-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(150px, 0.9fr) minmax(140px, 0.8fr) minmax(245px, 1.15fr);
    gap: 2.5rem;
    align-items: start;
  }
  .footer-modern .footer-map-column {
    grid-column: auto;
  }
}
/* ---------- Services Mega Menu ---------- */
.nav-services {
  position: relative;
}
.nav-services summary,
.mobile-services summary {
  align-items: center;
  color: var(--text-body);
  cursor: pointer;
  display: flex;
  font-size: 0.9rem;
  font-weight: 500;
  gap: 0.35rem;
  list-style: none;
  padding: 0.5rem 0.85rem;
  white-space: nowrap;
}
.nav-services summary::-webkit-details-marker,
.mobile-services summary::-webkit-details-marker { display: none; }
.nav-services summary:hover,
.nav-services[open] summary {
  background: rgba(0, 81, 156, 0.07);
  color: var(--primary);
  border-radius: var(--radius-sm);
}
.nav-services summary svg,
.mobile-services summary svg {
  height: 15px;
  transition: transform 0.2s ease;
  width: 15px;
}
.nav-services[open] summary svg,
.mobile-services[open] summary svg { transform: rotate(180deg); }
.services-mega {
  background: #FFFFFF;
  border: 1px solid rgba(0, 81, 156, 0.18);
  border-radius: 0.85rem;
  box-shadow: 0 18px 38px rgba(6, 27, 53, 0.16);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.25fr 1fr 1fr;
  left: -8rem;
  min-width: 43rem;
  padding: 1.35rem;
  position: absolute;
  top: calc(100% + 0.55rem);
  z-index: 300;
}
.services-mega-group {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.services-mega-title {
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.3rem;
  text-transform: uppercase;
}
.nav-links .services-mega a {
  border-radius: 0.35rem;
  color: var(--text-body);
  font-size: 0.84rem;
  line-height: 1.3;
  padding: 0.38rem 0.45rem;
}
.nav-links .services-mega a:hover {
  background: rgba(0, 81, 156, 0.08);
  color: var(--primary);
}
.nav-links .services-mega .services-mega-cta {
  background: var(--primary);
  color: #FFFFFF;
  font-weight: 600;
  margin-top: 0.5rem;
}
.nav-links .services-mega .services-mega-cta:hover {
  background: var(--primary-dark);
  color: #FFFFFF;
}
.mobile-services {
  border-bottom: 1px solid var(--border-light);
}
.mobile-services summary {
  color: var(--text-heading);
  font-size: 1rem;
  justify-content: space-between;
  padding: 0.85rem 0.5rem;
}
.mobile-service-links {
  background: rgba(0, 81, 156, 0.045);
  border-radius: 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0.3rem 0.75rem;
  padding: 0.45rem;
}
.mobile-menu-links .mobile-service-links a {
  border: 0;
  color: var(--text-body);
  font-size: 0.84rem;
  line-height: 1.3;
  padding: 0.65rem 0.55rem;
}
.mobile-menu-links .mobile-service-links a:hover { color: var(--primary); }
@media (max-width: 480px) {
  .mobile-service-links { grid-template-columns: 1fr; }
}
