:root {
  --navy: #071b3a;
  --navy-2: #0b2a58;
  --gold: #f6b900;
  --gold-2: #ffd45a;
  --black: #111111;
  --text: #172033;
  --muted: #647084;
  --white: #ffffff;
  --soft: #f4f7fb;
  --border: rgba(7, 27, 58, 0.12);
  --shadow: 0 24px 60px rgba(7, 27, 58, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(7, 27, 58, 0.16);
}

.brand strong {
  display: block;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--black);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.nav-call)::after {
  content: "";
  width: 0;
  height: 3px;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.25s ease;
  border-radius: 999px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-call {
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(7, 27, 58, 0.18);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--navy);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 70px 0 80px;
  background:
    radial-gradient(circle at 8% 15%, rgba(246, 185, 0, 0.18), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(7, 27, 58, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f6f8fb 52%, #ffffff 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border: 34px solid rgba(7, 27, 58, 0.05);
  border-radius: 50%;
  left: -240px;
  top: -210px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 720px;
  height: 220px;
  background: var(--navy);
  right: -170px;
  bottom: -85px;
  transform: rotate(-11deg);
  border-top: 16px solid var(--gold);
  box-shadow: 0 -18px 0 rgba(17, 17, 17, 0.9);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  margin: 0 0 16px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 80px);
  line-height: 0.98;
  color: var(--navy);
  letter-spacing: -2px;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 18px;
}

h3 {
  color: var(--navy);
  font-size: 21px;
  margin-bottom: 10px;
}

.hero-text,
.section-title p,
.about-content p,
.contact-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 18px 34px rgba(246, 185, 0, 0.28);
}

.btn.secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(7, 27, 58, 0.22);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quick-info div {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(7, 27, 58, 0.08);
}

.icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  margin-bottom: 10px;
}

.quick-info p {
  margin: 0;
  line-height: 1.4;
  color: var(--muted);
  word-break: break-word;
}

.quick-info strong {
  color: var(--navy);
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.visual-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  border-radius: 34px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  clip-path: polygon(7% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 10%);
}

.ac-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  filter: drop-shadow(0 24px 25px rgba(0, 0, 0, 0.14));
}

.badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(7, 27, 58, 0.28);
  border-bottom: 5px solid var(--gold);
}

