/*
Theme Name: Wilkinson Carpet Cleaning
Theme URI: https://wilkinsoncarpetcleaning.com.au
Author: Wilkinson Carpet Cleaning
Author URI: https://wilkinsoncarpetcleaning.com.au
Description: Professional carpet and upholstery cleaning theme for Wilkinson Carpet Cleaning Melbourne.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wilkinson-carpet-cleaning
Tags: business, cleaning, services, one-page
*/

/* ─── CSS VARIABLES ─── */
:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2e42;
  --teal: #0e7c7b;
  --teal-light: #12a09f;
  --cream: #f5f0e8;
  --cream-dark: #ede6d6;
  --gold: #c9a84c;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #6b7280;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ─── NAV ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5%;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: padding 0.3s;
}
.site-header.scrolled { padding: 0.7rem 5%; }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--cream); line-height: 1.2;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.main-nav ul {
  display: flex; gap: 2rem; list-style: none;
}
.main-nav a {
  color: rgba(245,240,232,0.75);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav .current-menu-item > a { color: var(--gold); }

.nav-phone {
  background: var(--gold); color: var(--navy);
  padding: 0.55rem 1.3rem; border-radius: 3px;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.nav-phone:hover { background: #e0bb5e; transform: translateY(-1px); color: var(--navy); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; background: none;
  border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: var(--navy); z-index: 999;
  padding: 1.5rem 5%; flex-direction: column; gap: 0;
  border-bottom: 2px solid var(--teal);
  transform: translateY(-110%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  color: rgba(245,240,232,0.8);
  padding: 0.9rem 0;
  font-size: 0.9rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-cta {
  margin-top: 1rem;
  background: var(--teal); color: #fff;
  text-align: center; border-radius: 4px;
  padding: 0.9rem; font-weight: 700;
  border-bottom: none;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(14,124,123,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(245,240,232,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,240,232,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-left {
  position: relative; z-index: 2;
  padding: 8rem 4% 5rem 8%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 900; line-height: 1.08;
  color: var(--cream); margin-bottom: 0.4rem;
}
.hero h1 em { font-style: italic; color: var(--teal-light); }
.hero-sub {
  font-size: 1rem; color: rgba(245,240,232,0.55);
  font-weight: 300; margin-bottom: 1.8rem; letter-spacing: 0.04em;
}
.hero-desc {
  font-size: 1.05rem; color: rgba(245,240,232,0.7);
  line-height: 1.7; max-width: 420px; margin-bottom: 2.4rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--teal); color: #fff;
  padding: 0.9rem 2rem; border-radius: 3px;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em;
  border: 2px solid var(--teal);
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: var(--teal-light); border-color: var(--teal-light); transform: translateY(-2px); color: #fff; }
.btn-outline {
  background: transparent; color: var(--cream);
  padding: 0.9rem 2rem; border-radius: 3px;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em;
  border: 2px solid rgba(245,240,232,0.25);
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-phone {
  margin-top: 2.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-phone-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.hero-phone a {
  color: var(--gold); font-size: 1.1rem; font-weight: 700;
  text-decoration: none; letter-spacing: 0.05em;
}
.hero-phone p { font-size: 0.72rem; color: rgba(245,240,232,0.4); letter-spacing: 0.05em; }

.hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center; height: 100%;
  padding: 2rem;
}
.hero-visual { position: relative; width: 420px; max-width: 100%; }
.hero-card-main {
  background: var(--navy-mid);
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: 8px; padding: 2.5rem 2rem; position: relative;
}
.hero-card-main::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 8px 8px 0 0;
}
.hero-badge {
  position: absolute; top: -14px; right: 24px;
  background: var(--gold); color: var(--navy);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
}
.hero-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(245,240,232,0.07);
  border-radius: 6px; overflow: hidden; margin-bottom: 1.5rem;
}
.hero-stat {
  background: rgba(13,27,42,0.6);
  padding: 1.2rem 1rem; text-align: center;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--teal-light); line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem; color: rgba(245,240,232,0.5);
  letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px;
}
.hero-services-list { list-style: none; }
.hero-services-list li {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.06);
  font-size: 0.88rem; color: rgba(245,240,232,0.7);
}
.hero-services-list li:last-child { border-bottom: none; }
.hero-services-list .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-light); flex-shrink: 0;
}
.floating-tag {
  position: absolute; bottom: -20px; left: -30px;
  background: var(--gold); color: var(--navy);
  padding: 0.7rem 1.2rem; border-radius: 6px;
  font-size: 0.8rem; font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.floating-tag span { display: block; font-size: 0.65rem; font-weight: 400; opacity: 0.7; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 1.4rem 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; color: rgba(245,240,232,0.6); font-weight: 400; letter-spacing: 0.04em;
}
.trust-item .icon { font-size: 1rem; }
.trust-item strong { color: var(--cream); }

/* ─── SECTION HEADERS ─── */
.section-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal);
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 0.8rem;
}
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--teal); }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900; line-height: 1.15;
  color: var(--navy);
}

/* ─── SERVICES SECTION ─── */
.services-section {
  padding: 6rem 5%;
  background: var(--cream);
}
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: end; gap: 2rem;
  margin-bottom: 3.5rem;
}
.services-intro { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* 4 per row desktop, 2 per row mobile */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(13,27,42,0.1);
  border: 1px solid rgba(13,27,42,0.1);
  border-radius: 8px;
  overflow: hidden;
}
.service-card {
  background: #fff;
  padding: 1.8rem 1.5rem;
  transition: background 0.2s;
  cursor: default; position: relative;
}
.service-card:hover { background: var(--navy); }
.service-card:hover .service-name { color: var(--cream); }
.service-card:hover .service-icon-wrap { background: rgba(14,124,123,0.25); color: var(--teal-light); }
.service-card:hover .service-desc { color: rgba(245,240,232,0.55); }
.service-icon-wrap {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(14,124,123,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
  transition: all 0.2s;
}
.service-name {
  font-size: 0.92rem; font-weight: 600;
  color: var(--navy); line-height: 1.3; transition: color 0.2s;
}
.service-desc {
  font-size: 0.78rem; color: var(--text-muted);
  margin-top: 0.3rem; line-height: 1.5; transition: color 0.2s;
}

/* ─── WHY CHOOSE ─── */
.why-section {
  background: var(--navy);
  padding: 6rem 5%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.why-section h2 { color: var(--cream); }
.why-section .section-label { color: var(--gold); }
.why-section .section-label::before { background: var(--gold); }
.why-body {
  font-size: 0.95rem; color: rgba(245,240,232,0.6);
  line-height: 1.75; margin: 1.5rem 0 2.5rem;
}
.why-features { display: flex; flex-direction: column; gap: 1rem; }
.why-feat {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px; padding: 1.1rem 1.3rem;
  transition: border-color 0.2s, background 0.2s;
}
.why-feat:hover { border-color: rgba(14,124,123,0.4); background: rgba(14,124,123,0.07); }
.why-feat-icon {
  width: 36px; height: 36px; border-radius: 6px; flex-shrink: 0;
  background: rgba(14,124,123,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--teal-light);
}
.why-feat-text h4 { font-size: 0.88rem; font-weight: 600; color: var(--cream); }
.why-feat-text p { font-size: 0.78rem; color: rgba(245,240,232,0.5); margin-top: 2px; }
.why-right { position: relative; }
.why-quote-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 2.5rem; position: relative;
}
.why-quote-card::before {
  content: '"'; font-family: 'Playfair Display', serif;
  font-size: 8rem; line-height: 1; color: rgba(14,124,123,0.3);
  position: absolute; top: -20px; left: 24px;
}
.why-quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.1rem;
  color: var(--cream); line-height: 1.65;
  position: relative; z-index: 1;
}
.why-quote-author {
  margin-top: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.why-quote-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: 0.9rem;
}
.why-quote-name { font-size: 0.85rem; font-weight: 600; color: var(--cream); }
.why-quote-loc { font-size: 0.73rem; color: rgba(245,240,232,0.45); }
.stars { color: var(--gold); font-size: 0.85rem; margin-top: 2rem; }
.why-bottom-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,0.07);
  border-radius: 8px; overflow: hidden; margin-top: 1.5rem;
}
.why-stat { background: rgba(13,27,42,0.5); padding: 1.2rem 0.8rem; text-align: center; }
.why-stat-n { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--teal-light); }
.why-stat-l { font-size: 0.68rem; color: rgba(245,240,232,0.45); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 3px; }

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--teal);
  padding: 4rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-strip h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; color: #fff;
}
.cta-strip p { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 0.3rem; }
.cta-strip-btns { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-white {
  background: #fff; color: var(--teal);
  padding: 0.9rem 2rem; border-radius: 3px;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.04em;
  transition: all 0.2s;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); color: var(--teal); }
