/*
Theme Name: Mara Commercial Services
Theme URI: https://maracommercial.com.au
Author: Mara Commercial Services
Author URI: https://maracommercial.com.au
Description: A professional commercial cleaning and maintenance services theme for Perth, WA. Fully customisable via WordPress Customizer and Theme Options.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mara-commercial
Tags: business, one-page, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
*/

/* ============================================================
   TABLE OF CONTENTS
   1. CSS Custom Properties
   2. Reset & Base
   3. Navigation
   4. Hero Section
   5. Trust Bar
   6. Services Section
   7. Why Us Section
   8. Coverage Section
   9. Contact / CTA Section
   10. Footer
   11. Single / Archive / Page
   12. Sidebar & Widgets
   13. Animations
   14. Responsive
   ============================================================ */

/* ─── 1. CSS Custom Properties ─── */
:root {
  --blue:        #0033A0;
  --green:       #2E8B1E;
  --red:         #C0392B;
  --white:       #ffffff;
  --off-white:   #F5F7FA;
  --light-gray:  #E8ECF2;
  --dark:        #0A1628;
  --text:        #2C3E50;
  --green-light: #EAF5E8;
  --blue-light:  #EAF0FF;
}

/* ─── 2. Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; }
ul { list-style: none; }

/* ─── 3. Navigation ─── */
nav,
#masthead {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--blue);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  box-shadow: 0 2px 20px rgba(0,51,160,0.1);
}

.nav-logo { display: flex; align-items: center; gap: 14px; }

.nav-logo-mark {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 22px;
  color: white; letter-spacing: -1px;
  flex-shrink: 0;
}

.custom-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; }

.nav-brand { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-top {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 20px;
  color: var(--blue); letter-spacing: 1px;
}
.nav-brand-sub {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  color: var(--red); text-transform: uppercase;
}

/* Primary nav menu (WordPress-generated) */
#primary-menu-wrap { display: flex; align-items: center; }

.nav-links,
#primary-menu {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0; padding: 0;
}

.nav-links a,
#primary-menu a,
#primary-menu li a {
  text-decoration: none; color: var(--text);
  font-weight: 500; font-size: 18px; letter-spacing: 0.3px;
  padding: 12px 14px; border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover,
#primary-menu a:hover { background: var(--blue-light); color: var(--blue); }

.nav-links .nav-cta,
#primary-menu .nav-cta > a,
#primary-menu li.menu-item-cta > a {
  background: var(--green) !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
}
.nav-links .nav-cta:hover,
#primary-menu li.menu-item-cta > a:hover { background: #236b16 !important; }

/* Mobile hamburger */
.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); margin: 5px 0;
  transition: all 0.3s;
}

/* ─── 4. Hero Section ─── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,51,160,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,51,160,0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridSlide 20s linear infinite;
}

@keyframes gridSlide {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

.hero-accent-bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--red), var(--blue), var(--green));
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,51,160,0.3); border: 1px solid rgba(0,51,160,0.5);
  padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  color: #7FA8FF; text-transform: uppercase; margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.hero h1, .hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(52px, 7vw, 88px);
  line-height: 0.95; letter-spacing: -1px;
  color: white;
  margin-bottom: 24px;
}

.hero h1 .accent-green, .accent-green { color: var(--green); }
.hero h1 .accent-red,   .accent-red   { color: #FF6B5B; }

.hero-desc {
  font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.7);
  margin-bottom: 36px; max-width: 480px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--green); color: white;
  padding: 15px 32px; border-radius: 6px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.5px;
  text-decoration: none; display: inline-block;
  transition: all 0.25s; border: none; cursor: pointer;
}
.btn-primary:hover { background: #236b16; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,139,30,0.4); }

.btn-outline {
  background: transparent; color: white;
  padding: 15px 32px; border-radius: 6px;
  font-weight: 600; font-size: 15px;
  text-decoration: none; display: inline-block;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.25s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

.hero-right { display: flex; flex-direction: column; gap: 16px; }

.hero-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 20px 24px;
  backdrop-filter: blur(8px);
  animation: fadeInRight 0.8s ease both;
}
.hero-stat-card:nth-child(2) { animation-delay: 0.15s; }
.hero-stat-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px; font-weight: 900; color: white; line-height: 1;
}
.stat-num span { color: var(--green); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; font-weight: 500; }

.coverage-badge {
  background: rgba(192,57,43,0.2); border: 1px solid rgba(192,57,43,0.4);
  border-radius: 10px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
}
.coverage-icon {
  width: 40px; height: 40px; background: var(--red);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.coverage-text strong { color: white; font-size: 14px; font-weight: 700; display: block; }
.coverage-text span   { color: rgba(255,255,255,0.6); font-size: 12px; }

/* ─── 5. Trust Bar ─── */
.trust-bar {
  background: var(--blue);
  padding: 18px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: white; font-size: 14px; font-weight: 500;
}
.trust-icon { font-size: 20px; }