.badge span {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.badge small {
  font-weight: 800;
}

.tools-img {
  position: absolute;
  z-index: 1;
  width: 360px;
  right: -30px;
  bottom: -48px;
  border-radius: 28px;
  filter: drop-shadow(0 20px 28px rgba(7, 27, 58, 0.18));
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.shape-one {
  width: 180px;
  height: 180px;
  background: rgba(246, 185, 0, 0.16);
  right: 41%;
  top: 20%;
}

.shape-two {
  width: 110px;
  height: 110px;
  border: 18px solid rgba(7, 27, 58, 0.06);
  left: 52%;
  bottom: 16%;
}

.water-mark {
  position: absolute;
  width: 220px;
  height: 80px;
  border: 2px solid rgba(7, 27, 58, 0.08);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.water-one {
  left: 4%;
  bottom: 8%;
}

.water-two {
  right: 16%;
  top: 12%;
}

.section {
  padding: 96px 0;
}

.section-title {
  width: min(760px, 100%);
  text-align: center;
  margin: 0 auto 48px;
}

.section-title .eyebrow {
  justify-content: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(7, 27, 58, 0.08);
  transition: 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 16px;
  font-size: 26px;
  margin-bottom: 18px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.about {
  background:
    linear-gradient(135deg, rgba(7, 27, 58, 0.04), rgba(246, 185, 0, 0.08)),
    var(--soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.about-card {
  position: relative;
  background: var(--white);
  border-radius: 34px;
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow);
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 3px solid var(--gold);
  border-radius: 28px;
  pointer-events: none;
}

.about-card img {
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 15px;
  border-radius: 16px;
  font-weight: 800;
  color: var(--navy);
  border: 1px solid var(--border);
}

.feature-list span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  flex: 0 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 28px;
  border-radius: 26px;
  overflow: hidden;
  min-height: 220px;
}

.process-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 110px;
  height: 110px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.9;
}

.process-card span {
  display: inline-flex;
  color: var(--gold);
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 22px;
}

.process-card h3 {
  color: var(--white);
}

.process-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.cta {
  padding: 60px 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 27, 58, 0.96), rgba(7, 27, 58, 0.9)),
    var(--navy);
  color: var(--white);
  border-radius: 34px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 28px solid rgba(246, 185, 0, 0.24);
  border-radius: 50%;
  right: -84px;
  top: -84px;
}

.cta-box .eyebrow,
.cta-box h2 {
  color: var(--white);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

.contact {
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(7, 27, 58, 0.06);
}

.contact-list span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  flex: 0 0 auto;
}

.contact-form {
  background: var(--white);
  padding: 34px;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
  background: #fbfcff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(246, 185, 0, 0.16);
}

.footer {
  background: #050f22;
  color: var(--white);
  padding: 26px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer strong {
  color: var(--gold);
  font-size: 24px;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99;
  display: grid;
  gap: 12px;
}

.floating-call,
.floating-whatsapp {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  font-size: 26px;
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(7, 27, 58, 0.28);
}

.floating-call {
  background: var(--gold);
  color: var(--navy);
}

.floating-whatsapp {
  background: var(--navy);
  color: var(--gold);
  border: 2px solid var(--gold);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 18px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
  }

  .nav-call {
    text-align: center;
    padding: 14px 18px !important;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-visual {
    min-height: auto;
  }

  .visual-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .navbar {
    height: 74px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 62px;
  }

  .hero::after {
    width: 520px;
    height: 150px;
    right: -220px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .ac-img {
    height: 360px;
  }

  .tools-img {
    display: none;
  }

  .service-grid,
  .process-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .cta-box,
  .contact-form {
    padding: 28px;
  }

  .floating-actions {
    right: 16px;
    bottom: 16px;
  }

  .floating-call,
  .floating-whatsapp {
    width: 54px;
    height: 54px;
  }
}

/* ===== Live attractive effects added for Jalal Technical Services LLC ===== */
.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 185, 0, 0.18), rgba(7, 27, 58, 0.08) 42%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease;
  mix-blend-mode: multiply;
}

body:hover .cursor-glow {
  opacity: 1;
}

.site-header {
  box-shadow: 0 12px 40px rgba(7, 27, 58, 0.06);
}

.brand img {
  animation: logoFloat 4s ease-in-out infinite;
}

.nav-call,
.btn.primary,
.floating-whatsapp {
  position: relative;
  overflow: hidden;
}

.nav-call::before,
.btn.primary::before,
.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.48) 46%, transparent 58%);
  transform: translateX(-120%);
  animation: shineMove 3.2s ease-in-out infinite;
}

.hero {
  isolation: isolate;
  animation: heroBreath 10s ease-in-out infinite alternate;
}

.hero h1 {
  background: linear-gradient(100deg, var(--navy) 0%, #0f3670 48%, var(--black) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 42px rgba(7, 27, 58, 0.12);
}

.live-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  display: block;
  border: 1px solid rgba(7, 27, 58, 0.12);
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95), rgba(246, 185, 0, 0.18), rgba(7, 27, 58, 0.04));
  border-radius: 50%;
  box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.8), 0 12px 28px rgba(7, 27, 58, 0.08);
  animation: bubbleRise 12s linear infinite;
  opacity: 0.65;
}

.b1 { width: 18px; height: 18px; left: 7%; bottom: -40px; animation-delay: 0s; }
.b2 { width: 28px; height: 28px; left: 39%; bottom: -80px; animation-delay: 2.3s; }
.b3 { width: 14px; height: 14px; right: 24%; bottom: -60px; animation-delay: 4.8s; }
.b4 { width: 36px; height: 36px; right: 8%; bottom: -90px; animation-delay: 6.2s; }

.air-line {
  position: absolute;
  height: 2px;
  width: 220px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(7, 27, 58, 0.18), rgba(246, 185, 0, 0.42), transparent);
  filter: blur(0.2px);
  animation: airFlow 7s ease-in-out infinite;
}

.a1 { top: 24%; right: -240px; animation-delay: 0s; }
.a2 { top: 38%; right: -260px; animation-delay: 1.7s; width: 290px; }
.a3 { top: 54%; right: -220px; animation-delay: 3.5s; width: 180px; }

.tool-float {
  position: absolute;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  border: 1px solid rgba(246, 185, 0, 0.32);
  box-shadow: 0 16px 36px rgba(7, 27, 58, 0.14);
  font-size: 26px;
  backdrop-filter: blur(10px);
  animation: toolFloat 6s ease-in-out infinite;
}

.tf1 { left: 47%; top: 16%; animation-delay: 0s; }
.tf2 { left: 4%; top: 53%; animation-delay: 1.2s; }
.tf3 { right: 38%; bottom: 13%; animation-delay: 2.1s; }
.tf4 { right: 7%; top: 45%; animation-delay: 3.2s; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 22px;
}

.hero-stats div {
  position: relative;
  overflow: hidden;
  padding: 16px 14px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 251, 0.88));
  border: 1px solid var(--border);
  box-shadow: 0 14px 35px rgba(7, 27, 58, 0.08);
}

.hero-stats div::after {
  content: "";
  position: absolute;
  inset: auto -28px -32px auto;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(246, 185, 0, 0.2);
}

.hero-stats span {
  display: block;
  color: var(--navy);
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
}

.hero-stats small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.3;
}

.service-ticker {
  width: 100%;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(246, 185, 0, 0.35);
  background: linear-gradient(90deg, rgba(7, 27, 58, 0.96), rgba(11, 42, 88, 0.96));
  box-shadow: 0 14px 34px rgba(7, 27, 58, 0.12);
  margin: 0 0 22px;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 28px;
  padding: 13px 20px;
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
  animation: tickerScroll 26s linear infinite;
}

.ticker-track span {
  color: var(--white);
}

.visual-card {
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.45) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: panelSweep 5.4s ease-in-out infinite;
  z-index: 4;
  pointer-events: none;
}

.visual-card:hover {
  box-shadow: 0 32px 70px rgba(7, 27, 58, 0.22);
}

.energy-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 2px dashed rgba(246, 185, 0, 0.62);
  border-radius: 50%;
  right: -54px;
  top: -58px;
  animation: rotateRing 16s linear infinite;
  z-index: 3;
  pointer-events: none;
}

.energy-ring::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px solid rgba(7, 27, 58, 0.12);
  border-radius: 50%;
}

.cool-breeze {
  position: absolute;
  left: 28px;
  top: 34px;
  z-index: 5;
  display: grid;
  gap: 12px;
  pointer-events: none;
}

.cool-breeze span {
  display: block;
  width: 160px;
  height: 10px;
  border-radius: 999px;
  border-top: 2px solid rgba(7, 27, 58, 0.26);
  animation: breezeWave 2.9s ease-in-out infinite;
}

.cool-breeze span:nth-child(2) { width: 120px; animation-delay: 0.35s; }
.cool-breeze span:nth-child(3) { width: 88px; animation-delay: 0.7s; }

.service-promise {
  position: absolute;
  left: -10px;
  top: 34px;
  z-index: 5;
  background: rgba(7, 27, 58, 0.96);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 18px;
  border-left: 6px solid var(--gold);
  box-shadow: 0 16px 36px rgba(7, 27, 58, 0.22);
  animation: promisePulse 2.4s ease-in-out infinite;
}

.service-promise strong,
.service-promise span {
  display: block;
}

.service-promise strong {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.service-promise span {
  margin-top: 4px;
  font-weight: 900;
}

.service-card,
.process-card,
.about-card,
.contact-form,
.contact-list a,
.cta-box,
.quick-info div,
.hero-stats div {
  will-change: transform, opacity;
}

.service-card::after,
.process-card::before,
.contact-list a::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(246, 185, 0, 0.12);
  right: -48px;
  top: -48px;
  transition: 0.35s ease;
  pointer-events: none;
}

.service-card:hover::after,
.process-card:hover::before {
  transform: scale(1.35);
  background: rgba(246, 185, 0, 0.22);
}

.service-icon {
  box-shadow: 0 14px 26px rgba(7, 27, 58, 0.18);
  animation: iconPulse 2.6s ease-in-out infinite;
}

.process-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  border: 1px solid rgba(246, 185, 0, 0.18);
}

.process-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 60px rgba(7, 27, 58, 0.2);
}