.cta-phone-link {
  color: #fff; font-size: 1rem; font-weight: 600;
  text-decoration: none; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 0.5rem;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy);
  padding: 4rem 5% 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,232,0.07);
}
.footer-brand .nav-logo { font-size: 1.2rem; display: inline-block; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.82rem; color: rgba(245,240,232,0.4); line-height: 1.7; max-width: 240px; }
.footer-col h5 {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.83rem; color: rgba(245,240,232,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; padding-top: 1.5rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(245,240,232,0.3); }

/* ─── INNER PAGE HERO ─── */
.page-hero {
  background: var(--navy);
  padding: 9rem 5% 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(14,124,123,0.15) 0%, transparent 70%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(245,240,232,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(245,240,232,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900; color: var(--cream); line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero p { font-size: 1rem; color: rgba(245,240,232,0.65); line-height: 1.7; max-width: 520px; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: rgba(245,240,232,0.4);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(245,240,232,0.25); }

/* ─── CONTENT AREA ─── */
.content-section { padding: 5rem 5%; }
.content-section.bg-white { background: var(--white); }
.content-section.bg-cream { background: var(--cream); }
.content-section.bg-navy { background: var(--navy); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }

/* ─── UTILITY ─── */
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 8rem 5% 3rem; }
  .hero-right { padding: 2rem 5% 5rem; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .main-nav { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .services-header { grid-template-columns: 1fr; }
  .why-section { grid-template-columns: 1fr; gap: 3rem; }
  .cta-strip { justify-content: center; text-align: center; }
  .floating-tag { display: none; }
}

@media (max-width: 768px) {
  /* 2 per row on mobile */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trust-bar { gap: 1.5rem; }
  .services-section, .why-section, .cta-strip { padding: 4rem 5%; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── WPFORMS STYLING ─── */
.wpforms-container { width: 100% !important; }
.wpforms-field { margin-bottom: 1.2rem !important; }
.wpforms-field label {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  margin-bottom: 0.4rem !important;
  display: block !important;
  letter-spacing: 0.03em !important;
}
.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field input[type="tel"],
.wpforms-field input[type="number"],
.wpforms-field select,
.wpforms-field textarea {
  width: 100% !important;
  border: 1.5px solid rgba(13,27,42,0.15) !important;
  border-radius: 5px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.9rem !important;
  font-family: 'DM Sans', sans-serif !important;
  color: var(--text-dark) !important;
  background: #fff !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  outline: none !important;
}
.wpforms-field input:focus,
.wpforms-field select:focus,
.wpforms-field textarea:focus {
  border-color: var(--teal) !important;
  box-shadow: 0 0 0 3px rgba(14,124,123,0.1) !important;
}
.wpforms-field textarea { min-height: 120px !important; resize: vertical !important; }
.wpforms-submit-container { margin-top: 0.5rem !important; }
.wpforms-submit {
  background: var(--teal) !important;
  color: #fff !important;
  border: none !important;
  padding: 0.9rem 2.5rem !important;
  border-radius: 4px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  font-family: 'DM Sans', sans-serif !important;
  letter-spacing: 0.05em !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.15s !important;
  width: 100% !important;
}
.wpforms-submit:hover {
  background: var(--teal-light) !important;
  transform: translateY(-2px) !important;
}
.wpforms-confirmation-container-full {
  background: rgba(14,124,123,0.1) !important;
  border: 1.5px solid var(--teal) !important;
  border-radius: 8px !important;
  padding: 1.5rem !important;
  color: var(--teal) !important;
  font-weight: 600 !important;
  text-align: center !important;
}
.wpforms-error-container {
  background: rgba(220,50,50,0.08) !important;
  border: 1.5px solid rgba(220,50,50,0.3) !important;
  border-radius: 6px !important;
  padding: 0.8rem 1rem !important;
  margin-bottom: 1rem !important;
}
.wpforms-field-container .wpforms-field-sublabel {
  font-size: 0.73rem !important;
  color: var(--text-muted) !important;
}

/* ─── CONTACT PAGE RESPONSIVE ─── */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════
   MOBILE RESPONSIVE GRID FIXES
   ═══════════════════════════════════════ */

/* Generic responsive two-col grid used across pages */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Homepage Residential/Commercial cards */
.home-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Commercial industries grid */
.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Service Areas homepage grid */
.service-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Contact page layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* Contact info cards stack */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Contact trust badges */
.contact-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* About page stats card */
.about-stats-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 2.5rem;
  position: relative;
}
.about-stats-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 8px 8px 0 0;
}
.about-stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  overflow: hidden;
}

/* ── MOBILE BREAKPOINTS ── */
@media (max-width: 768px) {

  /* Layout grids → single column */
  .two-col-grid,
  .home-split-grid,
  .service-areas-grid,
  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Add top spacing when stacked */
  .two-col-grid > div + div,
  .two-col-grid > .about-stats-card,
  .home-split-grid > div + div,
  .contact-layout > div + div {
    margin-top: 20px !important;
  }

  /* Industries grid — ALWAYS stays 2 columns (3 rows of 2) */
  .industries-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem !important;
    margin-top: 20px !important;
  }
  .industries-grid > div {
    padding: 1.2rem 0.8rem !important;
  }
  .industries-grid > div > div:first-child {
    font-size: 1.4rem !important;
  }
  .industries-grid > div > div:last-child {
    font-size: 0.8rem !important;
  }

  /* About stats card — full width with proper navy bg */
  .about-stats-card {
    padding: 1.5rem !important;
    background: var(--navy) !important;
    margin-top: 20px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
  }
  .about-stats-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 1px !important;
  }
  .about-stats-inner > div {
    padding: 1.2rem 0.8rem !important;
    background: rgba(13,27,42,0.8) !important;
  }
  .about-stats-inner > div:first-child,
  .about-stats-inner > div:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  }

  /* Content sections */
  .content-section {
    padding: 3rem 5% !important;
  }

  /* Why section */
  .why-section {
    padding: 3rem 5% !important;
  }
  .why-section > .why-right {
    margin-top: 20px !important;
  }

  /* CTA strip centred */
  .cta-strip {
    text-align: center;
    justify-content: center;
  }
  .cta-strip-btns {
    justify-content: center;
  }

  /* Page hero */
  .page-hero {
    padding: 7rem 5% 3rem !important;
  }

  /* Inline grid fallback */
  .content-section [style*="grid-template-columns: 1fr 1fr"],
  .content-section [style*="grid-template-columns:1fr 1fr"] {
    display: block !important;
  }
  .content-section [style*="grid-template-columns: 1fr 1fr"] > div,
  .content-section [style*="grid-template-columns:1fr 1fr"] > div {
    width: 100% !important;
    margin-bottom: 1.5rem !important;
  }
}

