/* ============================================================
   Energy HVAC — Main Stylesheet
   Colors: Navy Blue #1a4b8c | Red #cc2222 | Dark #080f1f
   Fonts: Poppins (headings) + Inter (body)
   Developed by DEVSOL LLC
============================================================ */

/* ---- Google Fonts Imports ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@400;500;600;700&display=swap');

/* ---- Root Variables ---- */
:root {
  --blue:        #082f49;
  --blue-dark:   #041c2c;
  --blue-light:  #0e456d;
  --red:         #cc2222;
  --red-dark:    #b50e0e;
  --red-light:   #e63939;
  --dark:        #050d1a;
  --dark-2:      #0a1628;
  --dark-3:      #1a2a40;
  --gray:        #5c6b80;
  --gray-lt:     #8fa0b8;
  --light:       #f4f8fc;
  --light-2:     #e8f0fe;
  --white:       #ffffff;

  --font-body:    'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;

  --grad-blue:   var(--blue);
  --grad-red:    var(--red);
  --grad-dark:   var(--dark);
  --grad-premium: var(--blue-dark);

  --sh-sm:  0 2px 8px rgba(0,0,0,.08);
  --sh:     0 4px 20px rgba(15, 60, 117, .15);
  --sh-lg:  0 10px 40px rgba(15, 60, 117, .20);
  --sh-xl:  0 20px 60px rgba(0,0,0,.20);

  --r:     12px;
  --r-lg:  20px;
  --r-xl:  30px;
  --ease:  cubic-bezier(.4,0,.2,1);
  --t:     all .35s var(--ease);
  --tf:    all .2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--font-body);
  color: var(--dark-3);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration:none; color:inherit; transition: var(--tf); }
img { max-width:100%; height:auto; display:block; }
ul { list-style:none; }
h1,h2,h3,h4,h5,h6 { font-family:var(--font-heading); line-height:1.2; color:var(--dark); font-weight: 600; }
.container { max-width:1240px; margin:0 auto; padding:0 20px; }

/* ================================================================
   TOP BAR
================================================================ */
.top-bar {
  background: var(--blue);
  padding: 7px 0;
  font-size: 12.5px;
  position: relative;
  z-index: 1001;
}
.top-bar .container {
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:6px;
}
.tb-left { display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.tb-left a, .tb-left span {
  color:rgba(255,255,255,.9);
  display:flex; align-items:center; gap:5px;
  font-weight: 400; font-size: 13px;
}
.tb-left a:hover { color:var(--white); text-decoration:underline; }
.tb-left i { color:var(--white); font-size:11px; }
.tb-right { display:flex; align-items:center; gap:10px; }
.tb-right span { color:rgba(255,255,255,.8) !important; font-size:12px; }
.tb-social {
  width:26px; height:26px; border-radius:50%;
  background:rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:11px;
  transition: var(--t);
}
.tb-social:hover { background:var(--white); color:var(--blue); transform:translateY(-2px); }

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 18px rgba(0,0,0,.08);
  transition: var(--t);
}
.navbar.scrolled { box-shadow: 0 4px 28px rgba(26,75,140,.18); }
.navbar .container {
  display:flex; align-items:center;
  justify-content:space-between; height:72px;
}

/* Logo */
.logo { display:flex; align-items:center; gap:5px; }
.logo img { height:44px; width:auto; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -.5px;
  line-height: 1;
}
.logo-text strong { color:var(--red); font-weight:700; }

/* Nav list */
.nav-menu { display:flex; align-items:center; }
.nav-list { display:flex; align-items:center; gap:2px; }
.nav-list > li { position:relative; }
.nav-list > li > a {
  display:flex; align-items:center; gap:4px;
  padding: 8px 13px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark-3);
  border-radius: 8px;
  position: relative;
}
.nav-list > li > a::after {
  content:'';
  position:absolute; bottom:3px; left:50%;
  transform:translateX(-50%);
  width:0; height:2px;
  background:var(--red);
  border-radius:2px;
  transition: var(--t);
}
.nav-list > li > a:hover,
.nav-list > li > a.active { color:var(--blue); }
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after { width:55%; }
.nav-list > li > a i { font-size:9px; transition: var(--tf); }
.nav-list > li:hover > a i { transform:rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position:absolute; top:calc(100% + 6px); left:0;
  min-width:210px;
  background:var(--white);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  padding: 8px;
  opacity:0; visibility:hidden;
  transform:translateY(-10px);
  transition: var(--t);
  border: 1px solid rgba(26,75,140,.08);
  z-index:999;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity:1; visibility:visible; transform:translateY(0);
}
.dropdown-menu li a {
  display:flex; align-items:center; gap:8px;
  padding: 10px 14px;
  font-size: 13.5px; font-weight:600;
  color: var(--dark-3);
  border-radius: 8px;
  transition: var(--tf);
}
.dropdown-menu li a:hover { background:var(--light); color:var(--blue); padding-left:18px; }

/* Nav actions */
.nav-actions { display:flex; align-items:center; gap:10px; }

/* ---- Buttons ---- */
.btn {
  display:inline-flex; align-items:center; gap:7px;
  padding: 11px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px; font-weight:500;
  cursor:pointer;
  border: 2px solid transparent;
  white-space:nowrap;
  transition: var(--t);
}
.btn-blue {
  background: var(--grad-blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26,75,140,.30);
}
.btn-blue:hover {
  transform:translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,75,140,.40);
}
.btn-red {
  background: var(--grad-red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(204,34,34,.30);
}
.btn-red:hover {
  transform:translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,34,34,.40);
}
.btn-outline-white {
  background:transparent;
  border-color:var(--white); color:var(--white);
}
.btn-outline-white:hover {
  background:var(--white); color:var(--blue);
  transform:translateY(-2px);
}
.btn-lg { padding:15px 30px; font-size:15px; }

/* Hamburger */
.hamburger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; background:none; border:none; padding:4px;
}
.hamburger span {
  display:block; width:24px; height:2px;
  background:var(--dark); border-radius:2px;
  transition: var(--t);
}
.hamburger.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Nav overlay */
.nav-overlay {
  display:block; position:fixed; inset:0;
  background:rgba(0,0,0,.55); z-index:998;
  opacity:0; visibility:hidden; transition: var(--t);
}
.nav-overlay.active { opacity:1; visibility:visible; }

/* ================================================================
   HERO
================================================================ */
.hero {
  position:relative;
  min-height: auto;
  padding: 60px 0;
  display:flex; align-items:center;
  overflow:hidden; background:var(--dark);
}
.hero-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center top;
  transform:scale(1.07);
  animation: heroZoom 16s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0%   { transform:scale(1.07); }
  100% { transform:scale(1.14); }
}
.hero-gradient {
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(4, 28, 44, 0.95) 0%, rgba(4, 28, 44, 0.65) 100%);
}
/* Animated particles */
.particles { position:absolute; inset:0; overflow:hidden; pointer-events:none; }
.particles span {
  position:absolute;
  border-radius:50%;
  background:rgba(45,110,245,.12);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform:translateY(110vh) rotate(0deg); opacity:0; }
  8%   { opacity:1; }
  92%  { opacity:1; }
  100% { transform:translateY(-60px) rotate(720deg); opacity:0; }
}

.hero .container {
  position:relative; z-index:2;
  padding-top:60px; padding-bottom:60px;
  display:grid; grid-template-columns: 1.1fr 0.9fr; gap:40px;
  align-items:center;
}
.hero-content { max-width:100%; }
.hero-form-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  animation: fadeInRight 1.2s ease .4s both;
}
.hero-form-box h3 {
  font-size: 1.4rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; text-align: center;
}
.hero-form-box p {
  font-size: 14px; color: var(--gray); margin-bottom: 20px; text-align: center;
}

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding:6px 16px; border-radius:50px;
  font-size:12.5px; font-weight:500;
  margin-bottom:14px;
  animation: slideLeft .8s ease both;
  letter-spacing:.3px;
}
.hero-badge i { color:#ff6b6b; animation: pulseIcon 2s ease infinite; }
@keyframes pulseIcon {
  0%,100% { transform:scale(1); }
  50%      { transform:scale(1.28); }
}

/* Typed animation row */
.hero-typed-row {
  display:flex; align-items:center; gap:9px;
  margin-bottom:20px;
  animation: slideLeft .85s ease .04s both;
}
.hero-typed-row i {
  color: var(--red-light);
  font-size:16px;
  filter: drop-shadow(0 0 6px rgba(245,51,51,.55));
}
.hero-typed-row .typed-wrap {
  font-size: clamp(.92rem, 1.7vw, 1.08rem);
  font-weight: 600;
  color: rgba(255,255,255,.93);
  letter-spacing: .25px;
}
.typed-cursor {
  color: var(--red-light) !important;
  font-weight: 300;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 25px;
  animation: slideLeft .9s ease .08s both;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.hero h1 .highlight {
  color: #ff4a4a;
  font-weight: 600;
  text-shadow: 0 0 18px rgba(255, 74, 74, 0.4);
}
.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  line-height: 1.78;
  animation: slideLeft 1s ease .16s both;
}
.hero-btns {
  display:flex; flex-wrap:wrap; gap:12px;
  animation: slideLeft 1.1s ease .24s both;
}
.hero-checks {
  display:flex; flex-wrap:wrap; gap:16px;
  margin-top:34px;
  animation: slideLeft 1.2s ease .32s both;
}
.hero-check {
  display:flex; align-items:center; gap:7px;
  color:rgba(255,255,255,.82); font-size:13.5px;
}
.hero-check i { color:#6aefb4; font-size:14px; }

/* Hero stats card group */
.hero-stats {
  display:flex; flex-direction:column; gap:14px;
  animation: fadeInRight 1.2s ease .4s both;
}
.h-stat {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.2);
  border-top: 2px solid rgba(255,255,255,.4);
  border-radius: var(--r);
  padding: 20px 26px;
  text-align:center;
  min-width:138px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.h-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26,86,219,.25);
}
.h-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem; font-weight:600;
  color:var(--white); line-height:1;
}
.h-stat-num sup { font-size:1.3rem; color:var(--red-light); }
.h-stat-label {
  font-size:11px; text-transform:uppercase;
  letter-spacing:.6px; color:rgba(255,255,255,.55);
  margin-top:5px;
}

/* Wave bottom */
.hero-wave {
  position:absolute; bottom:0; left:0; right:0;
  line-height:0;
}
.hero-wave svg { display:block; width:100%; }

@keyframes slideLeft {
  from { opacity:0; transform:translateX(-36px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes fadeInRight {
  from { opacity:0; transform:translateX(36px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ================================================================
   SECTION SHARED
================================================================ */
section { padding:80px 0; }
.section-head { text-align:center; margin-bottom:52px; }
.s-badge {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--light); border:1px solid rgba(26,75,140,.15);
  color:var(--blue);
  padding:4px 14px; border-radius:50px;
  font-size:12px; font-weight:700;
  text-transform:uppercase; letter-spacing:1px;
  margin-bottom:10px;
}
.s-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight:600; color:var(--dark);
  margin-bottom:12px;
}
.s-title span { color:var(--red); }
.s-sub {
  font-size:1.05rem; color:var(--gray);
  max-width:570px; margin:0 auto; line-height:1.75;
}
.rule {
  display:flex; align-items:center; justify-content:center;
  gap:10px; margin:12px auto 0;
}
.rule i { display:block; height:3px; width:36px;
          background:var(--blue); border-radius:3px; }
.rule b { display:block; width:10px; height:10px;
          border-radius:50%; background:var(--red); }

/* ================================================================
   TRUST BAR
================================================================ */
.trust-bar {
  background: var(--light);
  padding:20px 0;
  border-bottom:1px solid rgba(26,75,140,.08);
}
.trust-inner {
  display:flex; align-items:center;
  justify-content:space-around; flex-wrap:wrap; gap:20px;
}
.trust-item {
  display:flex; align-items:center; gap:10px;
  font-size:14px; font-weight:600; color:var(--dark-3);
}
.trust-item i { font-size:22px; color:var(--blue); }

/* ================================================================
   SERVICES SECTION
================================================================ */
.services-sec { background:var(--light); position:relative; }
.services-sec::before {
  content:''; position:absolute;
  top:0; left:0; right:0; height:4px;
  background:var(--grad-blue);
}
.services-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}
.svc-card {
  background:var(--white);
  border-radius: var(--r-lg);
  overflow:hidden;
  box-shadow: var(--sh);
  border:1px solid rgba(26,75,140,.06);
  transition: var(--t);
  position:relative;
}
.svc-card:hover { transform:translateY(-8px); box-shadow:var(--sh-xl); }
.svc-img { position:relative; height:220px; overflow:hidden; }
.svc-img img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.svc-card:hover .svc-img img { transform:scale(1.07); }
.svc-tag {
  position:absolute; top:14px; left:14px;
  background:var(--grad-blue); color:var(--white);
  padding:3px 11px; border-radius:50px;
  font-size:11px; font-weight:700;
}
.svc-body { padding:22px; }
.svc-ico {
  width:50px; height:50px; border-radius:13px;
  background:rgba(26,75,140,.08);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:12px; transition:var(--t);
}
.svc-ico i { font-size:21px; color:var(--blue); transition:var(--tf); }
.svc-card:hover .svc-ico { background:var(--grad-blue); }
.svc-card:hover .svc-ico i { color:var(--white); }
.svc-body h3 { font-size:1.15rem; font-weight:600; margin-bottom:7px; }
.svc-body p { font-size:13.5px; color:var(--gray); line-height:1.7; margin-bottom:14px; }
.svc-link {
  display:inline-flex; align-items:center; gap:5px;
  color:var(--blue); font-size:13.5px; font-weight:700;
  transition:var(--tf);
}
.svc-link:hover { color:var(--red); gap:9px; }

/* ================================================================
   WHY CHOOSE US
================================================================ */
.why-sec { background:var(--white); position:relative; overflow:hidden; }
.why-sec::after {
  content:''; position:absolute;
  bottom:-80px; left:-80px;
  width:320px; height:320px; border-radius:50%;
  background:radial-gradient(circle, rgba(26,75,140,.04) 0%, transparent 70%);
}
.why-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:60px; align-items:center;
}
.why-img { position:relative; border-radius:var(--r-xl); overflow:visible; }
.why-img-inner {
  border-radius:var(--r-xl);
  overflow:hidden; box-shadow:var(--sh-xl);
}
.why-img-inner img { width:100%; height:480px; object-fit:cover; }
.why-badge-float {
  position:absolute; bottom:28px; right:-28px;
  background:var(--grad-blue); color:var(--white);
  padding:20px 22px; border-radius:var(--r-lg);
  text-align:center; box-shadow:var(--sh-lg); min-width:138px;
  z-index:2;
}
.why-badge-float .num {
  font-family:var(--font-heading);
  font-size:2.4rem; font-weight:700; line-height:1;
}
.why-badge-float .lbl { font-size:11.5px; color:rgba(255,255,255,.82); margin-top:4px; }
.why-accent {
  position:absolute; top:20px; left:-18px;
  width:80px; height:80px; border-radius:var(--r);
  background:var(--grad-red); opacity:.12;
  transform:rotate(45deg); z-index:1;
}
.features-list { display:grid; gap:16px; margin-top:28px; }
.fi {
  display:flex; gap:14px; align-items:flex-start;
  padding:18px; border-radius:var(--r);
  background:var(--light);
  border:1px solid rgba(26,75,140,.06);
  transition:var(--t);
}
.fi:hover { background:var(--white); box-shadow:var(--sh); transform:translateX(5px); }
.fi-ico {
  width:42px; height:42px; min-width:42px; border-radius:11px;
  background:var(--grad-blue);
  display:flex; align-items:center; justify-content:center;
}
.fi-ico i { color:white; font-size:17px; }
.fi h4 { font-size:.95rem; font-weight:700; margin-bottom:3px; }
.fi p { font-size:13px; color:var(--gray); line-height:1.6; }

/* ================================================================
   STATS BAR
================================================================ */
.stats-bar {
  background:var(--grad-blue); padding:56px 0;
  position:relative; overflow:hidden;
}
.stats-bar::before {
  content:''; position:absolute; inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='22'/%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:0; position:relative; z-index:1;
}
.stat-box {
  text-align:center; color:white; padding:20px 24px;
  border-right:1px solid rgba(255,255,255,.14);
}
.stat-box:last-child { border-right:none; }
.stat-box i { font-size:1.8rem; color:rgba(255,255,255,.5); margin-bottom:10px; }
.stat-num {
  font-family:var(--font-heading);
  font-size:2.4rem; font-weight:700;
  line-height:1; margin-bottom:6px;
  display:flex; align-items:flex-end; justify-content:center; gap:1px;
}
.counter { color:white; }
.stat-plus { color:var(--red-light); font-size:2rem; }
.stat-box .stat-lbl { font-size:13px; color:rgba(255,255,255,.72); font-weight:500; }

/* ================================================================
   PROCESS STEPS
================================================================ */
.process-sec { background:var(--light); }
.steps-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:24px; position:relative;
}
.steps-grid::before {
  content:''; position:absolute;
  top:35px; left:12.5%; right:12.5%;
  height:2px;
  background:var(--blue);
  z-index:0;
}
.step { text-align:center; position:relative; z-index:1; }
.step-num {
  width:70px; height:70px; border-radius:50%;
  background:var(--grad-blue); color:white;
  font-family:var(--font-heading); font-size:1.4rem; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 18px;
  box-shadow:0 8px 18px rgba(26,75,140,.30);
  position:relative; transition:var(--t);
}
.step:hover .step-num {
  background:var(--grad-red); transform:scale(1.1);
}
.step-num::after {
  content:''; position:absolute; inset:-6px;
  border-radius:50%;
  border:2px dashed rgba(26,75,140,.25);
  animation:rotateDash 16s linear infinite;
}
@keyframes rotateDash {
  from { transform:rotate(0deg); }
  to   { transform:rotate(360deg); }
}
.step h4 { font-size:1rem; font-weight:700; margin-bottom:7px; }
.step p { font-size:13.5px; color:var(--gray); line-height:1.65; }

/* ================================================================
   SERVICE AREAS
================================================================ */
.areas-sec { background:var(--white); }
.areas-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.area-card {
  border-radius:var(--r-lg); overflow:hidden;
  position:relative; height:280px; cursor:pointer;
}
.area-card img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.area-card:hover img { transform:scale(1.07); }
.area-ov {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(8,15,31,.92) 0%, rgba(26,75,140,.55) 45%, transparent 75%);
  display:flex; flex-direction:column;
  justify-content:flex-end; padding:22px;
  transition:var(--t);
}
.area-card:hover .area-ov {
  background:linear-gradient(to top, rgba(8,15,31,.97) 0%, rgba(26,75,140,.72) 55%, rgba(26,75,140,.20) 100%);
}
.area-name { font-family:var(--font-heading); font-size:1.35rem; font-weight:700; color:white; }
.area-state { font-size:13px; color:rgba(255,255,255,.65); margin-bottom:12px; }
.area-btn {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--red); color:white;
  padding:6px 15px; border-radius:50px;
  font-size:12.5px; font-weight:700;
  width:fit-content;
  opacity:0; transform:translateY(10px);
  transition:var(--t);
}
.area-card:hover .area-btn { opacity:1; transform:translateY(0); }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testi-sec {
  background:var(--grad-dark);
  padding:80px 0;
  position:relative; overflow:hidden;
}
.testi-sec .s-title { color:var(--white); }
.testi-sec .s-sub { color:rgba(255,255,255,.55); }
.testi-sec .s-badge {
  background:rgba(204,34,34,.14); border-color:rgba(204,34,34,.28); color:#ff7b7b;
}
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:44px; }
.tcard {
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r-lg); padding:26px;
  backdrop-filter:blur(12px);
  transition:var(--t);
}
.tcard:hover {
  background:rgba(255,255,255,.09);
  transform:translateY(-5px);
  box-shadow:0 20px 40px rgba(0,0,0,.35);
}
.tcard-stars { color:#fbbf24; font-size:15px; letter-spacing:2px; margin-bottom:14px; }
.tcard-text {
  font-size:14px; color:rgba(255,255,255,.78);
  line-height:1.82; font-style:italic; margin-bottom:18px;
}
.tcard-author { display:flex; align-items:center; gap:11px; }
.t-avatar {
  width:42px; height:42px; border-radius:50%;
  background:var(--grad-blue);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-heading); font-size:17px; font-weight:700; color:white;
  flex-shrink:0;
}
.t-name { font-weight:700; color:var(--white); font-size:14.5px; }
.t-loc { font-size:12px; color:rgba(255,255,255,.45); }

