:root {
  --primary-dark: #0b1528;
  --primary-navy: #0f172a;
  --electric-blue: #0284c7;
  --electric-blue-hover: #0369a1;
  --accent-cyan: #38bdf8;
  --status-green: #10b981;
  --status-amber: #f59e0b;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --border-light: #cbd5e1;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 14px rgba(11,21,40,0.08);
  --shadow-lg: 0 10px 25px rgba(11,21,40,0.12);
  --max-width: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--electric-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--electric-blue-hover);
}

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

/* --- UTILITY TOP BAR --- */
.utility-bar {
  background: var(--primary-dark);
  color: #cbd5e1;
  font-size: 0.8125rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.utility-inner p {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--status-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px var(--status-green);
}

.utility-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.utility-links span, .utility-links a {
  color: #cbd5e1;
}

/* --- MAIN HEADER & NAV --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  background: var(--primary-dark);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 1.125rem;
  color: var(--primary-dark);
  font-weight: 800;
  line-height: 1.2;
}

.brand-text small {
  font-size: 0.7rem;
  color: var(--electric-blue);
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: var(--electric-blue);
}

.nav-dd {
  position: relative;
  display: inline-block;
}

.nav-dd-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-dark);
  padding: 0.5rem 0;
}

.nav-dd-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  z-index: 110;
}

.nav-dd:hover .nav-dd-panel,
.nav-dd:focus-within .nav-dd-panel {
  display: block;
}

.nav-dd-panel a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-weight: 500;
}

.nav-dd-panel a:hover {
  background: var(--bg-light);
  color: var(--electric-blue);
}

.nav-dd-all {
  border-top: 1px solid var(--border-color);
  margin-top: 0.5rem;
  padding-top: 0.5rem !important;
  font-weight: 700 !important;
  color: var(--electric-blue) !important;
}

.nav-call {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--primary-dark);
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
}

.nav-call:hover {
  background: #1e293b;
}

.nav-call .phone-icon {
  font-size: 1.1rem;
  color: var(--accent-cyan);
}

.nav-call div {
  display: flex;
  flex-direction: column;
}

.nav-call small {
  font-size: 0.6875rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-call strong {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-close {
  display: none;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0b1528 0%, #0f2042 100%);
  color: #ffffff;
  padding: 3.5rem 0 5rem 0;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--electric-blue);
  margin-bottom: 0.75rem;
}

.eyebrow-light {
  color: var(--accent-cyan);
}

.eyebrow-light span {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.button-primary {
  background: var(--electric-blue);
  color: #ffffff !important;
}

.button-primary:hover {
  background: var(--electric-blue-hover);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.button-light {
  background: #ffffff;
  color: var(--primary-dark) !important;
}

.button-light:hover {
  background: #f1f5f9;
}

.button-full {
  width: 100%;
}

.text-link-light {
  color: #94a3b8;
  font-size: 0.9375rem;
  font-weight: 600;
}

.text-link-light:hover {
  color: #ffffff;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
}

.hero-proof strong {
  font-size: 1.125rem;
  font-weight: 800;
  color: #ffffff;
}

.hero-proof span {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.3;
}

/* --- HERO REQUEST FORM CARD --- */
.request-card {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.2);
}

.request-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.request-icon {
  width: 36px;
  height: 36px;
  background: #e0f2fe;
  color: var(--electric-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
}

.request-heading h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0;
}

.request-heading small {
  font-size: 0.75rem;
  color: var(--electric-blue);
  font-weight: 700;
  text-transform: uppercase;
}

.request-card > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
}

.full-field {
  grid-column: span 2;
}

.form-grid input,
.form-grid select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text-dark);
  background: #ffffff;
  transition: border-color 0.2s;
}

.form-grid input:focus,
.form-grid select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--electric-blue);
}

.form-note {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  background: #ecfdf5;
  color: #065f46;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  text-align: center;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  pointer-events: none;
}

/* --- TRUST STRIP --- */
.trust-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.trust-item span {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--electric-blue);
  line-height: 1;
}

.trust-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.trust-item p strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--primary-dark);
}

/* --- SECTION COMMON --- */
.section {
  padding: 4.5rem 0;
}

