/* ═══════════════════════════════════════════════
   VoltPro — Light Theme Electrical Website
═══════════════════════════════════════════════ */
:root {
  --orange:   #F97316;
  --orange2:  #EA580C;
  --yellow:   #FBBF24;
  --dark:     #1C1917;
  --dark2:    #292524;
  --text:     #44403C;
  --muted:    #78716C;
  --light:    #FAFAF9;
  --white:    #FFFFFF;
  --border:   #E7E5E4;
  --bg2:      #FFF7ED;
  --bg3:      #FEF3C7;
  --radius:   14px;
  --shadow:   0 4px 24px rgba(249,115,22,.12);
  --shadow2:  0 20px 60px rgba(249,115,22,.18);
  --trans:    .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Outfit', sans-serif; line-height: 1.15; }
h2 em, h1 em { font-style: normal; color: var(--orange); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-eye {
  font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.section-eye::before, .section-eye::after {
  content: ''; width: 28px; height: 1px; background: var(--orange); opacity: .5;
}
.section-head h2 { font-size: clamp(30px,4vw,48px); font-weight: 900; color: var(--dark); margin-bottom: 16px; }
.section-head p { font-size: 17px; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff; padding: 16px 36px;
  border-radius: 50px; font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 15px; border: none; cursor: pointer;
  transition: var(--trans); box-shadow: 0 8px 30px rgba(249,115,22,.35);
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-3px); box-shadow: var(--shadow2); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--orange); color: var(--orange); padding: 14px 32px;
  border-radius: 50px; font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 15px; cursor: pointer; transition: var(--trans);
}
.btn-outline:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--trans); padding: 0;
}
.nav.scrolled { border-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 40px; height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--dark); flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px; background: var(--orange);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.logo strong { color: var(--orange); }
.logo-light { color: #fff; }
.logo-light strong { color: var(--yellow); }
.logo-light .logo-icon { background: var(--yellow); }

.nav-links {
  display: flex; list-style: none; gap: 36px; margin-left: auto;
}
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--muted);
  transition: var(--trans); position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--orange); transform: scaleX(0);
  transform-origin: left; transition: var(--trans);
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--orange); color: #fff; padding: 10px 24px;
  border-radius: 50px; font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700; transition: var(--trans); white-space: nowrap;
}
.nav-cta:hover { background: var(--orange2); transform: translateY(-2px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--trans); display: block; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img-wrap { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(28,25,23,.82) 0%, rgba(28,25,23,.55) 60%, rgba(249,115,22,.15) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(249,115,22,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(249,115,22,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-3d-wrap { position: absolute; inset: 0; pointer-events: none; }
.bolt-3d {
  position: absolute; font-size: clamp(30px,4vw,56px);
  animation: floatBolt 6s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(249,115,22,.6));
}
.b1 { top: 20%; right: 15%; animation-delay: 0s; }
.b2 { top: 60%; right: 8%;  animation-delay: 2s; font-size: 32px; }
.b3 { top: 35%; right: 30%; animation-delay: 4s; font-size: 28px; }
@keyframes floatBolt {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-28px) rotate(5deg); }
}
.spark {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--yellow); animation: sparkle 3s ease-in-out infinite;
}
.s1 { top: 25%; right: 22%; animation-delay: 0s; }
.s2 { top: 55%; right: 35%; animation-delay: 1s; }
.s3 { top: 70%; right: 18%; animation-delay: 2s; }
@keyframes sparkle {
  0%,100% { opacity: 0; transform: scale(0); }
  50%      { opacity: 1; transform: scale(1); box-shadow: 0 0 12px var(--yellow); }
}