.contact-list a {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-list a:hover {
  transform: translateX(8px);
  box-shadow: 0 18px 40px rgba(7, 27, 58, 0.12);
}

.contact-form {
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(246, 185, 0, 0.85), rgba(7, 27, 58, 0.85)) border-box;
  border: 2px solid transparent;
}

.floating-call,
.floating-whatsapp {
  animation: floatingPulse 2.2s ease-in-out infinite;
}

.floating-whatsapp {
  animation-delay: 0.35s;
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(-2deg); }
}

@keyframes shineMove {
  0%, 64% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

@keyframes heroBreath {
  0% { background-position: 0% 0%; }
  100% { background-position: 20% 10%; }
}

@keyframes bubbleRise {
  0% { transform: translateY(0) translateX(0) scale(0.75); opacity: 0; }
  12% { opacity: 0.62; }
  75% { opacity: 0.48; }
  100% { transform: translateY(-920px) translateX(70px) scale(1.25); opacity: 0; }
}

@keyframes airFlow {
  0% { transform: translateX(0) scaleX(0.7); opacity: 0; }
  20% { opacity: 0.9; }
  100% { transform: translateX(-120vw) scaleX(1.1); opacity: 0; }
}

@keyframes toolFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(7deg); }
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes panelSweep {
  0%, 60% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

@keyframes rotateRing {
  to { transform: rotate(360deg); }
}

@keyframes breezeWave {
  0%, 100% { transform: translateX(0); opacity: 0.28; }
  50% { transform: translateX(18px); opacity: 0.82; }
}

@keyframes promisePulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 16px 36px rgba(7, 27, 58, 0.22); }
  50% { transform: translateY(-5px); box-shadow: 0 22px 45px rgba(7, 27, 58, 0.28); }
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes floatingPulse {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 18px 36px rgba(7, 27, 58, 0.28); }
  50% { transform: translateY(-5px) scale(1.04); box-shadow: 0 24px 48px rgba(7, 27, 58, 0.34); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .tool-float,
  .cursor-glow {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .service-promise {
    left: 20px;
    top: 22px;
  }
}

@media (max-width: 640px) {
  .live-bg,
  .energy-ring,
  .cool-breeze {
    display: none;
  }

  .service-ticker {
    border-radius: 18px;
  }

  .ticker-track {
    animation-duration: 18s;
  }

  .service-promise {
    position: relative;
    left: auto;
    top: auto;
    margin: 16px auto 0;
    width: max-content;
    max-width: 100%;
  }
}

/* ===== Professional HVAC website feature upgrade ===== */
.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 4px;
  width: 0;
  z-index: 10000;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  box-shadow: 0 0 18px rgba(246, 185, 0, 0.65);
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -32px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.trust-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
}

.trust-grid span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 900;
}

.service-link::after {
  content: "→";
  color: var(--gold);
  transition: transform 0.25s ease;
}

.service-link:hover::after {
  transform: translateX(5px);
}

.problems {
  background:
    radial-gradient(circle at 15% 20%, rgba(246, 185, 0, 0.16), transparent 24%),
    radial-gradient(circle at 86% 72%, rgba(7, 27, 58, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f6f8fb 100%);
  overflow: hidden;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 52px;
  align-items: center;
}

.problem-content p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
}

.problem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 30px;
}

.problem-tags span {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(7, 27, 58, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(7, 27, 58, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.problem-tags span::before {
  content: "•";
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.problem-tags span:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(7, 27, 58, 0.12);
}

.diagnostic-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(7, 27, 58, 0.96), rgba(11, 42, 88, 0.98)),
    var(--navy);
  border: 1px solid rgba(246, 185, 0, 0.35);
  border-radius: 34px;
  padding: 32px;
  box-shadow: var(--shadow);
  color: var(--white);
}

.diagnostic-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  right: -170px;
  top: -170px;
  background: radial-gradient(circle, rgba(246, 185, 0, 0.35), transparent 66%);
  animation: rotateRing 16s linear infinite;
}

.diagnostic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-120%);
  animation: panelSweep 5s ease-in-out infinite;
}

.diagnostic-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
}

.diagnostic-header span {
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
}

.diagnostic-header strong {
  font-size: 24px;
}

.diagnostic-line {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.diagnostic-line span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(246, 185, 0, 0.12);
  animation: diagnosticPulse 1.6s ease-in-out infinite;
}

