/* ============================================================
   AirCool AC Repair – Premium Stylesheet
   ============================================================ */

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

/* -------------  CSS Variables  ------------- */
:root {
  --primary:       #0d6efd;
  --primary-dark:  #0a56cc;
  --primary-light: #4d9bff;
  --accent:        #00c8ff;
  --accent-light:  #a8e8ff;
  --bg-dark:       #050e1a;
  --bg-mid:        #0a1f36;
  --bg-card:       #0f2744;
  --white:         #ffffff;
  --gray-100:      #f0f6ff;
  --gray-200:      #d1e3f9;
  --gray-400:      #8dafd4;
  --gray-600:      #4a7098;
  --text-main:     #0d1b2e;
  --text-muted:    #5e7a96;
  --success:       #10c47a;
  --warning:       #f5a623;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --shadow-sm:     0 2px 12px rgba(13, 110, 253, .12);
  --shadow-md:     0 8px 32px rgba(13, 110, 253, .18);
  --shadow-lg:     0 24px 64px rgba(13, 110, 253, .22);
  --transition:    all 0.35s cubic-bezier(.4,0,.2,1);
  --quick-bar-height: 68px;
}

/* -------------  Reset  ------------- */
*,*::before,*::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

/* -------------  Utility  ------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 80px 0; }
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: .5rem;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 3rem;
}
.section-header { text-align: center; }
.section-header .section-subtitle { margin: .4rem auto 2.8rem; }
.badge-pill {
  display: inline-block;
  background: linear-gradient(135deg, #dbeeff, #c2ddff);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: .8rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(13,110,253,.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13,110,253,.45);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}
.btn-green {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
}
.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,.45);
}

/* =====================================================
   HEADER / NAVBAR
   ===================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(5,14,26,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  padding: .72rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(13,110,253,.4);
}
.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
}
.nav-logo-text span { color: var(--accent); }
.nav-tagline { font-size: .68rem; color: var(--accent-light); letter-spacing: .5px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  padding: .5rem .95rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.nav-call-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white) !important;
  padding: .55rem 1.3rem !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 700 !important;
  font-size: .9rem !important;
  box-shadow: 0 4px 16px rgba(13,110,253,.4);
  white-space: nowrap;
}
.nav-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,110,253,.5) !important;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 6px 4px;
  cursor: pointer;
  background: none;
}
.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(5,14,26,.97);
  backdrop-filter: blur(18px);
  padding: 1.2rem 1.5rem 1.8rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  font-weight: 500;
  padding: .7rem .3rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-cta {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}


/* =====================================================
   HERO SECTION
   ===================================================== */
#hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-mid) 40%, #0b2848 70%, #0a3058 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
/* Animated background blobs */
#hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,110,253,.15) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: blob1 8s ease-in-out infinite;
}
#hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,.12) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  animation: blob1 9s ease-in-out infinite reverse;
}
@keyframes blob1 {
  0%,100% { transform: scale(1) translate(0,0); }
  50%      { transform: scale(1.08) translate(20px,-20px); }
}
/* Particle dots */
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(0,200,255,.25);
  animation: floatDot 6s ease-in-out infinite;
}
@keyframes floatDot {
  0%,100% { transform: translateY(0); opacity: .7; }
  50%      { transform: translateY(-18px); opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 5rem;
}
.hero-text { animation: fadeInLeft .9s ease both; }
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(13,110,253,.18);
  border: 1px solid rgba(13,110,253,.35);
  color: var(--accent-light);
  font-size: .82rem;
  font-weight: 600;
  padding: .45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.3rem;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.6;transform:scale(.85)} }
