/* ================================================================
   Hecht Heating & Cooling LLC — Main Stylesheet
   ================================================================ */

:root {
  --navy:        #0d1f5c;
  --navy-dark:   #081040;
  --red:         #d41e1e;
  --red-light:   #ff3333;
  --blue:        #1aa3e8;
  --blue-light:  #4dc3ff;
  --silver:      #b0bec5;
  --silver-light:#e8edf0;
  --white:       #ffffff;
  --gray:        #f4f6f9;
  --text:        #1a1a2e;
  --text-light:  #555770;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { transition: color .2s; }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }

/* ── CONTAINER ───────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 14px; padding: 14px 28px; border-radius: 6px;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .25s; letter-spacing: .5px;
}
.btn-primary  { background: var(--red);  color: white; }
.btn-primary:hover  { background: var(--red-light);  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,30,30,.4); color: white; }
.btn-secondary{ background: var(--blue); color: white; }
.btn-secondary:hover{ background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,163,232,.4); color: white; }
.btn-outline  { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover  { background: white; color: var(--navy); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ── SECTION HEADERS ─────────────────────────────────── */
.section-label {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.section-title { font-size: clamp(26px,4vw,40px); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.section-title span { color: var(--red); }
.section-desc  { font-size: 16px; color: var(--text-light); max-width: 580px; line-height: 1.7; }
.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  border-radius: 2px; margin-bottom: 20px;
}
.center .divider { margin: 0 auto 20px; }

/* ── EMERGENCY BAR ───────────────────────────────────── */
.emergency-bar {
  background: var(--red); color: white; text-align: center;
  padding: 10px; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: .5px;
}
.emergency-bar a { color: white; text-decoration: underline; margin-left: 12px; }
.emergency-bar i { margin-right: 6px; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ── TOP BAR ─────────────────────────────────────────── */
.topbar {
  background: var(--navy-dark); color: var(--silver-light);
  font-size: 13px; padding: 8px 0;
  border-bottom: 2px solid var(--red);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: var(--silver-light); text-decoration: none; }
.topbar a:hover { color: var(--blue-light); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar i { color: var(--blue); margin-right: 5px; }

/* ── HEADER ──────────────────────────────────────────── */
.site-header {
  background: var(--navy); padding: 14px 0;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: all .3s;
}
.site-header.scrolled {
  padding: 8px 0;
  background: rgba(13,31,92,.97);
  backdrop-filter: blur(8px);
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; }

/* Logo */
.logo-wrap a { display: flex; align-items: center; }
.logo-wrap img, .site-logo, .site-header .custom-logo {
  height: 72px; width: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 8px rgba(26,163,232,.4));
  transition: transform .3s;
}
.logo-wrap:hover img,
.logo-wrap:hover .custom-logo { transform: scale(1.05); }

/* Primary Nav */
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav ul.nav-menu { display: flex; list-style: none; align-items: center; gap: 4px; }
.primary-nav ul.nav-menu li a, .primary-nav > a {
  color: var(--white); text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 14px; padding: 8px 14px; border-radius: 4px;
  transition: all .25s; letter-spacing: .5px; position: relative;
  display: inline-block;
}
.primary-nav ul.nav-menu li a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--blue); transform: scaleX(0); transition: transform .25s;
}
.primary-nav ul.nav-menu li a:hover::after,
.primary-nav ul.nav-menu li.current-menu-item > a::after { transform: scaleX(1); }
.primary-nav ul.nav-menu li a:hover,
.primary-nav ul.nav-menu li.current-menu-item > a { color: var(--blue-light); }
.nav-cta {
  background: var(--red) !important; border-radius: 6px !important;
  padding: 10px 20px !important; color: white !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--red-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span { display: block; width: 26px; height: 3px; background: white; border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav { display: none; flex-direction: column; background: var(--navy-dark); padding: 16px 24px; }
.mobile-nav.open { display: flex; }
.mobile-nav ul.mobile-menu { list-style: none; }
.mobile-nav ul.mobile-menu li a,
.mobile-nav > a {
  color: white; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 15px; transition: color .2s; display: block;
}
.mobile-nav ul.mobile-menu li a:hover,
.mobile-nav > a:hover { color: var(--blue-light); }
.mobile-nav .nav-cta {
  background: var(--red); border-radius: 6px;
  padding: 12px 20px !important; text-align: center;
  margin-top: 12px; border: none;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(26,163,232,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212,30,30,.12) 0%, transparent 50%),
    linear-gradient(135deg, #081040 0%, #0d1f5c 50%, #081530 100%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%;
  animation: float-particle linear infinite; opacity: .15;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) rotate(0deg);   opacity: 0; }
  10%  { opacity: .15; }
  90%  { opacity: .15; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(26,163,232,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(26,163,232,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; padding: 100px 0 60px;
}
.hero-text .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,163,232,.15); border: 1px solid rgba(26,163,232,.3);
  color: var(--blue-light); font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; padding: 8px 16px; border-radius: 30px;
  margin-bottom: 24px; animation: fadeInDown .6s ease both;
}
.hero-text h1 {
  font-size: clamp(32px,5vw,62px); font-weight: 900; color: white;
  line-height: 1.1; margin-bottom: 24px;
  animation: fadeInUp .7s .1s ease both;
}
.hero-text h1 .gradient-text {
  background: linear-gradient(90deg, var(--blue-light), var(--red-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-text p { font-size: 18px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 36px; animation: fadeInUp .7s .2s ease both; }
.hero-btns    { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp .7s .3s ease both; }
.hero-stats   { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); animation: fadeInUp .7s .4s ease both; flex-wrap: wrap; }
.hero-stat .num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 32px; color: white; line-height: 1; }
.hero-stat .num span { color: var(--blue); }
.hero-stat .lbl { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 4px; }

.hero-visual { display: flex; justify-content: center; align-items: center; animation: fadeInRight .9s .2s ease both; position: relative; }
.hero-logo-ring { position: relative; width: 420px; height: 420px; display: flex; align-items: center; justify-content: center; }
.ring { position: absolute; border-radius: 50%; border: 1px solid; animation: spin-ring linear infinite; }
.ring-1 { width:100%;height:100%; border-color:rgba(26,163,232,.2); animation-duration:20s; }
.ring-2 { width:80%;height:80%;   border-color:rgba(212,30,30,.15); animation-duration:15s; animation-direction:reverse; }
.ring-3 { width:60%;height:60%;   border-color:rgba(26,163,232,.1); animation-duration:10s; }
.ring-dot { position:absolute; width:10px;height:10px; border-radius:50%; top:-5px; left:calc(50% - 5px); }
.ring-1 .ring-dot { background:var(--blue); box-shadow:0 0 10px var(--blue); }
.ring-2 .ring-dot { background:var(--red);  box-shadow:0 0 10px var(--red);  }
@keyframes spin-ring { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.hero-logo-img, .hero-logo-ring .custom-logo {
  width: 260px; height: 260px; object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 30px rgba(26,163,232,.5)) drop-shadow(0 0 60px rgba(212,30,30,.2));
  animation: pulse-logo 3s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes pulse-logo {
  0%,100% { filter: drop-shadow(0 0 30px rgba(26,163,232,.5)) drop-shadow(0 0 60px rgba(212,30,30,.2)); }
  50%     { filter: drop-shadow(0 0 50px rgba(26,163,232,.8)) drop-shadow(0 0 80px rgba(212,30,30,.3)); }
}
.floating-badge {
  position: absolute; background: white; border-radius: 12px; padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3); display: flex; align-items: center; gap: 10px;
  animation: float-badge 3s ease-in-out infinite; z-index: 5;
}
.floating-badge.b1 { top: 50px;   right: -20px; animation-delay: 0s;   }
.floating-badge.b2 { bottom: 80px; left: -30px; animation-delay: 1.5s; }
@keyframes float-badge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.floating-badge .fb-icon { width:36px;height:36px; border-radius:8px; display:flex;align-items:center;justify-content:center; font-size:16px; color:white; }
.floating-badge .fb-icon.red  { background: var(--red);  }
.floating-badge .fb-icon.blue { background: var(--blue); }
.floating-badge .fb-text strong { display:block; font-size:14px; color:var(--navy); font-weight:700; font-family:'Montserrat',sans-serif; }
.floating-badge .fb-text span  { font-size:11px; color:var(--text-light); }

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.4); font-size:11px; font-family:'Montserrat',sans-serif;
  letter-spacing:2px; animation: fadeIn 1s 1s both;
}
.scroll-mouse { width:22px;height:36px; border:2px solid rgba(255,255,255,.3); border-radius:11px; display:flex; justify-content:center; padding-top:6px; }
.scroll-mouse::before { content:''; width:3px;height:6px; background:rgba(255,255,255,.6); border-radius:2px; animation:scroll-wheel 1.5s ease-in-out infinite; }
@keyframes scroll-wheel { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(8px);opacity:0} }

