/*
Theme Name: Cool Hire UK
Theme URI: https://coolhireuk.co.uk
Author: Cool Hire UK
Description: Custom WordPress theme for Cool Hire UK – Refrigerated Trailer Hire in Devon & Cornwall
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: coolhireuk
*/

/* ============================================================
   TOKENS
============================================================ */
:root {
  --navy:       #0D1B2A;
  --navy-mid:   #162233;
  --navy-light: #1E3247;
  --cyan:       #00C2E0;
  --cyan-dark:  #009DB8;
  --cyan-glow:  rgba(0,194,224,0.15);
  --orange:     #FF6B35;
  --orange-dark:#E05520;
  --white:      #F0F6FF;
  --grey-light: #D4E0ED;
  --grey-mid:   #6B7A8D;
  --grey-dark:  #3A4A5C;
  --text:       #1A2B3C;

  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'Inter', sans-serif;

  --radius:     6px;
  --shadow:     0 4px 24px rgba(13,27,42,0.18);
  --shadow-sm:  0 2px 8px rgba(13,27,42,0.12);
  --transition: 0.22s 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.65;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--cyan-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cyan); }

ul, ol { padding-left: 1.4em; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--sm { padding: 50px 0; }
.section--lg { padding: 110px 0; }

/* ============================================================
   SKIP LINK
============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--cyan);
  color: var(--navy);
  padding: 8px 16px;
  z-index: 9999;
  font-weight: 700;
}
.skip-link:focus { top: 0; }

/* ============================================================
   TOPBAR
============================================================ */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 13px;
  color: var(--grey-light);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar__contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar__contact a {
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar__contact a:hover { color: var(--cyan); }
.topbar__badge {
  background: var(--cyan);
  color: var(--navy);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 40px;
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  background: var(--navy-mid);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo__mark {
  width: 44px;
  height: 44px;
  background: var(--cyan);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-logo__mark svg {
  width: 26px;
  height: 26px;
  fill: var(--navy);
}
.site-logo__text { line-height: 1.15; }
.site-logo__name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
}
.site-logo__sub {
  font-size: 11px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  display: block;
}

/* NAV */
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.primary-nav a {
  color: var(--grey-light);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.primary-nav a:hover,
.primary-nav .current-menu-item a {
  background: var(--navy-light);
  color: var(--cyan);
}
.header-cta {
  background: var(--orange);
  color: #fff !important;
  border-radius: var(--radius);
  padding: 10px 20px !important;
  font-family: var(--font-head);
  font-size: 16px !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--orange-dark) !important;
  color: #fff !important;
}

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--grey-dark);
  border-radius: var(--radius);
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 82vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,194,224,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(0,194,224,0.06) 0%, transparent 60%),
    linear-gradient(160deg, #0D1B2A 0%, #162233 60%, #0a1520 100%);
  animation: fog 12s ease-in-out infinite alternate;
}
@keyframes fog {
  0%   { opacity: 1; transform: scale(1) translateX(0); }
  100% { opacity: 0.85; transform: scale(1.04) translateX(-10px); }
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}
.hero__title {
  font-size: clamp(42px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.0;
}
.hero__title span { color: var(--cyan); }
.hero__body {
  color: var(--grey-light);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__phone-block {
  background: rgba(0,194,224,0.1);
  border: 1px solid rgba(0,194,224,0.25);
  border-radius: var(--radius);
  padding: 20px 28px;
}
.hero__phone-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 4px;
}
.hero__phone-number {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
  text-decoration: none;
  transition: color var(--transition);
}
.hero__phone-number:hover { color: var(--cyan); }
.hero__mobile {
  font-size: 15px;
  color: var(--grey-light);
  margin-top: 6px;
}
.hero__mobile a { color: var(--grey-light); }
.hero__mobile a:hover { color: var(--cyan); }

/* HERO IMAGE SIDE */
.hero__visual {
  position: relative;
}
.hero__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  aspect-ratio: 4/3;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__img-placeholder {
  text-align: center;
  color: var(--grey-mid);
  padding: 40px;
}
.hero__img-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.3;
  margin-bottom: 16px;
}
.hero__img-placeholder p {
  font-size: 13px;
  line-height: 1.5;
}
.hero__badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-family: var(--font-head);
  box-shadow: var(--shadow);
}
.hero__badge-num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.hero__badge-text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255,107,53,0.35);
}
.btn--primary:hover {
  background: var(--orange-dark);
  color: #fff;
  box-shadow: 0 8px 32px rgba(255,107,53,0.45);
}
.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(240,246,255,0.35);
}
.btn--secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,194,224,0.06);
}
.btn--cyan {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(0,194,224,0.3);
}
.btn--cyan:hover {
  background: var(--cyan-dark);
  color: var(--navy);
  box-shadow: 0 8px 32px rgba(0,194,224,0.4);
}

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--cyan);
  padding: 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-right: 1px solid rgba(13,27,42,0.15);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__item svg {
  width: 22px;
  height: 22px;
  fill: var(--navy);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
============================================================ */
.services { background: #fff; }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan-dark);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  margin-bottom: 14px;
}
.section-body {
  color: var(--grey-mid);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  border: 1px solid var(--grey-light);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  background: #fff;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card__img {
  height: 220px;
  background: var(--navy-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.04); }
.service-card__img-placeholder {
  color: var(--grey-mid);
  text-align: center;
  padding: 24px;
}
.service-card__img-placeholder svg {
  width: 60px;
  height: 60px;
  opacity: 0.25;
  margin-bottom: 8px;
}
.service-card__img-placeholder span {
  font-size: 12px;
  display: block;
}
.service-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 40px;
}
.service-card__body { padding: 28px; }
.service-card__title {
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card__text {
  color: var(--grey-mid);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card__link {
  color: var(--cyan-dark);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card__link:hover { color: var(--cyan); }
.service-card__link::after { content: '→'; transition: transform var(--transition); }
.service-card:hover .service-card__link::after { transform: translateX(4px); }

/* ============================================================
   FEATURES
============================================================ */
.features { background: var(--navy); }
.features .section-title { color: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.feature-item {
  background: var(--navy-light);
  border: 1px solid rgba(0,194,224,0.12);
  border-radius: 10px;
  padding: 32px 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-item:hover {
  border-color: rgba(0,194,224,0.4);
  box-shadow: 0 0 32px rgba(0,194,224,0.08);
}
.feature-item__icon {
  width: 52px;
  height: 52px;
  background: var(--cyan-glow);
  border: 1px solid rgba(0,194,224,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-item__icon svg {
  width: 26px;
  height: 26px;
  fill: var(--cyan);
}
.feature-item__title {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-item__text {
  color: var(--grey-mid);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   ABOUT / SPLIT SECTION
============================================================ */
.about-split {
  background: #f7fafd;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split-grid--reverse .split-content { order: 2; }
.split-grid--reverse .split-visual { order: 1; }
.split-content .section-title {
  text-align: left;
  margin-bottom: 18px;
}
.split-content .section-eyebrow { text-align: left; }
.split-body {
  color: var(--grey-mid);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.split-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.split-checklist li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text);
  font-size: 15px;
  border-bottom: 1px solid var(--grey-light);
}
.split-checklist li:last-child { border-bottom: none; }
.split-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--cyan);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%230D1B2A' d='M6.5 11.5l-3-3 1.4-1.4 1.6 1.6 4.6-4.6 1.4 1.4z'/%3E%3C/svg%3E");
  background-size: cover;
}
.split-visual {
  position: relative;
}
.split-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5/4;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.split-img-placeholder {
  text-align: center;
  color: var(--grey-mid);
  padding: 40px;
}
.split-img-placeholder svg {
  width: 70px;
  height: 70px;
  opacity: 0.25;
  margin-bottom: 12px;
}
.split-stat-bar {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  gap: 24px;
  box-shadow: var(--shadow);
}
.split-stat { text-align: center; }
.split-stat__num {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  display: block;
}
.split-stat__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-mid);
  font-weight: 600;
  white-space: nowrap;
}

/* ============================================================
   AREAS COVERED
============================================================ */
.areas { background: #fff; }
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.areas-map {
  background: var(--navy-light);
  border-radius: 12px;
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  text-align: center;
  padding: 40px;
  font-size: 13px;
  line-height: 1.5;
}
.areas-map svg {
  width: 80px;
  height: 80px;
  opacity: 0.2;
  margin-bottom: 16px;
}
.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.areas-list li {
  font-size: 15px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.areas-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   CTA BAND
============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(0,194,224,0.1), transparent);
}
.cta-band .container { position: relative; }
.cta-band__title {
  font-size: clamp(30px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-band__sub {
  color: var(--grey-light);
  font-size: 17px;
  margin-bottom: 36px;
}
.cta-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.cta-band__phone {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--cyan);
  text-decoration: none;
  display: block;
  margin-bottom: 24px;
  transition: color var(--transition);
}
.cta-band__phone:hover { color: #fff; }

/* ============================================================
   TRAILER SPECS
============================================================ */
.specs { background: #f7fafd; }
.specs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.spec-item {
  background: #fff;
  border: 1px solid var(--grey-light);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.spec-item__icon {
  width: 36px;
  height: 36px;
  background: var(--cyan-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.spec-item__icon svg { width: 20px; height: 20px; fill: var(--cyan-dark); }
.spec-item__text {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-section { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info__title {
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 18px;
}
.contact-info__body {
  color: var(--grey-mid);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-light);
}
.contact-detail:first-of-type { border-top: 1px solid var(--grey-light); }
.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--cyan-glow);
  border: 1px solid rgba(0,194,224,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 22px; height: 22px; fill: var(--cyan); }
.contact-detail__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-mid);
  display: block;
  margin-bottom: 2px;
}
.contact-detail__value {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-head);
}
.contact-detail__value a {
  color: var(--navy);
  text-decoration: none;
}
.contact-detail__value a:hover { color: var(--cyan-dark); }

/* CONTACT FORM */
.contact-form-wrap {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px;
}
.contact-form-wrap h3 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-light);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--white);
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--cyan); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy-mid); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 4px; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ============================================================
   PAGE BANNER
============================================================ */
.page-banner {
  background: var(--navy);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 80% 50%, rgba(0,194,224,0.1), transparent);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 12px;
  display: block;
}
.page-banner__title {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 14px;
}
.page-banner__sub {
  color: var(--grey-light);
  font-size: 18px;
  max-width: 620px;
  line-height: 1.65;
}

/* ============================================================
   CONTENT AREA (inner pages)
============================================================ */
.content-wrap { padding: 70px 0; background: #fff; }
.content-cols {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
.page-content h2 {
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 14px;
  margin-top: 40px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
  margin-top: 30px;
}
.page-content p { color: var(--grey-mid); font-size: 16px; line-height: 1.75; }
.page-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.page-content ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--text);
  font-size: 15px;
  border-bottom: 1px solid var(--grey-light);
}
.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--cyan);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%230D1B2A' d='M6.5 11.5l-3-3 1.4-1.4 1.6 1.6 4.6-4.6 1.4 1.4z'/%3E%3C/svg%3E");
  background-size: cover;
}

/* SIDEBAR */
.sidebar-widget {
  background: var(--navy);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-widget__title {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sidebar-phone {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--cyan);
  display: block;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 8px;
}
.sidebar-phone:hover { color: #fff; }
.sidebar-mobile {
  color: var(--grey-light);
  font-size: 14px;
  margin-bottom: 18px;
}
.sidebar-mobile a { color: var(--grey-light); }
.sidebar-mobile a:hover { color: var(--cyan); }
.sidebar-widget p { color: var(--grey-light); font-size: 14px; line-height: 1.65; }
.sidebar-widget .btn { width: 100%; justify-content: center; margin-top: 14px; font-size: 15px; }
.sidebar-nav { list-style: none; padding: 0; margin: 0; }
.sidebar-nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.sidebar-nav li:last-child { border-bottom: none; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: var(--grey-light);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sidebar-nav a::after { content: '→'; color: var(--cyan); }
.sidebar-nav a:hover { color: var(--cyan); }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--navy);
  color: var(--grey-light);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .site-logo { margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
  color: var(--grey-mid);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--cyan); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--grey-mid);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a {
  color: var(--grey-mid);
  font-weight: 600;
}
.footer-contact-item a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: var(--grey-dark);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--grey-dark); }
.footer-bottom a:hover { color: var(--cyan); }