@media (max-width: 480px) {
  /* Industries stays 2-col even on smallest screens */
  .industries-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .contact-badges {
    grid-template-columns: 1fr 1fr !important;
  }
  .nav-logo { font-size: 0.95rem !important; }
}

/* ─── CONTACT PAGE COMPONENTS ─── */
.phone-cta-block {
  display: flex; align-items: center; gap: 1rem;
  background: var(--navy); border-radius: 8px;
  padding: 1.4rem 1.5rem; margin-top: 2rem;
  text-decoration: none;
  transition: background 0.2s;
}
.phone-cta-block:hover { background: var(--teal); }
.phone-cta-icon {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.phone-cta-label {
  color: rgba(245,240,232,0.6);
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 2px;
}
.phone-cta-number {
  color: var(--gold); font-size: 1.2rem;
  font-weight: 700; letter-spacing: 0.04em;
}
.contact-info-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #fff; border: 1px solid rgba(13,27,42,0.08);
  border-radius: 8px; padding: 1.2rem 1.4rem;
}
.contact-info-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-info-title {
  font-size: 0.82rem; font-weight: 700;
  color: var(--navy); margin-bottom: 3px;
}
.contact-info-text {
  font-size: 0.83rem; color: var(--text-muted); line-height: 1.6;
}
.contact-form-box {
  background: #fff; border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(13,27,42,0.08);
  box-shadow: 0 4px 24px rgba(13,27,42,0.06);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--teal), var(--gold)) 1;
  border-image-slice: 1;
  border-radius: 12px;
  position: relative;
}
.contact-form-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 12px 12px 0 0;
}

@media (max-width: 768px) {
  .phone-cta-number { font-size: 1rem; }
  .contact-form-box { padding: 1.8rem 1.2rem; }
  .contact-info-cards { margin-top: 1rem; }
}

/* ─── ABOUT PAGE STATS — solid colours, work standalone ─── */
.about-stats-card {
  background: var(--navy) !important;
  border-radius: 8px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.about-stats-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.about-stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
}
.about-stat-cell {
  background: #112233; /* solid — not transparent */
  padding: 1.8rem 1rem;
  text-align: center;
  transition: background 0.2s;
}
.about-stat-cell:hover { background: #0e1e30; }
.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
  display: block;
}
.about-stat-label {
  font-size: 0.7rem;
  color: rgba(245,240,232,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

/* Mobile adjustments for stat card */
@media (max-width: 768px) {
  .about-stats-card {
    padding: 1.5rem !important;
    margin-top: 20px;
  }
  .about-stat-cell {
    padding: 1.3rem 0.8rem !important;
  }
  .about-stat-num {
    font-size: 1.7rem !important;
  }
  .about-stat-label {
    font-size: 0.65rem !important;
  }
}

/* ─── COMMERCIAL INDUSTRIES — always 2×3 grid ─── */
.industries-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1rem;
  width: 100%;
  margin-top: 20px;
}
.industries-grid > div {
  background: var(--navy);
  border-radius: 6px;
  padding: 1.4rem 1rem;
  text-align: center;
  transition: background 0.2s;
}
.industries-grid > div:hover { background: var(--navy-mid); }
.industries-grid .ind-icon { font-size: 1.8rem; margin-bottom: 0.5rem; display: block; }
.industries-grid .ind-name { color: var(--cream); font-size: 0.88rem; font-weight: 600; display: block; }

/* On desktop, keep inside two-col-grid nicely */
@media (min-width: 769px) {
  .industries-grid {
    gap: 1.2rem;
    margin-top: 0;
  }
}