.diagnostic-line:nth-child(3) span { animation-delay: 0.25s; }
.diagnostic-line:nth-child(4) span { animation-delay: 0.5s; }
.diagnostic-line:nth-child(5) span { animation-delay: 0.75s; }

.diagnostic-meter {
  position: relative;
  z-index: 2;
  height: 10px;
  margin-top: 28px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.diagnostic-meter i {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  animation: meterMove 3s ease-in-out infinite;
}

.maintenance {
  background:
    linear-gradient(135deg, rgba(7, 27, 58, 0.04), rgba(246, 185, 0, 0.08)),
    var(--soft);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(7, 27, 58, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.plan-card.featured {
  background:
    linear-gradient(155deg, rgba(7, 27, 58, 0.96), rgba(11, 42, 88, 0.98)),
    var(--navy);
  color: var(--white);
  border-color: rgba(246, 185, 0, 0.4);
}

.plan-card h3 {
  font-size: 26px;
}

.plan-card.featured h3 {
  color: var(--white);
}

.plan-card p {
  color: var(--muted);
  line-height: 1.65;
}

.plan-card.featured p,
.plan-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 30px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.4;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
}

.plan-card .btn {
  margin-top: auto;
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.service-area {
  background: #ffffff;
}

.service-area-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 34px;
  align-items: center;
  border-radius: 34px;
  padding: 46px;
  background:
    linear-gradient(135deg, rgba(7, 27, 58, 0.96), rgba(7, 27, 58, 0.88)),
    var(--navy);
  box-shadow: var(--shadow);
  color: var(--white);
}

.service-area-box::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  border: 28px solid rgba(246, 185, 0, 0.22);
  border-radius: 50%;
  left: -120px;
  bottom: -140px;
}

.service-area-box h2,
.service-area-box .eyebrow {
  color: var(--white);
}

.service-area-box p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.7;
}

.area-map {
  position: relative;
  min-height: 280px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.07);
  background-size: 36px 36px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.area-map::before,
.area-map::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(246, 185, 0, 0.4);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  animation: mapPulse 3s ease-in-out infinite;
}

.area-map::after {
  animation-delay: 1s;
  width: 220px;
  height: 220px;
  opacity: 0.45;
}

.pin-main {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 38px;
  box-shadow: 0 20px 45px rgba(246, 185, 0, 0.24);
  animation: floatingPulse 2.4s ease-in-out infinite;
}

.area-map strong {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: var(--white);
  z-index: 2;
}

.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(246, 185, 0, 0.12);
}

.d1 { left: 18%; top: 22%; }
.d2 { right: 20%; top: 32%; }
.d3 { right: 28%; bottom: 22%; }

.faq {
  background:
    radial-gradient(circle at 90% 10%, rgba(246, 185, 0, 0.14), transparent 28%),
    var(--soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  padding: 22px 58px 22px 22px;
  box-shadow: 0 12px 30px rgba(7, 27, 58, 0.06);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(7, 27, 58, 0.1);
}

.faq-item span {
  display: block;
  color: var(--navy);
  font: inherit;
  font-size: 18px;
  font-weight: 900;
}

.faq-item small {
  position: absolute;
  right: 20px;
  top: 17px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
  transition: transform 0.25s ease;
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  transition: max-height 0.28s ease, opacity 0.28s ease, margin 0.28s ease;
}

.faq-item.active small {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--navy);
}

.faq-item.active p {
  max-height: 160px;
  opacity: 1;
  margin-top: 14px;
}

.form-whatsapp {
  display: inline-flex;
  justify-content: center;
  color: var(--navy);
  font-weight: 900;
  padding: 12px;
  border: 1px dashed rgba(7, 27, 58, 0.22);
  border-radius: 16px;
  background: rgba(246, 185, 0, 0.08);
}

.plan-card,
.diagnostic-card,
.problem-tags span,
.trust-grid div,
.service-area-box,
.faq-item,
.area-map {
  will-change: transform, opacity;
}

@keyframes diagnosticPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 8px rgba(246, 185, 0, 0.12); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 13px rgba(246, 185, 0, 0.05); }
}

@keyframes meterMove {
  0%, 100% { width: 62%; }
  50% { width: 92%; }
}