/* ── TRUST BAR ───────────────────────────────────────── */
.trust-bar { background: var(--navy); padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.trust-bar .container { display:flex; justify-content:space-around; align-items:center; flex-wrap:wrap; gap:24px; }
.trust-item { display:flex; align-items:center; gap:12px; color:rgba(255,255,255,.85); }
.trust-item i { font-size:28px; color:var(--blue); }
.trust-item .ti-text strong { display:block; font-family:'Montserrat',sans-serif; font-weight:700; font-size:15px; color:white; }
.trust-item .ti-text span   { font-size:12px; color:rgba(255,255,255,.55); }

/* ── SERVICES SECTION ────────────────────────────────── */
.services-section { padding: 90px 0; background: var(--gray); }
.services-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:28px; }
.service-card {
  background:white; border-radius:16px; padding:36px 30px;
  transition:all .35s; border:1px solid rgba(0,0,0,.06);
  position:relative; overflow:hidden; cursor:pointer;
}
.service-card::before {
  content:''; position:absolute; top:0;left:0;right:0; height:4px;
  background:linear-gradient(90deg,var(--red),var(--blue));
  transform:scaleX(0); transform-origin:left; transition:transform .35s;
}
.service-card:hover::before { transform:scaleX(1); }
.service-card:hover { transform:translateY(-8px); box-shadow:0 20px 48px rgba(13,31,92,.15); }
.sc-icon { width:64px;height:64px; border-radius:16px; display:flex;align-items:center;justify-content:center; font-size:26px; margin-bottom:24px; transition:all .3s; }
.sc-icon.red  { background:rgba(212,30,30,.1);  color:var(--red);  }
.sc-icon.blue { background:rgba(26,163,232,.1); color:var(--blue); }
.sc-icon.navy { background:rgba(13,31,92,.1);   color:var(--navy); }
.service-card:hover .sc-icon.red  { background:var(--red);  color:white; }
.service-card:hover .sc-icon.blue { background:var(--blue); color:white; }
.service-card:hover .sc-icon.navy { background:var(--navy); color:white; }
.service-card h3 { font-size:18px; font-weight:700; color:var(--navy); margin-bottom:12px; }
.service-card p  { font-size:14px; color:var(--text-light); line-height:1.7; margin-bottom:20px; }
.sc-link { font-family:'Montserrat',sans-serif; font-weight:700; font-size:13px; color:var(--blue); text-decoration:none; display:inline-flex; align-items:center; gap:6px; transition:gap .2s; }
.sc-link:hover { gap:10px; color:var(--blue); }