/* ================================================================
   CTA BANNER
================================================================ */
.cta-banner {
  background:var(--grad-red);
  padding:56px 0;
  position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute; inset:0;
  background:url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z' fill='rgba(255,255,255,.03)'/%3E%3C/svg%3E");
}
.cta-inner {
  display:flex; align-items:center;
  justify-content:space-between;
  gap:30px; flex-wrap:wrap;
  position:relative; z-index:1;
}
.cta-text h2 {
  font-size:clamp(1.5rem, 3vw, 2.3rem);
  font-weight:700; color:var(--white); margin-bottom:6px;
}
.cta-text p { color:rgba(255,255,255,.84); font-size:1.05rem; }
.cta-right { display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.cta-phone-block {
  display:flex; align-items:center; gap:12px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  border-radius:var(--r-lg);
  padding:12px 18px;
  backdrop-filter:blur(10px);
  transition:var(--t);
  text-decoration:none;
}
.cta-phone-block:hover { background:rgba(255,255,255,.20); }
.cta-ph-icon {
  width:42px; height:42px; border-radius:50%;
  background:rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center;
  color:white; font-size:17px;
  animation:ringAnim 3.5s ease infinite;
}
@keyframes ringAnim {
  0%,100% { transform:rotate(0); }
  5%,15%  { transform:rotate(15deg); }
  10%,20% { transform:rotate(-15deg); }
  25%     { transform:rotate(0); }
}
.cta-ph-lbl { font-size:11px; color:rgba(255,255,255,.72); text-transform:uppercase; letter-spacing:.4px; }
.cta-ph-num { font-family:var(--font-body); font-size:1.1rem; font-weight:500; color:white; }

/* ================================================================
   MAP SECTION
================================================================ */
.map-sec { padding:0; }
.map-sec iframe { width:100%; height:440px; border:none; display:block; filter:contrast(1.04) saturate(1.1); }

/* ================================================================
   PAGE INNER HERO
================================================================ */
.page-hero {
  background:var(--dark);
  padding:80px 0 56px;
  position:relative; overflow:hidden;
}
.page-hero-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:.18;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:var(--grad-blue); opacity:.92;
}
.page-hero .container { position:relative; z-index:2; }
.breadcrumb {
  display:flex; align-items:center;
  gap:7px; margin-bottom:14px; flex-wrap:wrap;
}
.breadcrumb a { color:rgba(255,255,255,.6); font-size:13px; }
.breadcrumb a:hover { color:var(--red-light); }
.breadcrumb i { color:rgba(255,255,255,.3); font-size:9px; }
.breadcrumb span { color:var(--red-light); font-size:13px; }
.page-hero h1 {
  font-size:clamp(1.9rem, 4vw, 3rem);
  font-weight:700; color:var(--white); margin-bottom:10px;
}
.page-hero .page-sub {
  font-size:1.05rem; color:rgba(255,255,255,.78);
  max-width:580px; line-height:1.75;
}

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-sec { background:var(--white); }
.contact-grid {
  display:grid; grid-template-columns:5fr 7fr; gap:44px; align-items:start;
}
.cinfo h3 { font-size:1.45rem; font-weight:700; margin-bottom:14px; }
.cinfo > p { font-size:14.5px; color:var(--gray); line-height:1.75; margin-bottom:26px; }
.cinfo-items { display:grid; gap:14px; }
.cinfo-item {
  display:flex; gap:14px; align-items:flex-start;
  padding:16px; background:var(--light);
  border-radius:var(--r); transition:var(--t);
}
.cinfo-item:hover { background:var(--white); box-shadow:var(--sh); }
.ci-ic {
  width:44px; height:44px; min-width:44px; border-radius:11px;
  background:var(--grad-blue);
  display:flex; align-items:center; justify-content:center;
  color:white; font-size:17px;
}
.ci-lbl { font-size:11.5px; text-transform:uppercase; letter-spacing:.4px; color:var(--gray-lt); margin-bottom:3px; }
.ci-val { font-size:14.5px; font-weight:700; color:var(--dark); }
.ci-val a { color:var(--blue); }
.ci-val a:hover { color:var(--red); }