@keyframes mapPulse {
  0%, 100% { transform: scale(0.85); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0.28; }
}

@media (max-width: 980px) {
  .trust-grid,
  .problem-grid,
  .plan-grid,
  .service-area-box,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: -12px;
  }

  .service-area-box {
    padding: 34px;
  }
}

@media (max-width: 640px) {
  .trust-grid {
    gap: 10px;
    padding: 12px;
  }

  .trust-grid div {
    padding: 12px;
  }

  .diagnostic-card,
  .plan-card,
  .service-area-box {
    border-radius: 24px;
    padding: 24px;
  }

  .area-map {
    min-height: 220px;
  }

  .faq-item {
    padding: 18px 54px 18px 18px;
  }

  .faq-item span {
    font-size: 16px;
  }
}


/* ===== Rating system, extra live effects and mobile upgrade ===== */
.climate-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.climate-dot {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 185, 0, 0.78), rgba(7, 27, 58, 0.16), transparent 70%);
  opacity: 0.22;
  animation: climateDrift 18s linear infinite;
}

.cd1 { left: 8%; top: 92%; animation-delay: 0s; }
.cd2 { left: 18%; top: 78%; animation-delay: 2s; width: 12px; height: 12px; }
.cd3 { left: 34%; top: 88%; animation-delay: 5s; }
.cd4 { left: 52%; top: 84%; animation-delay: 1s; width: 14px; height: 14px; }
.cd5 { left: 70%; top: 93%; animation-delay: 4s; }
.cd6 { left: 83%; top: 74%; animation-delay: 7s; width: 11px; height: 11px; }
.cd7 { left: 92%; top: 91%; animation-delay: 9s; }
.cd8 { left: 44%; top: 96%; animation-delay: 11s; width: 16px; height: 16px; }
.cd9 { left: 61%; top: 99%; animation-delay: 13s; }

.rating-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 14%, rgba(246,185,0,0.14), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(7,27,58,0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f6f8fb 100%);
}

.rating-section::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -180px;
  top: -190px;
  border: 34px solid rgba(246,185,0,0.15);
  border-radius: 50%;
  animation: rotateRing 24s linear infinite;
}

.rating-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 26px;
  align-items: stretch;
}

.rating-summary-card,
.rating-form-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.rating-summary-card {
  padding: 38px;
  background: var(--white);
}

.rating-summary-card::after,
.rating-form-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.42) 45%, transparent 60%);
  transform: translateX(-140%);
  animation: panelSweep 6.2s ease-in-out infinite;
  pointer-events: none;
}

.overall-rating-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 26px 0;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(7,27,58,0.96), rgba(11,42,88,0.96));
  color: var(--white);
  border-bottom: 7px solid var(--gold);
}

.overall-rating-box strong {
  font-size: clamp(54px, 7vw, 82px);
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: -2px;
}

.overall-stars {
  color: var(--gold);
  font-size: 30px;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(246,185,0,0.45);
}

.overall-rating-box p {
  margin: 7px 0 0;
  color: rgba(255,255,255,0.74);
  font-weight: 800;
}

.rating-bars {
  display: grid;
  gap: 12px;
}

.rating-bars div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--navy);
  font-weight: 900;
}

.rating-bars i {
  display: block;
  height: 11px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(7,27,58,0.08);
}

.rating-bars b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width 0.45s ease;
}

.rating-form-card {
  padding: 38px;
  background:
    linear-gradient(155deg, rgba(7,27,58,0.97), rgba(11,42,88,0.98)),
    var(--navy);
  color: var(--white);
  border-color: rgba(246,185,0,0.42);
}

.rating-form-card h3 {
  color: var(--white);
  font-size: 32px;
}

.rating-note,
.rating-result {
  color: rgba(255,255,255,0.74);
  line-height: 1.65;
}

.rating-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
  margin-bottom: 18px;
  box-shadow: 0 14px 28px rgba(246,185,0,0.22);
}

.rating-live-badge span {
  animation: starSpark 1.5s ease-in-out infinite;
}

.rating-login-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  margin: 20px 0;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 800;
}

.mini-btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
}

.star-input {
  display: flex;
  gap: 8px;
  margin: 14px 0 18px;
}

.star-input button {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246,185,0,0.3);
  border-radius: 18px;
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.28);
  font-size: 34px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.star-input button:hover,