/* ── WHY CHOOSE US ───────────────────────────────────── */
.why-section { padding:90px 0; background:white; }
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.why-image-wrap { position:relative; }
.why-img-box { width:100%; aspect-ratio:4/3; border-radius:20px; overflow:hidden; background:linear-gradient(135deg,var(--navy) 0%,#1a3a8f 100%); display:flex;align-items:center;justify-content:center; position:relative; }
.why-img-inner { text-align:center; color:white; padding:40px; }
.why-img-inner i { font-size:80px; color:var(--blue); opacity:.7; margin-bottom:20px; display:block; }
.why-img-inner p { font-size:16px; opacity:.6; }
.why-badge-wrap { position:absolute; bottom:-24px; right:-24px; background:var(--red); color:white; border-radius:16px; padding:20px 24px; text-align:center; box-shadow:0 8px 24px rgba(212,30,30,.4); }
.why-badge-wrap .big { font-family:'Montserrat',sans-serif; font-weight:900; font-size:36px; display:block; }
.why-badge-wrap .sm  { font-size:12px; opacity:.85; }
.why-features { display:flex; flex-direction:column; gap:24px; margin-top:32px; }
.why-feature { display:flex; gap:18px; align-items:flex-start; padding:20px; border-radius:12px; background:var(--gray); transition:all .3s; }
.why-feature:hover { background:var(--navy); }
.why-feature:hover .wf-icon { background:var(--blue); color:white; }
.why-feature:hover h4 { color:white; }
.why-feature:hover p  { color:rgba(255,255,255,.7); }
.wf-icon { width:46px;height:46px;min-width:46px; border-radius:10px; background:rgba(26,163,232,.1); color:var(--blue); display:flex;align-items:center;justify-content:center; font-size:18px; transition:all .3s; }
.why-feature h4 { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:4px; transition:color .3s; }
.why-feature p  { font-size:13px; color:var(--text-light); line-height:1.6; transition:color .3s; }

/* ── PROCESS ─────────────────────────────────────────── */
.process-section { padding:90px 0; background:var(--navy); }
.process-section .section-title  { color:white; }
.process-section .section-label  { color:var(--blue-light); }
.process-section .section-desc   { color:rgba(255,255,255,.65); }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative; }
.process-steps::before {
  content:''; position:absolute; top:36px;
  left:calc(12.5% + 18px); right:calc(12.5% + 18px);
  height:2px; background:linear-gradient(90deg,var(--blue),var(--red)); opacity:.3;
}
.process-step { text-align:center; }
.ps-num { width:72px;height:72px; border-radius:50%; display:flex;align-items:center;justify-content:center; font-family:'Montserrat',sans-serif; font-weight:900; font-size:22px; color:white; margin:0 auto 20px; position:relative;z-index:2; transition:all .3s; }
.ps-num.red  { background:var(--red);  box-shadow:0 0 0 6px rgba(212,30,30,.2); }
.ps-num.blue { background:var(--blue); box-shadow:0 0 0 6px rgba(26,163,232,.2); }
.process-step:hover .ps-num { transform:scale(1.1); }
.process-step h3 { color:white; font-size:16px; font-weight:700; margin-bottom:10px; }
.process-step p  { color:rgba(255,255,255,.55); font-size:13px; line-height:1.7; }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials-section { padding:90px 0; background:var(--gray); }
.testimonials-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(320px,1fr)); gap:28px; }
.testimonial-card { background:white; border-radius:16px; padding:32px; border:1px solid rgba(0,0,0,.06); transition:all .3s; }
.testimonial-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(0,0,0,.1); }
.tc-quote  { font-size:48px; color:var(--blue); opacity:.2; font-family:Georgia,serif; line-height:1; margin-bottom:12px; }
.tc-text   { font-size:15px; color:var(--text-light); line-height:1.7; margin-bottom:20px; font-style:italic; }
.tc-stars  { color:#f5a623; margin-bottom:16px; }
.tc-author { display:flex; align-items:center; gap:12px; }
.tc-avatar { width:46px;height:46px; border-radius:50%; display:flex;align-items:center;justify-content:center; font-family:'Montserrat',sans-serif; font-weight:700; font-size:16px; color:white; }
.tc-avatar.r { background:var(--red);  }
.tc-avatar.b { background:var(--blue); }
.tc-avatar.n { background:var(--navy); }
.tc-name { font-family:'Montserrat',sans-serif; font-weight:700; font-size:14px; color:var(--navy); }
.tc-loc  { font-size:12px; color:var(--text-light); }

/* ── SERVICE AREAS ───────────────────────────────────── */
.areas-section { padding:90px 0; background:white; }
.areas-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:16px; margin-top:48px; }
.area-chip { background:var(--gray); border:1px solid rgba(0,0,0,.06); border-radius:10px; padding:14px 18px; text-align:center; transition:all .25s; cursor:pointer; }
.area-chip:hover { background:var(--navy); transform:translateY(-3px); box-shadow:0 8px 20px rgba(13,31,92,.2); }
.area-chip i    { color:var(--blue); margin-right:6px; }
.area-chip:hover i { color:var(--blue-light); }
.area-chip span { font-family:'Montserrat',sans-serif; font-weight:600; font-size:14px; color:var(--navy); }
.area-chip:hover span { color:white; }