.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero-headline span {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(255,255,255,.72);
  font-size: 1.08rem;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-cta .btn { font-size: 1.05rem; padding: .95rem 2.1rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label { color: var(--gray-400); font-size: .8rem; margin-top: .2rem; }

/* Hero Image Side */
.hero-image {
  position: relative;
  animation: fadeInRight .9s ease both;
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(145deg, var(--primary), var(--accent), transparent);
  z-index: -1;
}
.hero-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform .8s ease;
}
.hero-img-wrap:hover img { transform: scale(1.04); }
/* Glow card overlay */
.hero-glow-card {
  position: absolute;
  bottom: -20px; left: -30px;
  background: rgba(5,14,26,.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(13,110,253,.25);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  animation: fadeInUp .8s .5s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.glow-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.glow-text-label { color: rgba(255,255,255,.55); font-size: .72rem; }
.glow-text-value { color: var(--white); font-weight: 700; font-size: .95rem; }

/* Trust badges */
.hero-trust {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: .5rem 1.2rem;
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.trust-badge:hover {
  background: rgba(13,110,253,.2);
  border-color: rgba(13,110,253,.4);
  transform: translateY(-2px);
}
.trust-badge-icon { font-size: 1rem; }

/* Quick features bar */
.hero-features {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 1.4rem 2rem;
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  justify-content: space-around;
}
.hero-feat {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
}
.hero-feat-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(13,110,253,.3), rgba(0,200,255,.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-feat span { font-weight: 600; }

/* =====================================================
   SERVICES SECTION
   ===================================================== */
#services { background: var(--gray-100); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13,110,253,.07);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13,110,253,.18);
}
.service-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 1.3rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.12) rotate(-5deg); }
.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--primary);
  font-size: .88rem;
  font-weight: 600;
  margin-top: 1.1rem;
  transition: gap .25s;
}
.service-link:hover { gap: .7rem; }
.s-blue   { background: linear-gradient(135deg,#dbeeff,#c2ddff); }
.s-cyan   { background: linear-gradient(135deg,#d0f5ff,#a6ecff); }
.s-indigo { background: linear-gradient(135deg,#e0dcff,#c5bfff); }
.s-sky    { background: linear-gradient(135deg,#dff0ff,#b3d9ff); }
.s-teal   { background: linear-gradient(135deg,#ccf5ed,#9de8d9); }


/* =====================================================
   ABOUT SECTION
   ===================================================== */
#about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-floating-badge {
  position: absolute;
  top: 24px; right: -18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.about-floating-badge .big { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 900; }
.about-floating-badge .small { font-size: .75rem; line-height: 1.3; opacity: .9; }
.about-text .section-subtitle { margin-bottom: 1.5rem; }
.about-list { margin-bottom: 1.8rem; }
.about-list li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: .98rem;
}
.about-list-icon {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.about-list li strong { display: block; font-weight: 600; }
.about-list li span { color: var(--text-muted); font-size: .88rem; }
.about-bottom {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.about-badges { display: flex; gap: .7rem; flex-wrap: wrap; }
.about-badge-item {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: .42rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
#testimonials { background: linear-gradient(145deg, var(--bg-dark), var(--bg-mid)); }
#testimonials .section-title { color: var(--white); }
#testimonials .section-subtitle { color: var(--gray-400); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.review-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(14px);
  transition: var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 20px;
  font-size: 5rem;
  color: rgba(13,110,253,.15);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13,110,253,.3);
  background: rgba(13,110,253,.07);
}
.review-stars { color: var(--warning); font-size: 1rem; margin-bottom: .9rem; letter-spacing: 2px; }
.review-text {
  color: rgba(255,255,255,.78);
  font-size: .96rem;
  line-height: 1.72;
  margin-bottom: 1.3rem;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.reviewer-name { color: var(--white); font-weight: 600; font-size: .95rem; }
.reviewer-loc  { color: var(--gray-400); font-size: .8rem; }

/* =====================================================
   FAQ SECTION
   ===================================================== */
#faq { background: var(--gray-100); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(13,110,253,.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.7rem;
  background: none;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: left;
  gap: 1rem;
  transition: color .2s;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  flex-shrink: 0;
  transition: transform .35s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.3rem; }
.faq-answer p {
  padding: 0 1.7rem;
  color: var(--text-muted);
  font-size: .94rem;
  line-height: 1.7;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
#contact { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.contact-info > p { color: var(--text-muted); font-size: .96rem; line-height: 1.7; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.2rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.3rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.contact-item:hover {
  border-color: var(--primary);
  background: #eef5ff;
  transform: translateX(4px);
}
.contact-item-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}
.contact-item-content {
  min-width: 0;
}
.contact-item-label { font-size: .78rem; color: var(--text-muted); }
.contact-item-value { font-weight: 600; font-size: .97rem; color: var(--text-main); }
.contact-item-value { word-break: break-word; }
.contact-item-value a { color: var(--primary); }
.contact-item-value a:hover { text-decoration: underline; }
.social-links { display: flex; gap: .8rem; }
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  color: var(--text-muted);
}
.social-link:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Map */
.map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { display: block; }

/* Contact Form */
.contact-form-wrap {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.contact-form-wrap > p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text-main); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text-main);
  transition: border-color .25s, box-shadow .25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,110,253,.12);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 6px 24px rgba(13,110,253,.35);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13,110,253,.45);
}
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
#form-success {
  display: none;
  background: linear-gradient(135deg, #d4f5e5, #b2f0d8);
  border: 1.5px solid var(--success);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  color: #0a6640;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}
#form-error {
  display: none;
  background: linear-gradient(135deg, #ffe2e2, #ffc8c8);
  border: 1.5px solid #e53935;
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  color: #b71c1c;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}

.popup-status {
  display: none;
  border-radius: var(--radius-md);
  padding: .8rem 1rem;
  font-weight: 600;
  text-align: center;
  margin-top: .9rem;
  font-size: .9rem;
}
.popup-status.success {
  background: linear-gradient(135deg, #d4f5e5, #b2f0d8);
  border: 1.5px solid var(--success);
  color: #0a6640;
}
.popup-status.error {
  background: linear-gradient(135deg, #ffe2e2, #ffc8c8);
  border: 1.5px solid #e53935;
  color: #b71c1c;
}

body.popup-open { overflow: hidden; }

.quick-book-bar {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 20px));
  background: rgba(5,14,26,.96);
  border: 1px solid rgba(255,255,255,.16);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  padding: .65rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  z-index: 1001;
  box-shadow: 0 -6px 24px rgba(0,0,0,.35);
}
.quick-book-btn {
  flex: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  padding: .72rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.quick-book-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--white);
  font-size: .95rem;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}
.lead-popup.open { display: block; }
.lead-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.lead-popup-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100% - 24px));
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-lg);
}
.lead-popup-close {
  position: absolute;
  top: .9rem;
  right: .9rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--text-main);
  border: 1px solid var(--gray-200);
}
.lead-popup-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  margin-bottom: .35rem;
}
.lead-popup-card > p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 1rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
#footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.72);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  margin-top: .9rem;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  font-size: .88rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .88rem;
  margin-bottom: .8rem;
}
.footer-contact-item .fi { font-size: 1rem; color: var(--accent); flex-shrink: 0; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .83rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .83rem; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--accent); }

/* =====================================================
   FLOATING BUTTONS
   ===================================================== */
.float-btn-group {
  position: fixed;
  bottom: calc(var(--quick-bar-height) + 18px); right: 22px;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  z-index: 999;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.float-btn:hover { transform: scale(1.12) translateY(-3px); }
.float-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.float-call     { background: linear-gradient(135deg, var(--primary), var(--accent)); }
/* Pulse ring */
.float-btn::after {
  content: '';
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  animation: ring 2.5s ease-out infinite;
}
@keyframes ring {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* =====================================================
   SCROLL TO TOP
   ===================================================== */
#scrollTop {
  position: fixed;
  bottom: calc(var(--quick-bar-height) + 18px); left: 22px;
  width: 46px; height: 46px;
  background: rgba(13,110,253,.85);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(13,110,253,.4);
  border: none;
  transition: var(--transition);
  z-index: 999;
}
#scrollTop:hover { background: var(--primary); transform: translateY(-3px); }
#scrollTop.show { display: flex; }

/* =====================================================
   SERVICE AREAS RIBBON
   ===================================================== */
.service-areas {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  padding: 1.2rem 0;
  overflow: hidden;
}
.areas-track {
  display: flex;
  gap: 3rem;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.area-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--white);
  font-weight: 600;
  font-size: .92rem;
}