/* ─── Section Commons ─── */
#main { padding: 0px; }

section, .site-main { padding: 90px 5%; }

.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05; color: var(--dark);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px; line-height: 1.7; color: #6B7A90;
  max-width: 560px;
}
.section-header { margin-bottom: 56px; }

/* ─── 6. Services Section ─── */
#services { background: var(--off-white); }

.services-intro { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background: white;
  border-radius: 14px; padding: 28px;
  border: 2px solid transparent;
  transition: all 0.3s; cursor: default;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--green);
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 40px rgba(0,51,160,0.12);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 16px;
}
.service-icon img { width: 28px; height: 28px; object-fit: contain; }

.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 20px; color: var(--dark); margin-bottom: 8px;
}
.service-desc { font-size: 14px; color: #7A8CA0; line-height: 1.6; }

.service-card.coming-soon {
  opacity: 0.75;
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}
.coming-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--red); color: white;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 9px; border-radius: 20px; text-transform: uppercase;
}

/* ─── 7. Why Us Section ─── */
#why-us {
  background: var(--dark);
  position: relative; overflow: hidden;
}
#why-us::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,51,160,0.3) 0%, transparent 70%);
  pointer-events: none;
}
#why-us .section-title { color: white; }
#why-us .section-label { color: #7FA8FF; }
#why-us .section-desc  { color: rgba(255,255,255,0.6); }

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; border-radius: 16px; overflow: hidden;
  margin-top: 56px;
}
.why-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px; transition: background 0.3s;
}
.why-item:hover { background: rgba(0,51,160,0.2); }

.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px; font-weight: 900;
  color: rgba(255,255,255,0.06); line-height: 1;
}
.why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 22px; color: white; margin-bottom: 10px;
}
.why-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
 
.single-mara_team .wp-post-image { width:auto!important; }
 
 /* ─── TEAM ─── */
  #team { background: var(--white); }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
  }

  .team-card {
    background: var(--off-white);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
  }

  .team-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,51,160,0.12);
  }

  .team-avatar {
    width: 84px; height: 84px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800; font-size: 28px;
    color: white; letter-spacing: 0.5px;
  }

  .team-card:nth-child(3n+2) .team-avatar { background: var(--green); }
  .team-card:nth-child(3n) .team-avatar { background: var(--red); }

  .team-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800; font-size: 19px; color: var(--dark);
    margin-bottom: 4px;
  }

  .team-role {
    font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
    color: var(--red); text-transform: uppercase;
    margin-bottom: 12px;
  }

  .team-bio { font-size: 14px; color: #7A8CA0; line-height: 1.6; }

/* ─── 8. Coverage Section ─── */
#coverage { background: white; }

.coverage-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.coverage-map-placeholder {
  background: var(--off-white); border-radius: 16px; padding: 40px;
  min-height: 380px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden; border: 2px solid var(--light-gray);
}
.map-visual { position: relative; width: 220px; height: 280px; }
.map-shape {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #e8f0fe 0%, #c9d9f5 100%);
  border-radius: 30% 40% 50% 20% / 40% 30% 50% 40%;
}
.map-dot {
  position: absolute; width: 10px; height: 10px;
  background: var(--red); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(192,57,43,0.2);
  animation: mapPulse 2s infinite;
}
@keyframes mapPulse {
  0%   { box-shadow: 0 0 0 0 rgba(192,57,43,0.4); }
  100% { box-shadow: 0 0 0 12px rgba(192,57,43,0); }
}
.map-line {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 2px; height: 160px;
  background: linear-gradient(to bottom, var(--blue), transparent);
}
.map-route-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  color: var(--blue); text-align: center; margin-top: 20px;
}
.coverage-suburbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.suburb-tag {
  background: var(--blue-light); color: var(--blue);
  padding: 6px 14px; border-radius: 20px;
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(0,51,160,0.15);
}
.coverage-highlights { display: flex; flex-direction: column; gap: 20px; }
.coverage-item { display: flex; gap: 16px; align-items: flex-start; }
.coverage-dot {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--green-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.coverage-item strong { display: block; font-weight: 700; font-size: 16px; color: var(--dark); }
.coverage-item p      { font-size: 14px; color: #7A8CA0; margin-top: 3px; line-height: 1.5; }

/* ─── 9. Contact / CTA Section ─── */
#contact {
  background: linear-gradient(135deg, var(--blue) 0%, #001F6B 100%);
  text-align: center; padding: 100px 5%;
  position: relative; overflow: hidden;
}
#contact::before {
  content: 'MARA';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 300px; font-weight: 900; letter-spacing: -10px;
  color: rgba(255,255,255,0.03); white-space: nowrap; pointer-events: none;
}
#contact .section-title { color: white; }
#contact .section-label { color: #7FA8FF; }

.contact-desc { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto 40px; line-height: 1.7; }
.contact-options { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.contact-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 20px 28px;
  color: white; text-decoration: none;
  transition: all 0.25s; display: flex; align-items: center; gap: 12px;
  min-width: 200px;
}
.contact-card:hover {
  background: rgba(255,255,255,0.15); transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.contact-card-icon  { font-size: 26px; }
.contact-card-label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.6; }
.contact-card-value { font-weight: 700; font-size: 16px; }

/* Quote form */
.quote-form {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 36px;
  max-width: 600px; margin: 0 auto; position: relative; z-index: 1;
}
.quote-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 26px; color: white; margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 12px 16px;
  color: white; font-size: 14px; font-family: 'Barlow', sans-serif;
  transition: border-color 0.2s; outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: #001F6B; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: none; height: 90px; }
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-opacity='0.6' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;    background-repeat: no-repeat;
    background-position: right 16px center;
}
.form-submit {
  width: 100%; padding: 16px;
  background: var(--green); color: white;
  border: none; border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 18px; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer; margin-top: 8px;
  transition: all 0.25s;
}
.form-submit:hover { background: #236b16; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,139,30,0.4); }

/* ─── 10. Footer ─── */
#colophon,
.site-footer {
  background: #050D1A;
  color: rgba(255,255,255,0.5);
  padding: 40px 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 22px; color: white; letter-spacing: 1px;
}
.footer-brand span { color: var(--green); }
.footer-copy { font-size: 13px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: white; }

/* Footer menu (WordPress) */
#footer-menu { display: flex; gap: 20px; margin: 0; padding: 0; list-style: none; }
#footer-menu a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 13px; transition: color 0.2s; padding:15px 0px; }
#footer-menu a:hover { color: white; }

/* Social links */
.social-links { display: flex; gap: 12px; align-items: center; }
.social-links a {
  color: rgba(255,255,255,0.5); font-size: 18px;
  transition: color 0.2s; text-decoration: none;
}
.social-links a:hover { color: white; }

/* ─── 11. Single / Archive / Page ─── */
.page-header { padding: 140px 5% 60px; background: var(--dark); }
.page-header-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(40px, 6vw, 72px);
  color: white; line-height: 1;
}
.content-area { padding: 60px 5%; max-width: 860px; margin: 0 auto; }
.entry-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 36px; color: var(--dark); margin-bottom: 16px; }
.entry-content { font-size: 16px; line-height: 1.8; color: var(--text); }
.entry-content p { margin-bottom: 1.2em; }
.entry-content h2, .entry-content h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; color: var(--dark); margin: 1.5em 0 0.5em; }

/* Archive grid */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.post-card {
  background: white; border-radius: 14px; overflow: hidden;
  border: 2px solid var(--light-gray); transition: all 0.3s;
}
.post-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,51,160,0.12); }
.post-card-img img { width: 100%; height: 200px; object-fit: cover; }
.post-card-body { padding: 24px; }
.post-card-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 22px; color: var(--dark); margin-bottom: 8px; }
.post-card-excerpt { font-size: 14px; color: #7A8CA0; line-height: 1.6; }

/* CPT: Services archive */
.services-cpt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

/* ─── 12. Sidebar & Widgets ─── */
.site-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 60px 5%; max-width: 1200px; margin: 0 auto; }
.widget { margin-bottom: 32px; }
.widget-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 20px; color: var(--dark); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--light-gray); }

/* ─── 13. Animations ─── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

.menu-item-cta a { padding: 12px 22px !important; }

/* ─── 14. Responsive ─── */
@media (max-width: 1024px) {
  .site-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-content  { grid-template-columns: 1fr; }
  .hero-right    { display: none; }
  .why-grid      { grid-template-columns: 1fr; }
  .coverage-layout { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .services-intro { flex-direction: column; }
  .trust-bar     { gap: 20px; display: flex; flex-direction: column; }
  .contact-options { margin-bottom:16px; }
  .contact-card-value { width: 250px!important; word-wrap: break-word!important; }

  #masthead, nav {
    flex-wrap: wrap;
    height: auto;
    padding: 14px 5%;
  }
  .menu-toggle { display: block; position: absolute; top: 10px; right: 10px; }
  #primary-menu-wrap {
    width: 100%;
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  }
  #primary-menu-wrap.nav-open { max-height: 500px; }
  #primary-menu {
    flex-direction: column; width: 100%;
    padding: 10px 0 16px;
  }
  #primary-menu li { width: 100%; }
  #primary-menu a { display: block; padding: 10px 0; }
}