/* ============================================================
   BREADCRUMB
============================================================ */
.breadcrumb {
  background: #f0f4f8;
  padding: 10px 0;
  font-size: 13px;
  color: var(--grey-mid);
}
.breadcrumb a { color: var(--grey-mid); }
.breadcrumb a:hover { color: var(--cyan-dark); }
.breadcrumb span { color: var(--grey-dark); }

/* ============================================================
   EMERGENCY BADGE
============================================================ */
.emergency-banner {
  background: var(--orange);
  text-align: center;
  padding: 14px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.emergency-banner a { color: #fff; text-decoration: underline; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-grid--reverse .split-content { order: unset; }
  .split-grid--reverse .split-visual { order: unset; }
  .split-stat-bar { right: 0; bottom: -16px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .hero { min-height: auto; }
  .areas-grid { grid-template-columns: 1fr; }
  .content-cols { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .topbar { display: none; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 4px; }
  .primary-nav a { display: block; padding: 12px 16px; }
  .nav-toggle { display: flex; }
  .header-inner { position: relative; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar__item { padding: 12px 18px; font-size: 14px; }
  .split-stat-bar { position: static; margin-top: 16px; justify-content: center; }
  .hero__grid { padding: 56px 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 38px; }
  .trust-bar__inner { flex-direction: column; }
  .trust-bar__item { border-right: none; border-bottom: 1px solid rgba(13,27,42,0.15); }
  .services-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}

/* ============================================================
   WORDPRESS ALIGNMENT HELPERS
============================================================ */
.alignleft  { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 1em auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--grey-mid); text-align: center; margin-top: 6px; }

/* ============================================================
   UTILITY
============================================================ */
.text-center { text-align: center; }
.text-cyan { color: var(--cyan); }
.bg-navy { background: var(--navy); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