/* =====================================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   ===================================================== */

/* ─────────────────────────────────────────────────
   TABLET & IPAD (1024px and below)
   ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Utilities */
  .container { padding: 0 1.2rem; }
  .section { padding: 60px 0; }
  
  /* Header */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  
  /* Hero Section */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-text { order: 2; }
  .hero-image { order: 1; max-width: 480px; margin: 0 auto; }
  .hero-desc, .hero-cta { max-width: 100%; justify-content: center; }
  .hero-stats { justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
  .hero-trust { justify-content: center; }
  .hero-features { justify-content: center; flex-direction: row; flex-wrap: wrap; gap: 1.5rem; }
  .hero-glow-card { left: 50%; transform: translateX(-50%); bottom: -15px; }
  
  /* About Section */
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { max-width: 480px; margin: 0 auto; }
  .about-floating-badge { right: auto; left: 50%; transform: translateX(-50%); }
  
  /* Contact Section */
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ─────────────────────────────────────────────────
   MOBILE LANDSCAPE & LARGE PHONES (768px and below)
   ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Typography */
  html { font-size: 15px; }
  .section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); }
  .hero-headline { font-size: clamp(1.5rem, 4vw, 2.8rem); }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
  
  /* Header Navigation */
  .nav-logo-icon { width: 38px; height: 38px; font-size: 1.1rem; }
  .nav-logo-text { font-size: 1.2rem; }
  .nav-tagline { font-size: 0.6rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-call-btn.desktop-only { display: none; }
  
  /* Hero Section */
  #hero { padding-top: 70px; min-height: 90vh; }
  .hero-inner { padding: 2rem 0 3rem; }
  .hero-badge { font-size: 0.7rem; padding: 0.3rem 0.9rem; }
  .hero-desc { font-size: 0.95rem; }
  .hero-cta { gap: 0.8rem; margin-bottom: 1.5rem; }
  .hero-stats { gap: 1rem; }
  .hero-stat-num { font-size: 1.4rem; }
  .hero-stat-label { font-size: 0.7rem; }
  .hero-trust { gap: 0.7rem; margin-top: 1.5rem; }
  .trust-badge { padding: 0.4rem 0.9rem; font-size: 0.7rem; }
  .hero-features { padding: 1rem 1.5rem; gap: 1rem; }
  .hero-feat-icon { width: 32px; height: 32px; font-size: 0.95rem; }
  .hero-feat { font-size: 0.8rem; }
  
  /* Service Section */
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.2rem;
  }
  .service-card {
    padding: 1.5rem 1.2rem;
  }
  .service-icon { width: 56px; height: 56px; font-size: 1.6rem; margin-bottom: 1rem; }
  .service-card h3 { font-size: 1rem; }
  .service-card p { font-size: 0.85rem; }
  
  /* About Section */
  .about-text .section-subtitle { margin-bottom: 1rem; }
  .about-list li { font-size: 0.9rem; gap: 0.7rem; margin-bottom: 0.8rem; }
  .about-list-icon { width: 24px; height: 24px; font-size: 0.7rem; }
  .about-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .about-badges { gap: 0.5rem; }
  .about-badge-item { padding: 0.35rem 0.8rem; font-size: 0.75rem; }
  
  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
  }
  .review-card {
    padding: 1.5rem;
  }
  .review-text { font-size: 0.9rem; }
  .reviewer-avatar { width: 40px; height: 40px; font-size: 0.95rem; }
  .reviewer-name { font-size: 0.9rem; }
  
  /* FAQ Section */
  .faq-list { max-width: 100%; }
  .faq-question { padding: 1.1rem 1.3rem; font-size: 0.95rem; }
  .faq-answer p { padding: 0 1.3rem; font-size: 0.88rem; }
  
  /* Contact Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem 1.2rem; }
  .contact-form-wrap input,
  .contact-form-wrap textarea { font-size: 16px; padding: 0.75rem 1rem; }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-socials { justify-content: center; }
}

/* ─────────────────────────────────────────────────
   MOBILE PORTRAIT (480px and below)
   ───────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --quick-bar-height: 64px; }

  /* Typography */
  html { font-size: 14px; }
  .container { padding: 0 1rem; }
  .section { padding: 50px 0; }
  .section-title { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
  .hero-headline { font-size: clamp(1.2rem, 3vw, 2rem); }
  .badge-pill { font-size: 0.7rem; padding: 0.3rem 0.8rem; margin-bottom: 0.6rem; }
  
  /* Header */
  #navbar { padding: 0.8rem 0; }
  .nav-logo-icon { width: 36px; height: 36px; font-size: 1rem; }
  .nav-logo-text { font-size: 1.1rem; }
  .nav-tagline { font-size: 0.55rem; }
  
  /* Mobile Nav */
  .mobile-nav { padding: 1rem 1rem; }
  .mobile-nav a { font-size: 0.95rem; padding: 0.6rem 0; }
  .mobile-nav-cta { gap: 0.6rem; }
  .mobile-nav-cta .btn { font-size: 0.85rem; padding: 0.7rem 1rem; }
  
  /* Hero Section */
  #hero {
    min-height: 85vh;
    padding-top: 65px;
  }
  .hero-inner { padding: 1.5rem 0 2.5rem; gap: 1.5rem; }
  .hero-badge { font-size: 0.65rem; padding: 0.25rem 0.7rem; margin-bottom: 0.8rem; }
  .hero-headline { line-height: 1.1; margin-bottom: 0.8rem; }
  .hero-headline br { display: none; }
  .hero-desc { font-size: 0.85rem; line-height: 1.6; margin-bottom: 1.2rem; }
  .hero-cta {
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
  .hero-trust {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .trust-badge {
    width: 100%;
    justify-content: center;
    padding: 0.4rem 0.8rem;
    font-size: 0.65rem;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
  }
  .hero-stat-num { font-size: 1.2rem; }
  .hero-stat-label { font-size: 0.65rem; margin-top: 0.1rem; }
  .hero-image { max-width: 100%; }
  .hero-img-wrap img { height: auto; min-height: 280px; }
  .hero-glow-card {
    position: static;
    margin-top: 1rem;
    transform: none;
    left: auto;
  }
  .glow-icon { width: 38px; height: 38px; font-size: 1.2rem; }
  .glow-text-label { font-size: 0.65rem; }
  .glow-text-value { font-size: 0.85rem; }
  
  /* Service Areas */
  .area-item { font-size: 0.8rem; padding: 0.5rem 1rem; }
  
  /* Services Section */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-card {
    padding: 1.2rem 1rem;
  }
  .service-icon { width: 50px; height: 50px; font-size: 1.4rem; margin-bottom: 0.8rem; }
  .service-card h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
  .service-card p { font-size: 0.8rem; line-height: 1.5; }
  .service-link { font-size: 0.8rem; margin-top: 0.8rem; }
  
  /* About Section */
  .about-img-wrap img { height: auto; min-height: 280px; }
  .about-list li { font-size: 0.85rem; gap: 0.6rem; margin-bottom: 0.7rem; }
  .about-list-icon { width: 22px; height: 22px; font-size: 0.65rem; }
  .about-list li strong { display: block; }
  .about-list li span { font-size: 0.8rem; }
  .about-bottom { gap: 0.8rem; }
  .about-badges { gap: 0.4rem; }
  .about-badge-item { padding: 0.3rem 0.6rem; font-size: 0.7rem; }
  
  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .review-card {
    padding: 1.2rem;
  }
  .review-card::before { font-size: 3rem; top: 5px; right: 10px; }
  .review-stars { font-size: 0.95rem; margin-bottom: 0.7rem; }
  .review-text { font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }
  .reviewer-avatar { width: 36px; height: 36px; font-size: 0.9rem; }
  .reviewer-name { font-size: 0.85rem; }
  .reviewer-loc { font-size: 0.7rem; }
  
  /* FAQ Section */
  .faq-question {
    padding: 1rem 0.9rem;
    font-size: 0.9rem;
    gap: 0.7rem;
  }
  .faq-icon { width: 24px; height: 24px; font-size: 0.8rem; }
  .faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1rem; }
  .faq-answer p {
    padding: 0 0.9rem;
    font-size: 0.8rem;
    line-height: 1.6;
  }
  
  /* Contact Section */
  .contact-inner { gap: 2rem; }
  .contact-info h3 { font-size: 1.2rem; margin-bottom: 1rem; }
  .contact-info-item { margin-bottom: 1.2rem; }
  .contact-info-label { font-size: 0.75rem; margin-bottom: 0.3rem; }
  .contact-info-text { font-size: 0.9rem; }
  .contact-info-icon { width: 40px; height: 40px; font-size: 1.2rem; }
  .contact-form-wrap { padding: 1.2rem 1rem; }
  .contact-form-wrap input,
  .contact-form-wrap textarea {
    font-size: 16px;
    padding: 0.7rem 0.9rem;
  }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .contact-form-group { margin-bottom: 1rem; }
  .form-label { font-size: 0.85rem; margin-bottom: 0.4rem; }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-col h4 { font-size: 0.95rem; margin-bottom: 0.8rem; }
  .footer-col p { font-size: 0.8rem; line-height: 1.6; }
  .footer-links li { margin-bottom: 0.5rem; }
  .footer-links a { font-size: 0.85rem; }
  .footer-socials { gap: 0.8rem; }
  .footer-socials a {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    font-size: 0.8rem;
  }
  
  /* Buttons */
  .btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.8rem;
    min-height: 44px;
  }
  .btn-primary, .btn-green, .btn-outline {
    min-height: 44px;
  }
  
  /* Floating button */
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .quick-book-bar {
    width: calc(100% - 12px);
    padding: .5rem;
  }
  .quick-book-btn { font-size: .86rem; }
}

/* ─────────────────────────────────────────────────
   EXTRA SMALL PHONES (below 360px)
   ───────────────────────────────────────────────── */
@media (max-width: 360px) {
  html { font-size: 13px; }
  .container { padding: 0 0.8rem; }
  .section { padding: 40px 0; }
  
  .hero-headline { font-size: clamp(1.1rem, 2.5vw, 1.8rem); }
  .hero-desc { font-size: 0.8rem; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .hero-stat-num { font-size: 1rem; }
  
  .services-grid { gap: 0.8rem; }
  .service-card { padding: 1rem 0.8rem; }
  .service-icon { width: 44px; height: 44px; font-size: 1.2rem; }
  .service-card h3 { font-size: 0.9rem; }
  .service-card p { font-size: 0.75rem; }
  
  .btn { padding: 0.6rem 1rem; font-size: 0.75rem; }
  
  .review-card { padding: 1rem; }
  .review-text { font-size: 0.8rem; }
  
  .faq-question { padding: 0.9rem 0.8rem; font-size: 0.85rem; }
  .faq-answer p { padding: 0 0.8rem; font-size: 0.75rem; }
}