.cform-wrap {
  background:var(--white);
  border-radius:var(--r-xl);
  padding:38px;
  box-shadow:var(--sh-lg);
  border:1px solid rgba(26,75,140,.08);
}
.cform-wrap h3 { font-size:1.4rem; font-weight:700; margin-bottom:5px; }
.cform-wrap > p { font-size:13.5px; color:var(--gray); margin-bottom:24px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-grp { margin-bottom:14px; }
.form-grp label { display:block; font-size:13px; font-weight:700; color:var(--dark); margin-bottom:5px; }
.form-grp input,
.form-grp select,
.form-grp textarea {
  width:100%; padding:11px 15px;
  border:1.5px solid rgba(26,75,140,.15);
  border-radius:10px;
  font-family:var(--font-body); font-size:14px; color:var(--dark);
  background:var(--light); outline:none;
  transition:var(--tf);
}
.form-grp input:focus,
.form-grp select:focus,
.form-grp textarea:focus {
  border-color:var(--blue); background:var(--white);
  box-shadow:0 0 0 3px rgba(26,75,140,.08);
}
.form-grp textarea { resize:vertical; min-height:110px; }
.form-grp select {
  appearance:none; cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b7280'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 11px center; background-size:20px;
}

/* ================================================================
   FAQ
================================================================ */
.faq-sec { background:var(--white); }
.faq-wrap { max-width:790px; margin:0 auto; }
.faq-item {
  border:1.5px solid rgba(26,75,140,.10);
  border-radius:var(--r);
  margin-bottom:11px; overflow:hidden; transition:var(--t);
}
.faq-item.open { border-color:rgba(26,75,140,.22); box-shadow:var(--sh); }
.faq-q {
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 22px;
  cursor:pointer; font-size:15px; font-weight:700; color:var(--dark);
  gap:14px; transition:var(--tf); background:var(--white);
}
.faq-q:hover, .faq-item.open .faq-q { color:var(--blue); background:var(--light); }
.faq-ic {
  width:30px; height:30px; min-width:30px; border-radius:50%;
  background:rgba(26,75,140,.08);
  display:flex; align-items:center; justify-content:center;
  color:var(--blue); font-size:13px; transition:var(--t);
}
.faq-item.open .faq-ic { background:var(--grad-blue); color:white; transform:rotate(45deg); }
.faq-a {
  max-height:0; overflow:hidden;
  padding:0 22px; transition:max-height .4s ease, padding .3s ease;
}
.faq-a.open { max-height:380px; padding:0 22px 18px; }
.faq-a p { font-size:14px; color:var(--gray); line-height:1.82; }

/* ================================================================
   LOCATION PAGE
================================================================ */
.loc-features { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:36px; }
.lf-card {
  text-align:center; padding:26px 18px;
  background:var(--light); border-radius:var(--r-lg);
  border:1px solid rgba(26,75,140,.07); transition:var(--t);
}
.lf-card:hover { background:var(--white); box-shadow:var(--sh); transform:translateY(-4px); }
.lf-ic {
  width:58px; height:58px; border-radius:50%;
  background:var(--grad-blue);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 14px; color:white; font-size:22px;
}
.lf-card h4 { font-size:1rem; font-weight:700; margin-bottom:7px; }
.lf-card p { font-size:13px; color:var(--gray); }

.cities-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:10px;
}
.city-tag {
  display:flex; align-items:center; gap:7px;
  padding:10px 13px;
  background:var(--light); border:1px solid rgba(26,75,140,.10);
  border-radius:8px; font-size:13px; font-weight:600; color:var(--dark-3);
  transition:var(--tf);
}
.city-tag i { color:var(--red); font-size:10px; }
.city-tag:hover { background:var(--blue); color:white; }
.city-tag:hover i { color:rgba(255,255,255,.65); }

