/* ============================================================
   MIGHTY MAIDS — Main Stylesheet
   Primary: #1D73BC | Secondary: #243E75 | Accent: #FEED21
   ============================================================ */

/* --- Google Fonts Import (fallback — also loaded via wp_enqueue_style) --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  --primary:      #1D73BC;
  --primary-dark: #1560a0;
  --secondary:    #243E75;
  --accent:       #FEED21;
  --accent-dark:  #e6d400;
  --white:        #ffffff;
  --light:        #f4f8fd;
  --light-gray:   #eef2f7;
  --gray:         #6b7280;
  --dark-gray:    #374151;
  --dark:         #111827;
  --text:         #1f2937;
  --border:       #e5e7eb;

  --font-body:    'Nunito', sans-serif;
  --font-display: 'Playfair Display', serif;

  --shadow-sm: 0 2px 8px rgba(29, 115, 188, 0.08);
  --shadow-md: 0 4px 24px rgba(29, 115, 188, 0.14);
  --shadow-lg: 0 8px 48px rgba(29, 115, 188, 0.18);

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--secondary);
  box-shadow: 0 4px 20px rgba(254, 237, 33, 0.4);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(254, 237, 33, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-blue {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-blue:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
/* Used on dark-background pages where outline needs dark border */
.btn-outline-dark {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-outline-dark:hover {
  background: var(--secondary);
  color: var(--white);
}
.btn-lg { padding: 18px 38px; font-size: 17px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--secondary);
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 13.5px;
  font-weight: 600;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar__info {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
}
.top-bar__item svg { flex-shrink: 0; }
.top-bar__item a { color: rgba(255,255,255,0.85); }
.top-bar__item a:hover { color: var(--accent); }
.top-bar__phone {
  color: var(--accent);
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.top-bar__phone:hover { color: var(--accent-dark); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(29,115,188,0.10);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.nav__logo img { height: 64px; width: auto; }
/* WP custom logo wraps in <a> */
.nav__logo .custom-logo-link img { height: 64px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__links a,
.nav__links li a {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.nav__links a:hover,
.nav__links a.active,
.nav__links li.current-menu-item > a,
.nav__links li.current_page_item > a {
  color: var(--primary);
  background: rgba(29,115,188,0.08);
}
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--secondary);
  border-radius: 4px;
  transition: all var(--transition);
}

/* ============================================================
   HERO — Split-panel layout: gradient left / image right
   ============================================================ */
.hero {
  position: relative;
  min-height: 640px;
  background: linear-gradient(110deg, var(--secondary) 0%, var(--primary) 100%);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: -80px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -160px; left: 200px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(254, 237, 33, 0.05);
  pointer-events: none;
  z-index: 1;
}
.hero__image-panel {
  position: absolute;
  top: 0; right: 0;
  width: 52%; height: 100%;
  overflow: hidden;
  z-index: 0;
}
.hero__image-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero__image-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  var(--secondary) 0%, rgba(29,62,117,0.55) 40%, transparent 80%),
    linear-gradient(to top,    rgba(29,62,117,0.45) 0%, transparent 35%);
  z-index: 1;
}
.hero__container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 54%;
  max-width: 640px;
  padding: 88px 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254,237,33,0.18);
  border: 1px solid rgba(254,237,33,0.4);
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}
.hero h1 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  font-weight: 500;
  max-width: 500px;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__trust-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 13.5px;
  font-weight: 700;
}
.hero__trust-icon {
  width: 32px; height: 32px;
  background: rgba(254,237,33,0.15);
  border: 1px solid rgba(254,237,33,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--secondary);
  padding: 28px 0;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stats-bar__item {
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__number {
  font-weight: 900;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.stats-bar__label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 88px 0; }
.section--light { background: var(--light); }
.section--dark  { background: var(--secondary); }

.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(29,115,188,0.08);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section--dark .section__label {
  color: var(--accent);
  background: rgba(254,237,33,0.12);
}
.section__title {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section--dark .section__title { color: var(--white); }
.section__subtitle {
  font-size: 17px;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 52px;
}
.section--dark .section__subtitle { color: rgba(255,255,255,0.7); }
.section__header { margin-bottom: 52px; }
.section__header--center { text-align: center; }
.section__header--center .section__subtitle { margin-left: auto; margin-right: auto; }
.section__title em { font-style: normal; color: var(--primary); }
.section--dark .section__title em { color: var(--accent); }
.section__cta-row { text-align: center; margin-top: 40px; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card__icon {
  width: 60px; height: 60px;
  background: rgba(29,115,188,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-card__icon { background: var(--primary); }
.service-card__title {
  font-weight: 800;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.65;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  margin-top: 16px;
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why__image-wrap { position: relative; }
.why__image {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.why__badge {
  position: absolute;
  bottom: 28px; right: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}
.why__badge-number {
  font-weight: 900;
  font-size: 36px;
  color: var(--primary);
  line-height: 1;
  display: block;
}
.why__badge-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.why-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.why-item__icon {
  width: 44px; height: 44px;
  background: rgba(29,115,188,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-item__title { font-weight: 800; font-size: 15.5px; color: var(--dark); margin-bottom: 4px; }
.why-item__desc  { font-size: 13.5px; color: var(--gray); }

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}
.trust-badge span { font-size: 16px; }
/* Light variant used on contact page */
.trust-badge--light {
  background: rgba(29,115,188,0.08);
  color: var(--secondary);
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.area-chip {
  background: rgba(29,115,188,0.07);
  border: 1.5px solid rgba(29,115,188,0.15);
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--secondary);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.area-chip:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.area-chip::before { content: '📍'; font-size: 13px; }
.areas-footer-note {
  text-align: center;
  color: var(--gray);
  margin-top: 32px;
  font-size: 15px;
  font-weight: 600;
}
.areas-footer-note a { color: var(--primary); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
}
.testimonial-card__quote {
  font-size: 48px;
  color: var(--accent);
  line-height: 0.8;
  font-family: Georgia, serif;
  margin-bottom: 16px;
  display: block;
}
.testimonial-card__stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card__text {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: var(--secondary);
  flex-shrink: 0;
}
.testimonial-card__name     { font-weight: 800; color: var(--white); font-size: 15px; }
.testimonial-card__location { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(254,237,33,0.06);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 46px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}
.cta-section h2 em { font-style: normal; color: var(--accent); }
.cta-section__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.urgency-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254,237,33,0.12);
  border: 1px solid rgba(254,237,33,0.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
/* Allow section--light pages to continue the background wave correctly */
.page-hero + .section--light::before { display: none; }
.page-hero h1 {
  font-weight: 900;
  font-size: clamp(30px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  font-weight: 600;
}
.breadcrumb a   { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-body-text {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.team-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  transform: translateY(-4px);
}
.value-card__icon  { font-size: 44px; margin-bottom: 16px; display: block; }
.value-card__title { font-weight: 800; font-size: 18px; color: var(--dark); margin-bottom: 10px; }
.value-card__desc  { color: var(--gray); font-size: 14.5px; }

.why-local-col { display: flex; flex-direction: column; gap: 20px; }

.our-promise-box {
  background: linear-gradient(135deg, var(--light) 0%, rgba(29,115,188,0.06) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.our-promise-box h3 { font-weight: 900; font-size: 22px; color: var(--dark); }
.promise-box__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  margin-bottom: 8px;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1.5px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail--reverse   { direction: rtl; }
.service-detail--reverse > * { direction: ltr; }
.service-detail__icon-big {
  font-size: 56px;
  display: block;
  margin-bottom: 20px;
}
.service-detail h2 {
  font-weight: 900;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--dark);
  margin-bottom: 14px;
}
.service-detail p {
  color: var(--gray);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.benefit-list { display: flex; flex-direction: column; gap: 10px; }
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--dark-gray);
  font-weight: 600;
}
.benefit-item::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(29,115,188,0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}
.service-detail__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(29,115,188,0.12) 0%, rgba(36,62,117,0.15) 100%);
  box-shadow: var(--shadow-md);
}
.service-detail__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.service-detail:hover .service-detail__visual img {
  transform: scale(1.03);
}

/* PRICING BANNER */
.pricing-banner {
  background: var(--accent);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.pricing-banner__text h3 {
  font-weight: 900;
  font-size: 26px;
  color: var(--secondary);
  margin-bottom: 6px;
}
.pricing-banner__text p { color: var(--secondary); opacity: 0.8; font-size: 15px; font-weight: 600; }
.pricing-banner__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.pricing-phone-link {
  font-weight: 800;
  color: var(--secondary);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info__title {
  font-weight: 900;
  font-size: 30px;
  color: var(--dark);
  margin-bottom: 16px;
}
.contact-info__sub {
  color: var(--gray);
  font-size: 15.5px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.contact-detail-list { 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(29,115,188,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-detail__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 2px;
}
.contact-detail__value { font-weight: 700; color: var(--dark); font-size: 15.5px; }
.contact-detail__value a { color: var(--primary); transition: color var(--transition); }
.contact-detail__value a:hover { color: var(--primary-dark); }

.contact-areas-box {
  margin-top: 36px;
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-areas-box h3 { font-weight: 800; font-size: 16px; color: var(--dark); margin-bottom: 14px; }
.contact-areas-list { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-area-chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
}
.contact-trust-row { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}
.form-title    { font-weight: 900; font-size: 22px; color: var(--dark); margin-bottom: 6px; }
.form-subtitle { font-size: 14px; color: var(--gray); margin-bottom: 28px; }
.form-group    { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--dark-gray);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,115,188,0.12);
}
.form-group input.field-error,
.form-group select.field-error { border-color: #ef4444; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row          { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit       { width: 100%; justify-content: center; font-size: 16px; padding: 16px; border-radius: 10px; }
.form-success {
  background: #ecfdf5;
  border: 1.5px solid #6ee7b7;
  color: #065f46;
  border-radius: 10px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  margin-top: 16px;
}
.form-error {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  color: #991b1b;
  border-radius: 10px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  margin-top: 16px;
}
.form-privacy-note {
  font-size: 12px;
  color: var(--gray);
  margin-top: 14px;
  text-align: center;
}
.form-privacy-note a { color: var(--primary); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1.5px solid var(--border);
}
.faq-item h3 { font-weight: 800; font-size: 16px; color: var(--dark); margin-bottom: 8px; }
.faq-item p  { color: var(--gray); font-size: 14.5px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 24px;
}
.legal-content h2 { font-weight: 800; font-size: 22px; color: var(--dark); margin: 36px 0 12px; }
.legal-content h3 { font-weight: 700; font-size: 17px; color: var(--secondary); margin: 24px 0 8px; }
.legal-content p  { color: var(--gray); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul li { margin-bottom: 6px; }
.legal-content a { color: var(--primary); }
.legal-updated {
  font-size: 13px;
  color: var(--gray);
  background: var(--light);
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 36px;
  font-weight: 600;
}
.legal-cta-box {
  margin-top: 48px;
  padding: 28px;
  background: var(--light);
  border-radius: var(--radius-lg);
  text-align: center;
}
.legal-cta-box p     { font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.legal-cta-sub       { color: var(--gray); font-size: 14px; margin-bottom: 18px; }
.legal-cta-btns      { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}
.footer-main {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand__logo img           { height: 60px; margin-bottom: 16px; }
/* WP custom logo in footer */
.footer-brand__logo .custom-logo-link img { height: 60px; margin-bottom: 16px; }
.footer-brand__desc               { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.footer-social                    { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-2px); }
.footer-col__title {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--accent); }
.footer-links a::before { content: '›'; color: var(--primary); font-weight: bold; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.footer-contact-item strong { color: var(--white); }
.footer-contact-item a { color: var(--accent); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--accent-dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-bottom__links { display: flex; gap: 20px; }
.footer-bottom__links a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom__links a:hover { color: var(--accent); }

/* ============================================================
   GENERIC PAGE CONTENT
   ============================================================ */
.generic-page-content {
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.8;
}
.generic-page-content h2 { font-weight: 800; color: var(--dark); margin: 28px 0 12px; }
.generic-page-content p  { color: var(--gray); margin-bottom: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid           { grid-template-columns: repeat(2, 1fr); }
  .footer-main             { grid-template-columns: 1fr 1fr; }
  .stats-bar__inner        { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item         { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .areas-grid              { grid-template-columns: repeat(3, 1fr); }
  .hero__image-panel       { width: 46%; }
  .hero__content           { width: 60%; }
}

@media (max-width: 768px) {
  .section                 { padding: 60px 0; }
  .why-grid                { grid-template-columns: 1fr; }
  .why__badge              { right: 16px; }
  .contact-grid            { grid-template-columns: 1fr; }
  .service-detail          { grid-template-columns: 1fr; gap: 32px; }
  .service-detail--reverse { direction: ltr; }
  .team-values             { grid-template-columns: 1fr; }
  .testimonials-grid       { grid-template-columns: 1fr; }
  .footer-main             { grid-template-columns: 1fr; gap: 32px; }
  .pricing-banner          { flex-direction: column; text-align: center; }
  .form-row                { grid-template-columns: 1fr; }
  .areas-grid              { grid-template-columns: repeat(2, 1fr); }

  /* Mobile navigation */
  .nav__links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 9999;
  }
  .nav__links.open       { display: flex; }
  .nav__links a          { font-size: 22px; }
  .nav__links li a       { font-size: 22px; }
  .nav__toggle           { display: flex; z-index: 10000; }
  .nav__cta .btn         { display: none; }
  .top-bar__info         { display: none; }

  /* Hero mobile */
  .hero {
    min-height: 580px;
    align-items: flex-end;
  }
  .hero__image-panel {
    width: 100%;
    height: 100%;
    top: 0; left: 0; right: 0; bottom: 0;
  }
  .hero__image-bg { object-position: center 20%; }
  .hero__image-fade {
    background:
      linear-gradient(to top, var(--secondary) 0%, rgba(29,62,117,0.88) 45%, rgba(29,62,117,0.5) 75%, transparent 100%);
  }
  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 48px 0 56px;
  }
  .hero__trust-strip { gap: 14px; }
}

@media (max-width: 480px) {
  .services-grid    { grid-template-columns: 1fr; }
  .stats-bar__inner { grid-template-columns: 1fr 1fr; }
  .areas-grid       { grid-template-columns: 1fr 1fr; }
  .hero__cta        { flex-direction: column; }
  .hero__cta .btn   { width: 100%; justify-content: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up          { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }
