/* PlumEx LLC — Main Stylesheet */

:root {
  --navy: #0a1628;
  --blue: #1a3a6b;
  --accent: #e8820c;
  --accent-light: #f9a848;
  --white: #f5f2ed;
  --gray: #8a9bb0;
  --light-bg: #f0ede8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--navy); color: var(--white); overflow-x: hidden; }

/* ===================== NAV ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 4rem;
  background: rgba(10,22,40,0.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,130,12,0.2);
  transition: box-shadow 0.3s;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 900; letter-spacing: 0.04em;
  color: var(--white); text-decoration: none; flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links > li > a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray); text-decoration: none; transition: color 0.2s;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: var(--navy) !important;
  padding: 0.5rem 1.3rem; font-weight: 700 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-light) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.25rem; }
.dropdown-menu {
  position: absolute;
  /* Use top:100% + padding-top on the menu itself so cursor never crosses a dead gap.
     The 1.2rem visual gap lives INSIDE this container, keeping hover continuous. */
  top: 100%;
  left: -1rem;
  padding-top: 1.2rem;
  background: transparent;
  border: none;
  min-width: 230px; z-index: 200;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
}
.dropdown-menu::before {
  /* The actual visual dropdown panel — sits inside the padding-bearing container.
     Border, background, shadow all live on this ::before so they don't affect the gap. */
  content: '';
  position: absolute;
  top: 1.2rem; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  border: 1px solid rgba(232,130,12,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  z-index: -1;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.dropdown-menu li { list-style: none; position: relative; }
.dropdown-menu a {
  display: block; padding: 0.75rem 1.2rem; text-transform: uppercase !important;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem !important; letter-spacing: 0.07em !important; color: var(--gray) !important;
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu a:hover { color: var(--accent) !important; background: rgba(232,130,12,0.05); }

/* Hamburger */
.hamburger {
  display: none; background: none; border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); font-size: 1.3rem; cursor: pointer;
  padding: 0.3rem 0.6rem; line-height: 1;
}

/* Mobile overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--navy); flex-direction: column;
  align-items: center; justify-content: center; gap: 1.8rem;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white); text-decoration: none; transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-divider { width: 2rem; height: 2px; background: rgba(232,130,12,0.3); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: var(--gray);
  font-size: 1.8rem; cursor: pointer; line-height: 1;
}

/* ===================== HERO (homepage) ===================== */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 4rem 6rem; position: relative; z-index: 2;
}
.hero-tag {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.8rem;
}
.hero-tag::before { content: ''; display: block; width: 2rem; height: 2px; background: var(--accent); }
h1 {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 900; line-height: 0.95; letter-spacing: -0.01em;
  text-transform: uppercase; margin-bottom: 1.8rem;
}
h1 em { font-style: normal; color: var(--accent); display: block; }
.hero-desc { font-size: 1rem; font-weight: 300; line-height: 1.7; color: var(--gray); max-width: 420px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-phone { margin-top: 3rem; display: flex; align-items: center; gap: 1rem; }
.phone-icon {
  width: 44px; height: 44px; background: rgba(232,130,12,0.15);
  border: 1px solid rgba(232,130,12,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.phone-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); }
.phone-number {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 700;
  color: var(--white); text-decoration: none; transition: color 0.2s;
}
.phone-number:hover { color: var(--accent); }
.hero-right { position: relative; overflow: hidden; }
.hero-right-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,58,107,0.5) 0%, rgba(10,22,40,0.2) 100%),
    url('https://images.unsplash.com/photo-1607472586893-edb57bdc0e39?w=900&q=80') center/cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--navy) 0%, transparent 30%); }
.hero-stat-cards { position: absolute; bottom: 3rem; right: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.stat-card {
  background: rgba(10,22,40,0.88); backdrop-filter: blur(12px);
  border: 1px solid rgba(232,130,12,0.25); padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--gray); line-height: 1.4; max-width: 100px; }

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  position: relative; height: 46vh; min-height: 320px;
  display: flex; align-items: flex-end; padding: 0 4rem 4rem; overflow: hidden;
  margin-top: 0;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.94) 0%, rgba(10,22,40,0.55) 60%, rgba(10,22,40,0.3) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 720px; padding-top: 5rem; }
.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 1rem;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-light); }
.page-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1; margin-bottom: 1rem;
}
.page-hero-content p { font-size: 1rem; color: var(--gray); line-height: 1.7; max-width: 520px; }

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: var(--accent); padding: 1.1rem 4rem;
  display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.trust-item {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy);
  display: flex; align-items: center; gap: 0.5rem;
}

/* ===================== SECTION BASE ===================== */
.section-tag {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem;
}
.section-tag::before { content: ''; display: block; width: 2rem; height: 2px; background: var(--accent); }
h2 {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.05; text-transform: uppercase; margin-bottom: 1.5rem; color: var(--navy);
}
h2 em { font-style: normal; color: var(--accent); }

/* ===================== BUTTONS ===================== */
.btn-primary {
  background: var(--accent); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem;
  font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.2s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-dark {
  background: var(--navy); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem;
  font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 2.5rem; text-decoration: none; white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-dark:hover { background: var(--blue); transform: translateY(-2px); }
.btn-secondary {
  color: var(--white); font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.2s;
}
.btn-secondary:hover { color: var(--accent); }
.btn-secondary::after { content: '→'; transition: transform 0.2s; }
.btn-secondary:hover::after { transform: translateX(4px); }
.btn-outline {
  border: 1px solid rgba(232,130,12,0.5); color: var(--accent);
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.7rem 1.6rem; text-decoration: none; display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--accent); color: var(--navy); }

/* ===================== SERVICES GRID ===================== */
.services { padding: 6rem 4rem; background: var(--navy); }
.services-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem;
}
.services-header h2 { color: var(--white); margin-bottom: 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: rgba(255,255,255,0.07);
}
.services-grid-2 { grid-template-columns: repeat(2, 1fr); }
.services-grid-4 { grid-template-columns: repeat(4, 1fr); }
.service-card {
  background: var(--navy); padding: 2.5rem 2rem;
  position: relative; overflow: hidden; transition: background 0.3s;
  text-decoration: none; display: block;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: rgba(26,58,107,0.5); }
.service-icon { font-size: 2rem; margin-bottom: 1.5rem; display: block; }
.service-num {
  position: absolute; top: 1.2rem; right: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 900;
  color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(232,130,12,0.07); }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem;
}
.service-card p { font-size: 0.87rem; line-height: 1.7; color: var(--gray); margin-bottom: 1rem; }
.service-link {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
}
.service-card:hover .service-link { color: var(--accent-light); }

/* Service list items (inner pages) */
.svc-list { list-style: none; margin: 0; }
.svc-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem; color: var(--gray); line-height: 1.6;
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.svc-list li strong { color: var(--white); display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.2rem; }

/* ===================== ABOUT ===================== */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--light-bg); color: var(--navy); }
.about-img { position: relative; min-height: 500px; background-size: cover; background-position: center; }
.about-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, var(--light-bg)); }
.about-badge {
  position: absolute; top: 2rem; left: 2rem;
  background: var(--accent); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase; padding: 0.5rem 1rem;
}
.about-content { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.about-content p { font-size: 0.95rem; line-height: 1.8; color: #4a5a6e; margin-bottom: 1rem; }
.about-list {
  list-style: none; margin: 1.5rem 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem;
}
.about-list li {
  font-size: 0.85rem; font-weight: 500; color: var(--navy);
  display: flex; align-items: center; gap: 0.5rem;
}
.about-list li::before { content: '✓'; color: var(--accent); font-weight: 800; }

/* ===================== WHY US ===================== */
.why {
  background: var(--navy);
  border-top: 1px solid rgba(232,130,12,0.15);
  border-bottom: 1px solid rgba(232,130,12,0.15);
  padding: 5rem 4rem;
  display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: center;
  position: relative;
}
.why::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(26,58,107,0.35), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(232,130,12,0.06), transparent 60%);
  pointer-events: none;
}
.why > * { position: relative; z-index: 1; }
.why-left h2 { color: var(--white); }
.why-left p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; margin-top: 1rem; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.why-item {
  background: rgba(26,58,107,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.8rem; transition: border-color 0.3s, background 0.3s;
}
.why-item:hover {
  border-color: var(--accent);
  background: rgba(26,58,107,0.4);
}
.why-item-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.why-item h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 0.5rem;
}
.why-item p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

/* ===================== REVIEWS ===================== */
.reviews { background: var(--light-bg); padding: 6rem 4rem; }
.reviews-header { text-align: center; margin-bottom: 3rem; }
.reviews-header h2 { color: var(--navy); margin-bottom: 0.5rem; }
.reviews-header p { color: #4a5a6e; font-size: 0.9rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: white; border: 1px solid rgba(26,58,107,0.1);
  padding: 2rem; display: flex; flex-direction: column; gap: 1rem;
}
.review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 0.1em; }
.review-text { font-size: 0.9rem; color: #4a5a6e; line-height: 1.75; flex: 1; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.8rem; padding-top: 0.5rem; border-top: 1px solid rgba(26,58,107,0.08); }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; flex-shrink: 0;
}
.review-name { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.review-location { font-size: 0.78rem; color: var(--gray); }
.review-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: #e8f5e9; color: #2e7d32; font-size: 0.75rem; font-weight: 600;
  padding: 0.2rem 0.6rem; border-radius: 2px;
}

/* ===================== FAQ ===================== */
.faq { background: var(--navy); padding: 6rem 4rem; }
.faq-container { max-width: 820px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header h2 { color: var(--white); }
.faq-header p { color: var(--gray); font-size: 0.9rem; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; cursor: pointer; gap: 1rem; list-style: none;
}
.faq-q h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--white);
}
.faq-toggle { font-size: 1.4rem; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { font-size: 0.9rem; color: var(--gray); line-height: 1.8; padding-bottom: 1.5rem; }
.faq-item.open .faq-a { max-height: 400px; }

/* ===================== CONTACT ===================== */
.contact-section { background: var(--light-bg); padding: 6rem 4rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info h2 { color: var(--navy); }
.contact-info p { color: #4a5a6e; font-size: 0.9rem; line-height: 1.7; margin-bottom: 2.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-detail-icon {
  width: 42px; height: 42px; background: var(--accent); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.contact-detail-text { font-size: 0.87rem; color: #4a5a6e; line-height: 1.5; }
.contact-detail-text strong {
  color: var(--navy); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 0.25rem;
}
.contact-detail-text a { color: var(--navy); font-weight: 600; text-decoration: none; }
.contact-detail-text a:hover { color: var(--accent); }
.contact-form { background: white; padding: 2.5rem; }
.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy);
}
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid rgba(26,58,107,0.2); padding: 0.8rem 1rem;
  font-family: 'Barlow', sans-serif; font-size: 0.9rem; color: var(--navy);
  background: var(--light-bg); outline: none; transition: border-color 0.2s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: #6a7a8e; margin-bottom: 1.2rem; }
.hidden { display: none; }

/* ===================== SERVICE AREA ===================== */
.area { background: var(--light-bg); color: var(--navy); padding: 5rem 4rem; text-align: center; }
.area h2 { color: var(--navy); margin-bottom: 0.5rem; }
.area > p { color: #4a5a6e; font-size: 0.9rem; margin-bottom: 3rem; }
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; max-width: 860px; margin: 0 auto 2rem; }
.area-tag {
  background: white; border: 1px solid rgba(26,58,107,0.15);
  color: var(--navy); font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.55rem 1.2rem; transition: background 0.2s, border-color 0.2s;
  text-decoration: none; display: inline-block;
}
.area-tag:hover { background: var(--accent); border-color: var(--accent); color: white; }

/* ===================== CTA STRIP ===================== */
.cta-strip {
  background: var(--accent); padding: 4rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-strip-text h2 { color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 0.3rem; }
.cta-strip-text p { color: rgba(10,22,40,0.65); font-size: 0.95rem; }
/* fix: keep em readable on orange cta-strip (override default accent color) */
.cta-strip h2 em { color: var(--navy); }

/* ===================== FOOTER ===================== */
footer { background: #060e1c; padding: 4rem 4rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 900;
  letter-spacing: 0.04em; color: var(--white); margin-bottom: 0.8rem;
}
.footer-brand-name span { color: var(--accent); }
.footer-brand p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.87rem; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 0.7rem; margin-bottom: 0.8rem; align-items: flex-start; }
.footer-contact-item a, .footer-contact-item p { font-size: 0.85rem; color: var(--gray); text-decoration: none; line-height: 1.5; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--gray); }
.footer-bottom a { color: var(--gray); text-decoration: none; font-size: 0.78rem; }
.footer-bottom a:hover { color: var(--accent); }

/* ===================== FLOAT CALL (mobile) ===================== */
.float-call {
  display: none; position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  background: var(--accent); color: var(--navy); width: 56px; height: 56px;
  border-radius: 50%; align-items: center; justify-content: center;
  font-size: 1.4rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(232,130,12,0.5); transition: transform 0.2s;
}
.float-call:hover { transform: scale(1.1); }

/* ===================== MAP EMBED ===================== */
.map-embed { width: 100%; height: 380px; border: none; display: block; filter: grayscale(0.2); }

/* ===================== ANIMATIONS ===================== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE UTILITY GRIDS ===================== */
.auto-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.auto-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.auto-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.auto-grid-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  nav { padding: 1rem 2rem; }
  .nav-links { gap: 1.2rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 7rem 2rem 3rem; }
  .hero-right { min-height: 360px; }
  .hero-overlay { background: linear-gradient(to top, var(--navy) 0%, transparent 50%); }
  .about { grid-template-columns: 1fr; }
  .about-img { min-height: 300px; }
  .about-content { padding: 3rem 2rem; }
  .about-img-overlay { background: linear-gradient(to bottom, transparent 50%, var(--light-bg)); }
  .services { padding: 4rem 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid-4 { grid-template-columns: 1fr 1fr; }
  .auto-grid-3 { grid-template-columns: 1fr 1fr; }
  .auto-grid-4 { grid-template-columns: 1fr 1fr; }
  .auto-grid-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .why { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 2rem; }
  .reviews { padding: 4rem 2rem; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .contact-section { padding: 4rem 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .area { padding: 4rem 2rem; }
  .cta-strip { padding: 3rem 2rem; }
  footer { padding: 3rem 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { padding: 1rem 2rem; gap: 2rem; }
  .page-hero { padding: 0 2rem 3rem; }
  .faq { padding: 4rem 2rem; }
}
@media (max-width: 640px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .float-call { display: flex; }
  .hero-left { padding: 6rem 1.5rem 3rem; }
  .hero-right { min-height: 260px; }
  .hero-stat-cards { display: none; }
  .page-hero { padding: 0 1.5rem 2rem; min-height: 260px; height: auto; }
  .page-hero-content { padding-top: 6rem; padding-bottom: 1rem; }
  .services-grid, .services-grid-2, .services-grid-4 { grid-template-columns: 1fr; }
  .auto-grid-2, .auto-grid-3, .auto-grid-4 { grid-template-columns: 1fr; gap: 1.25rem; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar { gap: 0.6rem 1.2rem; padding: 0.9rem 1.25rem; }
  .trust-item { font-size: 0.72rem; letter-spacing: 0.08em; gap: 0.35rem; }
  .about-list { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .service-card { padding: 2rem 1.5rem; }
  .services { padding: 4rem 1.5rem; }
  .mobile-nav { gap: 1.4rem; padding: 5rem 2rem 2rem; justify-content: flex-start; overflow-y: auto; }
  .mobile-nav a { font-size: 1.4rem; }
}


/* ===================== SVG ICONS ===================== */
/* Icons use currentColor — inherit from parent text color.
   Default: size to 1em so they match surrounding text.
   Context-specific rules below override this. */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: -0.125em;
  line-height: 1;
}
.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Trust bar checks — small inline with the text */
.trust-item .icon {
  width: 14px;
  height: 14px;
  color: var(--navy);
  margin-right: 0.1rem;
}

/* Service card icons — top-of-card large icon */
.service-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}
.service-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Why-us items — medium icon above heading */
.why-item-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}
.why-item-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Footer contact icons */
.footer-contact-item > .icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  margin-top: 2px;
}

/* Phone icon circle on hero */
.phone-icon .icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* Contact page detail rows */
.contact-detail-icon .icon {
  width: 18px;
  height: 18px;
  color: var(--navy);
}

/* CTA button icon — sits next to phone number */
.btn-dark .icon,
.btn-primary .icon {
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.4rem;
  vertical-align: -0.15em;
}

/* Floating call button — icon fills the circle */
.float-call .icon {
  width: 24px;
  height: 24px;
  color: var(--navy);
}

/* Hamburger — slightly larger */
.hamburger .icon {
  width: 22px;
  height: 22px;
}

/* Star ratings — inline filled stars */
.review-stars {
  display: inline-flex;
  gap: 2px;
  color: #f59e0b;
}
.review-stars .icon {
  width: 14px;
  height: 14px;
}

/* Section tag leading icon, if used */
.section-tag .icon {
  width: 14px;
  height: 14px;
}

/* Generic "decoration icon" — for large accent icons in content blocks */
.icon-large {
  width: 40px;
  height: 40px;
  color: var(--accent);
  display: inline-block;
}
.icon-large svg { width: 100%; height: 100%; display: block; }

.icon-huge {
  width: 64px;
  height: 64px;
  color: var(--accent);
  display: inline-block;
}
.icon-huge svg { width: 100%; height: 100%; display: block; }