/* ── CTA SECTION ─────────────────────────────────────── */
.cta-section {
  padding:90px 0;
  background:linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 50%,#0d2a6b 100%);
  position:relative; overflow:hidden;
}
.cta-section::before { content:''; position:absolute;inset:0; background:radial-gradient(ellipse at 80% 50%,rgba(26,163,232,.15) 0%,transparent 60%); }
.cta-content { position:relative;z-index:2; text-align:center; }
.cta-content h2 { color:white; font-size:clamp(28px,4vw,46px); font-weight:800; margin-bottom:16px; }
.cta-content p  { color:rgba(255,255,255,.7); font-size:18px; margin-bottom:36px; }
.cta-btns { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }
.cta-phone {
  display:inline-flex; align-items:center; gap:12px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15);
  border-radius:12px; padding:16px 28px; color:white; text-decoration:none;
  font-family:'Montserrat',sans-serif; font-weight:700; font-size:22px;
  transition:all .3s; width:fit-content; margin:0 auto 32px; display:block;
}
.cta-phone:hover { background:rgba(255,255,255,.15); transform:scale(1.02); color:white; }
.cta-phone i { color:var(--blue-light); font-size:24px; }

/* ── PAGE HERO ───────────────────────────────────────── */
.page-hero {
  background:linear-gradient(135deg,var(--navy-dark),var(--navy));
  padding:80px 0 60px; position:relative; overflow:hidden;
}
.page-hero::before { content:''; position:absolute;inset:0; background:radial-gradient(ellipse at 70% 50%,rgba(26,163,232,.12) 0%,transparent 60%); }
.page-hero-content { position:relative;z-index:2; }
.breadcrumb { display:flex;align-items:center;gap:8px; font-size:13px; color:rgba(255,255,255,.5); margin-bottom:16px; }
.breadcrumb a { color:var(--blue-light); text-decoration:none; cursor:pointer; }
.breadcrumb i { font-size:10px; }
.page-hero h1 { color:white; font-size:clamp(28px,5vw,52px); font-weight:800; margin-bottom:12px; }
.page-hero p  { color:rgba(255,255,255,.7); font-size:18px; max-width:600px; }