.section-ivory {
  background-color: var(--bg-light);
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading.centered {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: 2.125rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-heading p {
  font-size: 1.0625rem;
  color: var(--text-muted);
}

.heading-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.heading-split h2 {
  font-size: 2.125rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.heading-split p {
  max-width: 480px;
  color: var(--text-muted);
}

/* --- SPLIT LAYOUT / ABOUT PREVIEW --- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.info-card-box {
  background: linear-gradient(135deg, #0b1528 0%, #1e293b 100%);
  color: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.info-card-badge {
  display: inline-block;
  background: var(--electric-blue);
  color: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.info-card-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.info-card-box p {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.section-copy h2 {
  font-size: 2.125rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-copy .lead {
  font-size: 1.125rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-copy p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

.check-list {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
}

.check-list li span {
  color: var(--electric-blue);
  font-weight: 800;
}

/* --- SERVICE CARDS GRID --- */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.svc-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--electric-blue);
}

.svc-ic {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f0f9ff;
  color: var(--electric-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.svc-ic svg {
  width: 24px;
  height: 24px;
}

.svc-card strong {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.svc-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.svc-more {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--electric-blue);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* --- COMPATIBILITY STRIP --- */
.brand-strip {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0;
}

.brand-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.brand-strip-inner p {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-muted);
}

.brand-logos {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.brand-logos span {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--bg-light);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

/* --- SPECIAL RIBBON --- */
.special-ribbon {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #ffffff;
  padding: 2.5rem 0;
}

.special-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.special-inner h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.special-inner p {
  color: #cbd5e1;
  font-size: 0.9375rem;
  max-width: 500px;
}

/* --- WHY CHOOSE US --- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.benefit-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--electric-blue);
  display: block;
  margin-bottom: 0.75rem;
}

.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- PRICING SECTION --- */
.pricing-section {
  background: var(--primary-dark);
  color: #ffffff;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 2.5rem;
  align-items: center;
}

.pricing-intro h2 {
  font-size: 2.125rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.pricing-intro p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.price-card {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--border-color);
}

.price-card.featured {
  border: 2px solid var(--electric-blue);
  position: relative;
}

.price-card small {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--electric-blue);
}

.price-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0.5rem 0 1rem 0;
  line-height: 1.2;
}

.price-val span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
}

.price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.price-card ul li {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.price-card ul li::before {
  content: "•";
  color: var(--electric-blue);
  font-weight: 800;
}

/* --- PROCESS SECTION --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-step {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-color);
  position: relative;
}

.step-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--electric-blue);
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- COMMON PROBLEMS --- */
.problems-section {
  background: #0f172a;
  color: #ffffff;
  padding: 4.5rem 0;
}

.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}

.problems-intro h2 {
  font-size: 2.125rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.problems-intro p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.problem-item span {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.problem-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.problem-item p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.4;
}

/* --- SERVICE AREAS SECTION --- */
.area-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.area-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.area-columns ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.area-columns a {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.area-columns a:hover {
  color: var(--electric-blue);
}

.area-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* --- FAQ ACCORDION --- */
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 3rem;
}

.faq-intro h2 {
  font-size: 2.125rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.faq-intro p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  padding: 1.125rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.accordion-trigger:hover {
  background: var(--bg-light);
}

.accordion-icon {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--electric-blue);
  line-height: 1;
}

.accordion-content {
  display: none;
  padding: 0 1.25rem 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* --- CONTACT SECTION --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.contact-copy h2 {
  font-size: 2.125rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-detail-box {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.contact-detail-box small {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.contact-detail-box strong {
  font-size: 1.0625rem;
  color: var(--primary-dark);
}

.contact-form {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* --- FOOTER --- */
.site-footer {
  background: var(--primary-dark);
  color: #cbd5e1;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

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

.footer-brand p {
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 1rem 0;
  line-height: 1.6;
}

.footer-phone {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
  margin-bottom: 1rem;
}

.site-footer h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer ul a, .site-footer p a {
  color: #cbd5e1;
  font-size: 0.875rem;
}

.site-footer ul a:hover, .site-footer p a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  font-size: 0.8125rem;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- STICKY MOBILE CALL BUTTON --- */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--electric-blue);
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(2,132,199,0.45);
  z-index: 999;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
}

.sticky-call span {
  font-size: 1.25rem;
}

/* --- CONTENT PAGE STYLES (Services, Locations, About) --- */
.page-hero {
  background: linear-gradient(135deg, #0b1528 0%, #0f2042 100%);
  color: #ffffff;
  padding: 3.5rem 0 3.5rem 0;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
}

.page-hero p {
  font-size: 1.125rem;
  color: #cbd5e1;
  max-width: 780px;
  margin-bottom: 1.5rem;
}

.content-body {
  padding: 3.5rem 0;
}

.content-body h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 2rem 0 1rem 0;
}

.content-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 1.5rem 0 0.5rem 0;
}

.content-body p {
  color: #334155;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.content-body ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: #334155;
}

.content-body ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.highlight-box {
  background: var(--bg-light);
  border-left: 4px solid var(--electric-blue);
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.75rem 0;
}

.highlight-box strong {
  display: block;
  font-size: 1.125rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
  .hero-layout, .split-layout, .pricing-layout, .problems-grid, .area-layout, .faq-layout, .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .benefit-grid, .price-cards, .process-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.125rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-field {
    grid-column: span 1;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sticky-call {
    display: flex;
  }

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