/* ================================================================
   ABOUT PAGE
================================================================ */
.about-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.astat {
  text-align:center; padding:24px 16px;
  background:var(--light); border-radius:var(--r-lg);
  border:1px solid rgba(26,75,140,.08);
}
.astat-num {
  font-family:var(--font-heading);
  font-size:2.4rem; font-weight:700; color:var(--blue); line-height:1;
}
.astat-num span { color:var(--red); }
.astat-lbl { font-size:12.5px; color:var(--gray); margin-top:5px; }

.values-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.vcard {
  padding:26px; background:var(--light);
  border-radius:var(--r-lg);
  border-left:4px solid var(--blue); transition:var(--t);
}
.vcard:hover { background:var(--white); box-shadow:var(--sh); border-left-color:var(--red); }
.vcard h4 {
  display:flex; align-items:center; gap:9px;
  font-size:1.05rem; font-weight:700; margin-bottom:9px;
}
.vcard h4 i { color:var(--blue); font-size:19px; }
.vcard p { font-size:13.5px; color:var(--gray); line-height:1.7; }

/* ================================================================
   SERVICE DETAIL PAGE
================================================================ */
.svc-detail-grid { display:grid; grid-template-columns:7fr 5fr; gap:44px; align-items:start; }
.svc-detail-grid.rev { direction:rtl; }
.svc-detail-grid.rev > * { direction:ltr; }
.svc-detail-img img { width:100%; border-radius:var(--r-xl); box-shadow:var(--sh-xl); }
.svc-detail-content h2 { font-size:clamp(1.6rem,3vw,2.3rem); font-weight:700; margin-bottom:14px; }
.svc-detail-content p { font-size:14.5px; color:var(--gray); line-height:1.8; margin-bottom:14px; }
.svc-list { display:grid; gap:10px; margin:20px 0; }
.svc-list-item {
  display:flex; align-items:flex-start; gap:10px;
  font-size:14px; color:var(--dark-3); font-weight:500;
}
.svc-list-item i { color:var(--red); font-size:16px; margin-top:1px; flex-shrink:0; }