/* ── SERVICES FULL PAGE ──────────────────────────────── */
.services-full { padding:80px 0; background:white; }
.service-block { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; padding:60px 0; border-bottom:1px solid var(--gray); }
.service-block:last-child { border-bottom:none; }
.service-block.reverse { direction:rtl; }
.service-block.reverse > * { direction:ltr; }
.sb-img { border-radius:16px; overflow:hidden; background:linear-gradient(135deg,var(--navy) 0%,#1a3a8f 100%); aspect-ratio:4/3; display:flex;align-items:center;justify-content:center; position:relative; }
.sb-icon-main { font-size:100px; opacity:.2; color:white; }
.sb-icon-label { position:absolute; bottom:20px;left:20px; background:var(--red); color:white; padding:8px 16px; border-radius:8px; font-family:'Montserrat',sans-serif; font-weight:700; font-size:13px; }
.sb-content h2 { font-size:28px; font-weight:800; color:var(--navy); margin-bottom:16px; }
.sb-content p  { font-size:15px; color:var(--text-light); line-height:1.7; margin-bottom:20px; }
.sb-list { list-style:none; margin-bottom:24px; }
.sb-list li { display:flex;align-items:center;gap:10px; font-size:14px; color:var(--text-light); padding:6px 0; }
.sb-list li i { color:var(--blue); font-size:12px; }

/* ── ABOUT PAGE ──────────────────────────────────────── */
.about-story { padding:80px 0; background:white; }
.about-grid  { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.about-img-wrap { position:relative; }
.about-img { border-radius:20px; background:linear-gradient(135deg,var(--navy) 0%,#1a3a8f 100%); aspect-ratio:1; display:flex;align-items:center;justify-content:center; }
.about-img img, .about-img .custom-logo { width:200px; mix-blend-mode:screen; filter:drop-shadow(0 0 20px rgba(26,163,232,.5)); }
.about-accent { position:absolute; bottom:-20px;right:-20px; background:var(--red); color:white; border-radius:12px; padding:16px 20px; text-align:center; }
.about-accent .big { font-family:'Montserrat',sans-serif; font-weight:900; font-size:30px; display:block; }
.about-content .section-desc { max-width:100%; }
.values-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:32px; }
.value-item { padding:20px; border-radius:12px; background:var(--gray); border-left:4px solid var(--blue); }
.value-item.red-border { border-left-color:var(--red); }
.value-item h4 { font-size:14px; font-weight:700; color:var(--navy); margin-bottom:6px; }
.value-item p  { font-size:13px; color:var(--text-light); line-height:1.6; }

/* ── SERVICE AREAS PAGE ──────────────────────────────── */
.areas-page { padding:80px 0; background:white; }
.areas-intro { text-align:center; max-width:600px; margin:0 auto 60px; }
.areas-map-placeholder { background:var(--navy); border-radius:20px; height:380px; display:flex;align-items:center;justify-content:center; margin-bottom:60px; position:relative; overflow:hidden; }
.areas-map-placeholder::before { content:''; position:absolute;inset:0; background:radial-gradient(ellipse at 50% 50%,rgba(26,163,232,.2) 0%,transparent 70%); }
.areas-map-content { text-align:center; color:white; position:relative;z-index:2; }
.areas-map-content i { font-size:60px; color:var(--blue); opacity:.5; margin-bottom:16px; display:block; }
.areas-full-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:16px; }
.area-full-chip { background:var(--gray); border-radius:12px; padding:18px 20px; display:flex;align-items:center;gap:10px; border:2px solid transparent; transition:all .25s; cursor:pointer; }
.area-full-chip:hover { border-color:var(--blue); background:white; transform:translateY(-2px); }
.area-full-chip i    { color:var(--blue); font-size:16px; }
.area-full-chip span { font-family:'Montserrat',sans-serif; font-weight:600; font-size:14px; color:var(--navy); }

/* ── CONTACT PAGE ────────────────────────────────────── */
.contact-section { padding:80px 0; background:white; }
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:60px; }
.contact-info h2 { font-size:26px; font-weight:800; color:var(--navy); margin-bottom:24px; }
.contact-detail { display:flex;gap:16px;margin-bottom:24px;align-items:flex-start; }
.cd-icon { width:48px;height:48px;min-width:48px; border-radius:12px; display:flex;align-items:center;justify-content:center; font-size:18px; }
.cd-icon.red  { background:rgba(212,30,30,.1);  color:var(--red);  }
.cd-icon.blue { background:rgba(26,163,232,.1); color:var(--blue); }
.cd-icon.navy { background:rgba(13,31,92,.08);  color:var(--navy); }
.cd-text strong { display:block; font-family:'Montserrat',sans-serif; font-weight:700; font-size:15px; color:var(--navy); margin-bottom:4px; }
.cd-text span, .cd-text a { font-size:14px; color:var(--text-light); text-decoration:none; }
.cd-text a:hover { color:var(--blue); }
.contact-form-wrap { background:var(--gray); border-radius:20px; padding:40px; }
.contact-form-wrap h2 { font-size:22px; font-weight:800; color:var(--navy); margin-bottom:28px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-family:'Montserrat',sans-serif; font-weight:600; font-size:13px; color:var(--navy); margin-bottom:8px; letter-spacing:.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:12px 16px;
  border:2px solid rgba(0,0,0,.08); border-radius:8px;
  font-family:'Open Sans',sans-serif; font-size:14px; color:var(--text);
  background:white; transition:border-color .2s; outline:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--blue); }
.form-group textarea { resize:vertical; min-height:120px; }

/* CF7 overrides */
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-tel,
.wpcf7-form .wpcf7-select,
.wpcf7-form .wpcf7-textarea {
  width:100%; padding:12px 16px; border:2px solid rgba(0,0,0,.08); border-radius:8px;
  font-family:'Open Sans',sans-serif; font-size:14px; color:var(--text);
  background:white; transition:border-color .2s; outline:none; margin-bottom:4px;
}
.wpcf7-form .wpcf7-submit {
  width:100%; padding:16px; background:var(--red); color:white; border:none;
  border-radius:6px; font-family:'Montserrat',sans-serif; font-weight:700; font-size:16px;
  cursor:pointer; transition:all .25s;
}
.wpcf7-form .wpcf7-submit:hover { background:var(--red-light); transform:translateY(-2px); }

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer { background:var(--navy-dark); color:rgba(255,255,255,.7); padding:70px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand img, .footer-brand .custom-logo, .footer-logo { height:80px; mix-blend-mode:screen; margin-bottom:16px; display:block; }
.footer-brand p { font-size:14px; line-height:1.7; margin-bottom:20px; }
.footer-social { display:flex; gap:10px; }
.footer-social a { width:38px;height:38px; border-radius:8px; background:rgba(255,255,255,.08); color:rgba(255,255,255,.6); display:flex;align-items:center;justify-content:center; text-decoration:none; transition:all .25s; font-size:15px; }
.footer-social a:hover { background:var(--blue); color:white; transform:translateY(-2px); }
.footer-col h4 { color:white; font-family:'Montserrat',sans-serif; font-weight:700; font-size:15px; margin-bottom:20px; padding-bottom:10px; border-bottom:2px solid var(--red); display:inline-block; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul li a { color:rgba(255,255,255,.6); text-decoration:none; font-size:14px; transition:color .2s; display:flex;align-items:center;gap:6px; }
.footer-col ul li a i { font-size:10px; color:var(--blue); }
.footer-col ul li a:hover { color:var(--blue-light); }
.footer-contact-item { display:flex;gap:12px;margin-bottom:14px;align-items:flex-start; }
.footer-contact-item i { color:var(--blue); font-size:14px; margin-top:3px; min-width:16px; }
.footer-contact-item span { font-size:13px; line-height:1.5; }
.footer-contact-item a { color:rgba(255,255,255,.7); text-decoration:none; }
.footer-contact-item a:hover { color:var(--blue-light); }
.footer-bottom { padding:20px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; font-size:13px; }
.footer-bottom a { color:var(--blue-light); text-decoration:none; }

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeIn      { from{opacity:0}             to{opacity:1}               }
@keyframes fadeInUp    { from{opacity:0;transform:translateY(30px)}  to{opacity:1;transform:translateY(0)}  }
@keyframes fadeInDown  { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)}  }
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px)}  to{opacity:1;transform:translateX(0)}  }