.star-input button.active {
  transform: translateY(-4px) rotate(-4deg);
  background: rgba(246,185,0,0.18);
  color: var(--gold);
  box-shadow: 0 16px 34px rgba(0,0,0,0.14);
}

.rating-form-card textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 16px;
  font: inherit;
  outline: none;
  margin-bottom: 18px;
}

.rating-form-card textarea::placeholder {
  color: rgba(255,255,255,0.54);
}

.rating-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(5,15,34,0.72);
  backdrop-filter: blur(12px);
}

.rating-modal.active {
  display: grid;
}

.rating-modal-card {
  position: relative;
  width: min(480px, 100%);
  padding: 34px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
  border: 1px solid var(--border);
}

.rating-modal-card h2 {
  margin-bottom: 10px;
}

.rating-modal-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.rating-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 26px;
  cursor: pointer;
}

#ratingLoginForm {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

#ratingLoginForm label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  color: var(--navy);
}

#ratingLoginForm input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
  background: #fbfcff;
}

#ratingLoginForm input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(246,185,0,0.16);
}

.service-card:hover .service-icon,
.plan-card:hover h3,
.process-card:hover span {
  filter: drop-shadow(0 0 12px rgba(246,185,0,0.55));
}

@keyframes climateDrift {
  0% { transform: translateY(0) translateX(0) scale(0.8); opacity: 0; }
  14% { opacity: 0.24; }
  70% { opacity: 0.18; }
  100% { transform: translateY(-110vh) translateX(90px) scale(1.4); opacity: 0; }
}

@keyframes starSpark {
  0%,100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.28) rotate(16deg); }
}

@media (max-width: 980px) {
  .rating-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    position: sticky;
  }

  .navbar {
    height: 70px;
  }

  .hero {
    padding: 34px 0 48px;
    text-align: center;
  }

  .hero-grid {
    gap: 28px;
  }

  .eyebrow {
    font-size: 11px;
    justify-content: center;
  }

  h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.05;
    letter-spacing: -1px;
  }

  h2 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .hero-text,
  .section-title p,
  .about-content p,
  .contact-text,
  .problem-content p:not(.eyebrow),
  .service-area-box p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    margin: 24px 0;
  }

  .hero-actions .btn {
    justify-content: center;
    min-height: 50px;
    padding: 0 18px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quick-info div {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .quick-info .icon {
    margin: 0;
    flex: 0 0 auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .visual-card {
    border-radius: 24px;
    padding: 12px;
    clip-path: none;
  }

  .ac-img {
    height: 245px;
    object-fit: cover;
    border-radius: 18px;
  }

  .badge {
    left: 18px;
    bottom: 18px;
    padding: 11px 14px;
    border-radius: 14px;
  }

  .badge span {
    font-size: 22px;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .service-card,
  .plan-card,
  .diagnostic-card,
  .rating-summary-card,
  .rating-form-card,
  .contact-form,
  .service-area-box,
  .cta-box {
    padding: 22px;
    border-radius: 22px;
  }

  .service-grid,
  .plan-grid,
  .process-grid,
  .feature-list,
  .trust-grid,
  .problem-grid,
  .faq-grid,
  .contact-grid,
  .service-area-box {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: auto;
  }

  .service-area-box {
    text-align: center;
  }

  .area-map {
    min-height: 190px;
  }

  .contact-list a {
    align-items: flex-start;
    padding: 15px;
    word-break: break-word;
    line-height: 1.35;
  }

  .contact-list span {
    width: 34px;
    height: 34px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 14px;
    font-size: 16px;
  }

  .overall-rating-box {
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
  }

  .overall-stars {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .rating-login-status {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .star-input {
    justify-content: center;
    gap: 6px;
  }

  .star-input button {
    width: 48px;
    height: 48px;
    font-size: 30px;
    border-radius: 14px;
  }

  .rating-modal-card {
    padding: 24px;
    border-radius: 24px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .floating-call,
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .footer-grid {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 420px) {
  .brand span {
    max-width: 190px;
  }

  .brand small {
    white-space: normal;
  }

  .hero::after {
    opacity: 0.72;
  }

  .star-input button {
    width: 43px;
    height: 43px;
    font-size: 27px;
  }

  .overall-rating-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