.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 80px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.15); border: 1px solid rgba(249,115,22,.35);
  color: var(--yellow); padding: 8px 20px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 28px; backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(38px,6vw,72px); font-weight: 900; color: #fff;
  line-height: 1.05; margin-bottom: 24px; letter-spacing: -1.5px;
}
.hero-title em { color: var(--orange); font-style: normal; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 40px; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15); padding: 20px 28px; border-radius: 16px;
}
.stat { text-align: center; }
.stat strong { display: block; font-family: 'Outfit',sans-serif; font-size: 26px; font-weight: 900; color: var(--orange); }
.stat span { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }
.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(249,115,22,.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ── TRUST BAR ── */
.trust-bar { background: var(--bg2); border-top: 1px solid #FED7AA; border-bottom: 1px solid #FED7AA; padding: 20px 0; }
.trust-inner { display: flex; align-items: center; gap: 40px; overflow: hidden; }
.trust-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.trust-logos { display: flex; gap: 40px; overflow: hidden; animation: scrollLogos 18s linear infinite; }
.trust-logo { font-size: 14px; font-weight: 700; color: var(--muted); white-space: nowrap; display: flex; align-items: center; gap: 6px; }
@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SERVICES ── */
.services-section { background: var(--light); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.svc-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 28px; position: relative; overflow: hidden;
  transition: var(--trans); cursor: default;
  transform-style: preserve-3d;
}
.svc-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: var(--orange); box-shadow: var(--shadow2);
}
.svc-card.featured {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
  border-color: transparent; color: #fff;
}
.svc-card.featured h3, .svc-card.featured p { color: #fff; }
.svc-card.featured .svc-link { color: rgba(255,255,255,.85); }
.svc-badge-card {
  position: absolute; top: 16px; right: 16px;
  background: var(--yellow); color: var(--dark); font-size: 10px;
  font-weight: 800; padding: 4px 12px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase;
}
.svc-icon-wrap {
  width: 64px; height: 64px; background: var(--bg2); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--trans);
}
.svc-card.featured .svc-icon-wrap { background: rgba(255,255,255,.2); }
.svc-card:hover .svc-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.svc-icon { font-size: 28px; }
.svc-card h3 { font-family: 'Outfit',sans-serif; font-size: 19px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.svc-link { font-size: 13px; font-weight: 700; color: var(--orange); transition: var(--trans); }
.svc-link:hover { letter-spacing: 1px; }
.svc-glow {
  position: absolute; bottom: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.12), transparent 70%);
  transition: var(--trans);
}
.svc-card:hover .svc-glow { transform: scale(1.5); }
.section-cta { text-align: center; margin-top: 48px; }

/* ── WHY CHOOSE US ── */
.why-section { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card {
  background: var(--light); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 24px; position: relative; overflow: hidden; transition: var(--trans);
  transform: translateY(30px); opacity: 0;
}
.why-card.visible { transform: translateY(0); opacity: 1; }
.why-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-6px) !important; }
.why-num {
  font-family: 'Outfit',sans-serif; font-size: 56px; font-weight: 900;
  color: rgba(249,115,22,.08); position: absolute; top: 12px; right: 16px; line-height: 1;
}
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h3 { font-family:'Outfit',sans-serif; font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── PROCESS ── */
.process-section { background: var(--bg2); }
.process-track { position: relative; display: flex; gap: 0; }
.process-line {
  position: absolute; top: 32px; left: 32px; right: 32px; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}
.process-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; }
.step-bubble {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-family: 'Outfit',sans-serif; font-size: 24px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; position: relative; z-index: 1;
  box-shadow: 0 8px 24px rgba(249,115,22,.35); transition: var(--trans);
}
.process-step:hover .step-bubble { transform: scale(1.15); box-shadow: var(--shadow2); }
.step-body h4 { font-family:'Outfit',sans-serif; font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.step-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── GALLERY ── */
.gallery-section { background: var(--light); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  height: 220px; cursor: pointer; position: relative;
}
.gallery-item:first-child { grid-column: span 2; height: 300px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(249,115,22,.6), transparent);
  opacity: 0; transition: var(--trans);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: #fff; font-weight: 700; font-size: 15px; font-family: 'Outfit',sans-serif; }

/* ── NUMBERS ── */
.numbers-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.numbers-section::before {
  content: '⚡'; position: absolute; font-size: 400px; opacity: .04;
  top: -80px; right: -40px; line-height: 1; pointer-events: none;
}
.numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.number-item { text-align: center; }
.number-val {
  font-family: 'Outfit',sans-serif; font-size: clamp(44px,5vw,72px);
  font-weight: 900; color: #fff; line-height: 1; margin-bottom: 8px;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.number-label { font-size: 14px; color: rgba(255,255,255,.75); font-weight: 500; }

/* ── TESTIMONIALS ── */
.testi-section { background: #fff; }
.testi-slider { position: relative; overflow: hidden; }
.testi-track {
  display: flex; gap: 24px; transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testi-card {
  min-width: calc(33.333% - 16px); background: var(--light);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 28px; flex-shrink: 0; transition: var(--trans);
}
.testi-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.testi-stars { color: var(--orange); font-size: 20px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-card > p { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff; font-family: 'Outfit',sans-serif; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); }
.testi-author span { font-size: 13px; color: var(--muted); }
.testi-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 40px;
}
.testi-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--border); background: #fff;
  font-size: 18px; cursor: pointer; transition: var(--trans); color: var(--orange);
}
.testi-btn:hover { border-color: var(--orange); background: var(--orange); color: #fff; transform: scale(1.1); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: var(--trans); cursor: pointer; }
.testi-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ── BLOG ── */
.blog-section { background: var(--bg2); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: var(--trans); cursor: pointer;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow2); border-color: var(--orange); }
.blog-img { height: 200px; overflow: hidden; background: var(--bg3); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 24px 22px 28px; }
.blog-cat {
  display: inline-block; background: #FFF7ED; color: var(--orange);
  font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
}
.blog-card h3 { font-family:'Outfit',sans-serif; font-size: 17px; font-weight: 800; color: var(--dark); line-height: 1.4; margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 14px; }
.blog-read { color: var(--orange); font-weight: 700; transition: var(--trans); }
.blog-card:hover .blog-read { letter-spacing: 1px; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, #1C1917 0%, #292524 60%, rgba(249,115,22,.2) 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
.cta-3d-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.25), transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}
.o1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.o2 { width: 300px; height: 300px; bottom: -100px; left: -50px; animation-delay: 4s; }
@keyframes orbFloat { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.cta-eye { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.cta-text h2 { font-size: clamp(28px,4vw,48px); font-weight: 900; color: #fff; margin-bottom: 16px; }
.cta-text h2 em { color: var(--orange); font-style: normal; }
.cta-text p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.7; }
.cta-action { display: flex; flex-direction: column; gap: 16px; }
.btn-cta-white {
  background: #fff; color: var(--orange); padding: 18px 40px;
  border-radius: 50px; font-family: 'Outfit',sans-serif; font-weight: 800;
  font-size: 16px; text-align: center; transition: var(--trans);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,.3); }
.btn-cta-outline {
  border: 2px solid rgba(255,255,255,.3); color: #fff; padding: 16px 32px;
  border-radius: 50px; font-family: 'Outfit',sans-serif; font-weight: 700; font-size: 15px;
  text-align: center; transition: var(--trans);
}
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-wa {
  background: #25D366; color: #fff; padding: 16px 32px;
  border-radius: 50px; font-family: 'Outfit',sans-serif; font-weight: 700; font-size: 15px;
  text-align: center; transition: var(--trans);
}
.btn-wa:hover { background: #128C7E; transform: translateY(-2px); }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 60px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); margin: 20px 0 24px; line-height: 1.8; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--trans); font-weight: 700;
}
.footer-socials a:hover { border-color: var(--orange); color: var(--orange); }
.footer-col h4 { font-family:'Outfit',sans-serif; font-weight: 800; color: #fff; margin-bottom: 20px; font-size: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.5); transition: var(--trans); }
.footer-col ul a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact li { font-size: 14px; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 8px; }
.footer-contact a { color: rgba(255,255,255,.5); transition: var(--trans); }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 12px;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; background: #25D366; color: #fff;
  border-radius: 50%; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: var(--trans);
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { background: #128C7E; transform: scale(1.1); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 8px 40px rgba(37,211,102,.7); }
}

/* ══ INNER PAGES ══════════════════════════════ */
.page-hero {
  min-height: 380px; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(249,115,22,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(249,115,22,.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .hero-badge { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(36px,5vw,62px); font-weight: 900; color: #fff; margin-bottom: 16px; }
.page-hero h1 em { color: var(--orange); font-style: normal; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.7); max-width: 580px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); margin-top: 24px; }
.breadcrumb a { color: rgba(255,255,255,.5); transition: var(--trans); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* Services page */
.services-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-full-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 32px; transition: var(--trans); position: relative; overflow: hidden;
}
.svc-full-card:hover { transform: translateY(-8px); border-color: var(--orange); box-shadow: var(--shadow2); }
.svc-full-card .svc-icon-wrap { margin-bottom: 24px; }
.svc-full-card h3 { font-family:'Outfit',sans-serif; font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.svc-full-card p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.svc-full-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.svc-full-card ul li { font-size: 14px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.svc-full-card ul li::before { content: '✓'; color: var(--orange); font-weight: 800; font-size: 12px; }
.price-tag {
  display: inline-block; background: var(--bg2); color: var(--orange);
  border: 1px solid #FED7AA; font-family: 'Outfit',sans-serif;
  font-weight: 800; font-size: 14px; padding: 6px 16px; border-radius: 50px;
}

/* About page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; border-radius: var(--radius); object-fit: cover; height: 480px; }
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--orange); color: #fff; padding: 20px 24px;
  border-radius: var(--radius); box-shadow: var(--shadow2); text-align: center;
}
.about-badge-float strong { display: block; font-family:'Outfit',sans-serif; font-size: 36px; font-weight: 900; }
.about-badge-float span { font-size: 13px; opacity: .85; }
.about-text .section-eye { justify-content: flex-start; }
.about-text .section-eye::before { display: none; }
.about-text h2 { font-size: clamp(28px,3.5vw,42px); font-weight: 900; color: var(--dark); margin-bottom: 20px; }
.about-text p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.about-checks { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.check-item p { margin: 0; font-size: 15px; color: var(--text); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card {
  background: var(--light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: var(--trans);
}
.team-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: var(--shadow); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff; font-family:'Outfit',sans-serif; font-weight: 800; font-size: 24px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.team-card h4 { font-family:'Outfit',sans-serif; font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--orange); font-weight: 600; }
.team-card p { font-size: 14px; color: var(--muted); margin-top: 10px; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info h3 { font-family:'Outfit',sans-serif; font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 36px; }
.info-items { display: flex; flex-direction: column; gap: 24px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; }
.info-icon { width: 48px; height: 48px; background: var(--bg2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.info-item h4 { font-family:'Outfit',sans-serif; font-weight: 700; color: var(--dark); margin-bottom: 4px; font-size: 15px; }
.info-item p { font-size: 14px; color: var(--muted); margin: 0; }
.info-item a { color: var(--orange); }
.contact-form-wrap {
  background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
}
.contact-form-wrap h3 { font-family:'Outfit',sans-serif; font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--dark); letter-spacing: .5px; }
.form-group input, .form-group select, .form-group textarea {
  border: 2px solid var(--border); border-radius: 10px; padding: 14px 18px;
  font-size: 15px; font-family: 'Inter',sans-serif; color: var(--dark);
  background: var(--light); transition: var(--trans); outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(249,115,22,.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit {
  width: 100%; padding: 18px; background: var(--orange); color: #fff;
  border: none; border-radius: 50px; font-family: 'Outfit',sans-serif;
  font-size: 16px; font-weight: 800; cursor: pointer; transition: var(--trans);
  box-shadow: 0 8px 30px rgba(249,115,22,.35);
}
.form-submit:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: var(--shadow2); }
.form-success {
  display: none; text-align: center; padding: 40px;
  color: var(--orange); font-family: 'Outfit',sans-serif; font-size: 18px; font-weight: 700;
}

/* Tilt animation helper */
[data-tilt] { transform-style: preserve-3d; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .numbers-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item:first-child { grid-column: span 2; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 72px; left: 0; right: 0; background: #fff;
    padding: 24px; border-bottom: 1px solid var(--border); gap: 20px; z-index: 999;
  }
  .hero-title { font-size: 38px; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .process-track { flex-direction: column; }
  .process-line { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: 1; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .testi-card { min-width: 85%; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
}