.animate-on-scroll { opacity:0; transform:translateY(30px); transition:opacity .6s ease, transform .6s ease; }
.animate-on-scroll.visible { opacity:1; transform:translateY(0); }
.anim-delay-1 { transition-delay:.1s; }
.anim-delay-2 { transition-delay:.2s; }
.anim-delay-3 { transition-delay:.3s; }
.anim-delay-4 { transition-delay:.4s; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width:1024px) {
  .hero-content   { grid-template-columns:1fr; gap:40px; padding:80px 0 60px; }
  .hero-visual    { justify-content:center; }
  .why-grid       { grid-template-columns:1fr; gap:40px; }
  .process-steps  { grid-template-columns:repeat(2,1fr); }
  .process-steps::before { display:none; }
  .footer-grid    { grid-template-columns:1fr 1fr; }
  .service-block  { grid-template-columns:1fr; gap:32px; }
  .service-block.reverse { direction:ltr; }
  .about-grid     { grid-template-columns:1fr; gap:40px; }
  .contact-grid   { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  .primary-nav    { display:none; }
  .hamburger      { display:flex; }
  .hero-logo-ring { width:280px; height:280px; }
  .hero-logo-img, .hero-logo-ring .custom-logo { width:180px; height:180px; }
  .floating-badge { display:none; }
  .process-steps  { grid-template-columns:1fr 1fr; }
  .footer-grid    { grid-template-columns:1fr; }
  .form-row       { grid-template-columns:1fr; }
  .topbar-left    { display:none; }
  .values-grid    { grid-template-columns:1fr; }
  .why-badge-wrap { right:0; bottom:-16px; }
  .contact-form-wrap { padding:24px; }
}
@media (max-width:480px) {
  .process-steps  { grid-template-columns:1fr; }
  .hero-stats     { gap:20px; }
  .hero-logo-ring { width:220px; height:220px; }
  .hero-logo-img, .hero-logo-ring .custom-logo { width:140px; height:140px; }
  .cta-phone      { font-size:17px; }
}

/* ── WORDPRESS SPECIFIC ──────────────────────────────── */
.alignleft  { float:left; margin:0 1.5em 1em 0; }
.alignright { float:right; margin:0 0 1em 1.5em; }
.aligncenter { display:block; margin:0 auto 1em; }
.wp-caption { max-width:100%; }
.sticky { /* WP sticky post */ }
.screen-reader-text { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); }