/* ================================================================
   FOOTER
================================================================ */
.footer { background:var(--dark); color:rgba(255,255,255,.72); }
.footer-top { padding:64px 0 36px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:38px; }
.fbrand { padding-right:18px; }
.footer-logo { display:flex; align-items:center; gap:9px; margin-bottom:14px; }
.footer-logo img { height:42px; filter:brightness(0) invert(1) opacity(.88); }
.footer-logo-text { font-family:var(--font-heading); font-size:19px; font-weight:700; color:rgba(255,255,255,.95); }
.footer-logo-text strong { color:var(--red-light); }
.fbrand p { font-size:13px; line-height:1.82; color:rgba(255,255,255,.50); margin-bottom:18px; }
.f-social { display:flex; gap:9px; }
.f-social a {
  width:34px; height:34px; border-radius:50%;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.10);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.60); font-size:13px; transition:var(--t);
}
.f-social a:hover { background:var(--red); border-color:var(--red); color:white; transform:translateY(-3px); }

.fcol h4 {
  font-size:14.5px; font-weight:700; color:var(--white);
  margin-bottom:18px; position:relative; padding-bottom:9px;
}
.fcol h4::after { content:''; position:absolute; bottom:0; left:0; width:28px; height:2px; background:var(--red); border-radius:2px; }
.fcol ul li { margin-bottom:9px; }
.fcol ul li a {
  font-size:13px; color:rgba(255,255,255,.52);
  display:flex; align-items:center; gap:5px; transition:var(--tf);
}
.fcol ul li a::before { content:'›'; color:var(--red); font-size:15px; line-height:1; }
.fcol ul li a:hover { color:var(--red-light); padding-left:5px; }
/* No arrow on contact column items */
.fcol .fcontact-list li a::before { display:none; }

.fcontact-list { display:grid; gap:12px; }
.fcontact-item { display:flex; gap:9px; align-items:flex-start; font-size:13px; color:rgba(255,255,255,.50); }
.fcontact-item i { color:var(--red-light); margin-top:2px; font-size:13px; min-width:14px; }
.fcontact-item a { color:rgba(255,255,255,.50); transition:var(--tf); }
.fcontact-item a:hover { color:var(--red-light); }

.footer-bottom {
  border-top:1px solid rgba(255,255,255,.07);
  padding:18px 0;
}
.footer-bottom .container {
  display:flex; align-items:center;
  justify-content:space-between; flex-wrap:wrap; gap:8px;
}
.footer-bottom p { font-size:12.5px; color:rgba(255,255,255,.38); }
.footer-bottom a { color:var(--red-light); font-weight:600; }
.footer-bottom a:hover { color:white; }

/* ================================================================
   FLOATING STICKY CALL
================================================================ */
.sticky-call {
  position:fixed; bottom:28px; right:28px;
  background:var(--blue); color:white;
  border-radius:50%; width: 55px; height: 55px; padding:0;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 22px rgba(8,47,73,.40);
  z-index:9999; transition:var(--t);
  text-decoration:none;
  animation:pulseCTA 3s ease infinite;
}
.sticky-call:hover {
  background:var(--red); transform:translateY(-3px) scale(1.04);
  box-shadow:0 10px 28px rgba(204,34,34,.45);
}
.sticky-call i { font-size:22px; animation:ringAnim 3.5s ease infinite; }
@keyframes pulseCTA {
  0%,100% { box-shadow:0 6px 22px rgba(8,47,73,.40); }
  50% { box-shadow:0 6px 28px rgba(8,47,73,.55), 0 0 0 7px rgba(8,47,73,.08); }
}

.back-top {
  position:fixed; bottom:28px; left:28px;
  width:44px; height:44px; border-radius:50%;
  background:var(--dark-2); border:1px solid rgba(255,255,255,.13);
  color:white; cursor:pointer; font-size:15px;
  display:flex; align-items:center; justify-content:center;
  z-index:9998; opacity:0; transform:translateY(18px); transition:var(--t);
}
.back-top.visible { opacity:1; transform:translateY(0); }
.back-top:hover { background:var(--blue); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width:1200px) {
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-box { border-right:none; border-bottom:1px solid rgba(255,255,255,.1); }
  .stat-box:nth-child(odd) { border-right:1px solid rgba(255,255,255,.1); }
  .hero-stats { display:none; }
}
@media (max-width:992px) {
  .hamburger { display:flex; }
  .nav-menu {
    position:fixed; top:0; right:-100%; width:290px; height:100vh;
    background:var(--white); flex-direction:column;
    justify-content:flex-start; padding:84px 22px 36px;
    box-shadow:-8px 0 28px rgba(0,0,0,.14);
    transition:right .4s var(--ease);
    overflow-y:auto; z-index:999;
  }
  .nav-menu.open { right:0; }
  .nav-list { flex-direction:column; width:100%; gap:0; }
  .nav-list > li > a { padding:14px 0; font-size:15.5px; border-bottom:1px solid rgba(0,0,0,.06); border-radius:0; }
  .dropdown-menu {
    position:static; opacity:1; visibility:visible; transform:none;
    box-shadow:none; border:none; padding:0 0 0 14px;
    background:var(--light); border-radius:var(--r);
    margin-top:4px; display:none;
  }
  .dropdown.open .dropdown-menu { display:block; }
  .why-grid { grid-template-columns:1fr; }
  .why-badge-float { right:16px; }
  .testi-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .steps-grid { grid-template-columns:repeat(2,1fr); gap:28px; }
  .steps-grid::before { display:none; }
  .areas-grid { grid-template-columns:1fr 1fr; }
  .loc-features { grid-template-columns:1fr 1fr; }
  .cities-grid { grid-template-columns:repeat(3,1fr); }
  .values-grid { grid-template-columns:1fr; }
  .svc-detail-grid, .svc-detail-grid.rev { grid-template-columns:1fr; direction:ltr; }
  .about-stats { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
  section { padding:56px 0; }
  .top-bar { display:none; }
  .hero { min-height:auto; padding:70px 0 52px; }
  .hero .container { flex-direction:column; }
  .hero h1 { font-size:2rem; }
  .services-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .stat-box:nth-child(odd) { border-right:1px solid rgba(255,255,255,.1); }
  .cta-inner { flex-direction:column; text-align:center; }
  .cta-right { justify-content:center; }
  .footer-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .areas-grid { grid-template-columns:1fr; }
  .steps-grid { grid-template-columns:1fr; }
  .loc-features { grid-template-columns:1fr; }
  .cities-grid { grid-template-columns:repeat(2,1fr); }
  .about-stats { grid-template-columns:1fr 1fr; }
  .cform-wrap { padding:24px; }
}
@media (max-width:480px) {
  .hero h1 { font-size:1.75rem; }
  .hero-btns { flex-direction:column; }
  .hero-btns .btn { width:100%; justify-content:center; }
  .nav-actions .btn-blue { display:none; }
  .cities-grid { grid-template-columns:1fr 1fr; }
  .about-stats { grid-template-columns:1fr 1fr; }
  .testi-grid { grid-template-columns:1fr; }
}
