/* ================================================
   TECHFIX PRO - Laptop Repair Hyderabad
   Design: Dark Tech / Precision Industrial
   Fonts: Syne (display) + DM Sans (body)
   Colors: Deep Navy + Electric Blue + Amber CTA
   ================================================ */

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

:root {
  --navy:        #001740;
  --navy-2:      #012060;
  --navy-3:      #01297a;
  --navy-card:   #000e2a;
  --blue:        #3b82f6;
  --blue-glow:   rgba(59,130,246,0.20);
  --blue-border: rgba(59,130,246,0.35);
  --cyan:        #60a5fa;
  --amber:       #f59e0b;
  --amber-dark:  #d97706;
  --green:       #10b981;
  --red:         #ef4444;
  --white:       #ffffff;
  --text:        #e2e8f0;
  --text-muted:  #94a3b8;
  --text-dim:    #64748b;
  --border:      rgba(255,255,255,0.10);
  --card-bg:     rgba(0,32,96,0.70);
  --radius:      14px;
  --radius-sm:   8px;
  --font-d:      'Inter', sans-serif;
  --font-b:      'Inter', sans-serif;
  --shadow-blue: 0 0 32px rgba(59,130,246,0.20);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.50);
}

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

body {
  font-family: var(--font-b);
  background: var(--navy);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── GRID NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230ea5e9' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.section { padding: 80px 0; }
.section-dark { background: var(--navy-2); }
.section-card { background: var(--navy-3); }

/* ── TYPE ── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 14px;
}
.section-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--blue); border-radius: 1px; }

.section-title {
  font-family: var(--font-d);
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 14px;
}
.section-title span { color: var(--blue); }
.section-sub { font-size: 16px; color: var(--text-muted); max-width: 560px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.text-center .section-eyebrow::before { display: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-family: var(--font-b); font-weight: 600; font-size: 15px;
  cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 4px 20px var(--blue-glow); transition: all 0.22s ease; }
.btn-primary:hover { background: #2563eb; transform: translateY(-3px); box-shadow: 0 10px 32px rgba(59,130,246,0.55); color: #fff; }
.btn-amber { background: var(--amber); color: #fff; font-weight: 700; box-shadow: 0 4px 20px rgba(2,132,199,0.35); }
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(2,132,199,0.50); color: #fff; }
.btn-outline { background: transparent; border: 1.5px solid var(--blue-border); color: var(--white); }
.btn-outline:hover { border-color: var(--blue); color: #fff; background: var(--blue); }
.btn-ghost { background: rgba(0,0,0,0.06); color: var(--white); border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(0,0,0,0.10); color: var(--blue); }
.btn-green { background: var(--green); color: #fff; font-weight: 700; box-shadow: 0 4px 20px rgba(16,185,129,0.30); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,201,122,0.45); }
.btn-full { width: 100%; }
.btn-lg { padding: 17px 36px; font-size: 16px; font-weight: 700; }

/* ── TOPBAR ── */
.topbar {
  background: var(--blue);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px;
}
.topbar a { color: #fff; font-weight: 700; }
.topbar a:hover { opacity: 0.85; }
.topbar-right { display: flex; gap: 20px; align-items: center; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(0, 23, 64, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59,130,246,0.20);
  padding: 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 42px; height: 42px;
  background: var(--blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 16px rgba(26,110,255,0.45);
}
.logo-name { font-family: var(--font-d); font-size: 20px; font-weight: 800; color: var(--white); }
.logo-name span { color: var(--blue); }
.logo-sub { font-size: 10px; color: var(--text-muted); letter-spacing: 1px; margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  padding: 7px 14px; border-radius: 6px; transition: all 0.15s;
}
.nav-links a:hover { color: var(--cyan); background: rgba(59,130,246,0.12); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, rgba(0,23,64,0.88) 0%, rgba(1,32,96,0.82) 100%), url('images/hero_background.png') center/cover no-repeat;
  padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
/* circuit decoration */
.hero::after {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 600px; height: 600px;
  background:
    radial-gradient(circle at center, rgba(26,110,255,0.08) 0%, transparent 65%);
  border: 1px solid rgba(26,110,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,110,255,0.12);
  border: 1px solid rgba(26,110,255,0.3);
  color: var(--cyan);
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  padding: 6px 16px; border-radius: 20px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-tag .dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }

.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero h1 .h-blue { color: var(--blue); }
.hero h1 .h-amber { color: var(--amber); }
.hero-sub { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px;
}
.hero-badge {
  display: flex; align-items: center; gap: 7px;
  background: rgba(0,0,0,0.02);
  border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 20px;
  font-size: 13px; font-weight: 600; color: var(--text);
}
.hero-badge .ico { font-size: 14px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-stats {
  display: flex; gap: 36px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hstat-num { font-family: var(--font-d); font-size: 28px; font-weight: 800; color: var(--white); }
.hstat-num span { color: var(--blue); }
.hstat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── HERO FORM CARD ── */
.hero-form {
  background: var(--card-bg);
  border: 1px solid var(--blue-border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-blue), var(--shadow-card);
  position: relative;
}
.hero-form::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 20px 20px 0 0;
}
.form-head { font-family: var(--font-d); font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.form-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.fgroup { margin-bottom: 14px; }
.fgroup label { display: block; font-size: 12px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.5px; margin-bottom: 6px; text-transform: uppercase; }
.fgroup input, .fgroup select, .fgroup textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(0,0,0,0.02);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  font-family: var(--font-b); font-size: 15px;
  color: var(--white); outline: none;
  transition: border 0.15s, background 0.15s;
}
.fgroup input::placeholder, .fgroup select::placeholder { color: var(--text-dim); }
.fgroup select option { background: var(--navy-2); color: var(--text); }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus {
  border-color: var(--blue);
  background: rgba(26,110,255,0.07);
}
.form-note { font-size: 11px; color: var(--text-dim); text-align: center; margin-top: 10px; line-height: 1.5; }
.form-note a { color: var(--blue); }

/* ── URGENCY BAR ── */
.urgency-bar {
  background: linear-gradient(90deg, var(--amber-dark), var(--amber), #ffcc00);
  color: #000;
  text-align: center;
  padding: 13px 20px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.3px;
}
.urgency-bar span { opacity: 0.5; margin: 0 12px; }

/* ── BRANDS SECTION ── */
/* ── BRANDS SECTION ── */
.brands-section {
  background: #ffffff;
  padding: 60px 0;
  color: #1e293b;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.brands-header {
  text-align: center;
  margin-bottom: 36px;
}
.brands-header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.brands-eyebrow {
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #64748b;
}
.brands-pill {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.brand-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.brand-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.05);
}
.brand-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.25s ease;
}
.brand-card:hover .brand-logo {
  border-color: #94a3b8;
  transform: scale(1.05);
}
.brand-logo img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.brand-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-name {
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
}
.brand-models {
  font-family: var(--font-b);
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
  line-height: 1.4;
}

/* ── SERVICES SECTION ── */
.services-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; justify-content: center; }
.stab {
  padding: 9px 20px; border-radius: 20px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  background: rgba(0,0,0,0.03); border: 1px solid var(--border);
  color: var(--text-muted); transition: all 0.15s;
}
.stab:hover { color: var(--white); border-color: var(--blue-border); }
.stab.active { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(26,110,255,0.35); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.svc-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.2s;
  cursor: pointer;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform 0.2s;
}
.svc-card:hover { border-color: rgba(26,110,255,0.4); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 50px; height: 50px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.svc-name { font-family: var(--font-d); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.svc-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.svc-price { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 700; color: var(--amber); }

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.2s;
}
.why-card:hover { border-color: var(--blue-border); box-shadow: var(--shadow-blue); transform: translateY(-3px); }
.why-icon { font-size: 36px; margin-bottom: 14px; }
.why-title { font-family: var(--font-d); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── PROCESS ── */
.process-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.process-grid::before {
  content: '';
  position: absolute; top: 26px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), var(--blue), transparent);
  z-index: 0;
}
.pstep { text-align: center; padding: 24px 20px; position: relative; z-index: 1; flex: 1; min-width: 160px; max-width: 220px; }
.pstep-num {
  width: 52px; height: 52px; margin: 0 auto 18px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 22px; font-weight: 800; color: #fff;
  box-shadow: 0 0 20px rgba(26,110,255,0.45);
}
.pstep-title { font-family: var(--font-d); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.pstep-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
}
.testi-card::before {
  content: '"'; position: absolute; top: 14px; right: 20px;
  font-size: 64px; font-family: Georgia, serif; color: rgba(26,110,255,0.15);
  line-height: 1;
}
.testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; }
.testi-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 42px; height: 42px;
  background: var(--blue-glow); border: 1px solid var(--blue-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.tauth-name { font-weight: 700; font-size: 14px; color: var(--white); }
.tauth-loc { font-size: 12px; color: var(--text-muted); }

/* ── FAQ ── */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden;
}
.faq-q {
  width: 100%; background: var(--card-bg); border: none;
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-family: var(--font-b); font-size: 15px; font-weight: 600; color: var(--text);
  cursor: pointer; text-align: left; transition: all 0.15s;
}
.faq-q:hover { background: rgba(26,110,255,0.08); color: var(--white); }
.faq-arr { font-size: 16px; color: var(--blue); transition: transform 0.2s; flex-shrink: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 22px;
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
  transition: max-height 0.3s, padding 0.3s;
  background: rgba(26,110,255,0.04);
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }
.faq-item.open .faq-arr { transform: rotate(180deg); }
.faq-item.open .faq-q { background: rgba(26,110,255,0.10); color: var(--white); }

/* ── FINAL CTA ── */
.final-cta {
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(26,110,255,0.18) 0%, transparent 70%),
    var(--navy-2);
  padding: 80px 20px;
  text-align: center;
}
.final-cta h2 { font-family: var(--font-d); font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.final-cta p { font-size: 17px; color: var(--text-muted); margin-bottom: 32px; }
.final-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ── FOOTER ── */
.footer { background: var(--navy); border-top: 1px solid var(--border); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.footer-brand .fn { font-family: var(--font-d); font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer-brand .fn span { color: var(--blue); }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.75; }
.footer-brand .f-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.footer-col h4 { font-family: var(--font-d); font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: var(--text-muted); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--blue); }
.footer-contact li { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; display: flex; gap: 8px; align-items: flex-start; }
.footer-contact li span { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--text-dim); }
.footer-bottom a { color: var(--blue); }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--text-dim); }
.footer-links a:hover { color: var(--blue); }

/* ── STATS STRIP ── */
.stats-strip { background: var(--navy-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.stats-inner { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 20px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-d); font-size: 34px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-num span { color: var(--blue); }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--navy-2); border-bottom: 1px solid var(--border); padding: 16px 0; }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--text); }
.trust-item .tico { font-size: 15px; }

/* ── STICKY MOBILE BAR ── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  display: flex;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}
.sticky-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px 8px; font-weight: 700; font-size: 13px; font-family: var(--font-b);
}
.sb-call { background: var(--blue); color: #fff; transition: background 0.2s, filter 0.2s; }
.sb-call:hover { background: #2563eb; filter: brightness(1.15); }
.sb-wa { background: #25d366; color: #fff; transition: filter 0.2s; }
.sb-wa:hover { filter: brightness(1.12); }
.sb-book { background: var(--amber); color: #000; transition: background 0.2s, filter 0.2s; }
.sb-book:hover { background: var(--amber-dark); color: #fff; }

/* ── POLICY PAGES ── */
.policy-hero { background: var(--navy-2); border-bottom: 1px solid var(--border); padding: 48px 0 40px; }
.policy-hero h1 { font-family: var(--font-d); font-size: clamp(26px, 4vw, 44px); font-weight: 800; color: var(--white); }
.policy-hero p { color: var(--text-muted); margin-top: 8px; font-size: 14px; }
.policy-body { padding: 56px 0 80px; }
.policy-content h2 { font-family: var(--font-d); font-size: 22px; font-weight: 700; color: var(--blue); margin: 32px 0 10px; }
.policy-content h3 { font-size: 17px; font-weight: 700; color: var(--white); margin: 18px 0 7px; }
.policy-content p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.policy-content ul, .policy-content ol { margin: 10px 0 16px 22px; }
.policy-content li { font-size: 15px; color: var(--text-muted); margin-bottom: 7px; line-height: 1.65; }
.policy-content a { color: var(--blue); }
.policy-content strong { color: var(--text); }

/* ── THANK YOU ── */
.ty-section { min-height: 82vh; display: flex; align-items: center; justify-content: center; padding: 60px 20px; }
.ty-card {
  background: var(--card-bg); border: 1px solid var(--blue-border);
  border-radius: 20px; padding: 52px 40px; max-width: 560px; width: 100%; text-align: center;
  box-shadow: var(--shadow-blue), var(--shadow-card);
}
.ty-icon { font-size: 72px; margin-bottom: 20px; }
.ty-card h1 { font-family: var(--font-d); font-size: 34px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.ty-card p { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; }
.ty-steps { background: rgba(26,110,255,0.08); border: 1px solid var(--blue-border); border-radius: 12px; padding: 20px; margin-bottom: 24px; text-align: left; }
.ty-steps p { font-weight: 700; color: var(--white); margin-bottom: 10px; font-size: 14px; }
.ty-steps ul { list-style: none; }
.ty-steps li { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; display: flex; gap: 8px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.cinfo-card, .cform-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 30px; }
.cinfo-item { display: flex; gap: 16px; margin-bottom: 24px; }
.cinfo-icon { width: 46px; height: 46px; background: var(--blue-glow); border: 1px solid var(--blue-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.cinfo-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.cinfo-val { font-size: 15px; color: var(--white); font-weight: 600; margin-top: 3px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.fu { animation: fadeUp 0.55s ease both; }
.fu-1 { animation-delay: 0.1s; }
.fu-2 { animation-delay: 0.2s; }
.fu-3 { animation-delay: 0.3s; }

/* ── VISUAL SERVICES ── */
.vsvc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.vsvc-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; text-align: center; padding-bottom: 24px; }
.vsvc-img { width: 100%; height: 200px; object-fit: cover; }
.vsvc-title { font-family: var(--font-d); font-size: 22px; font-weight: 700; color: var(--white); margin: 20px 0 10px; }
.vsvc-desc { font-size: 15px; color: var(--text-muted); padding: 0 20px; line-height: 1.5; }

/* ── FLOATING ACTION BUTTONS ── */
.fab-wrapper { position: fixed; bottom: 80px; right: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 9999; }
@media (min-width: 769px) { .fab-wrapper { bottom: 30px; right: 30px; } }
.fab-btn { width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.35); transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease; }
.fab-btn:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 10px 28px rgba(0,0,0,0.45); }
.fab-call { background: var(--blue); }
.fab-call:hover { background: #2563eb; box-shadow: 0 10px 28px rgba(59,130,246,0.55); }
.fab-wa { background-color: #25D366; }
.fab-wa:hover { filter: brightness(1.12); box-shadow: 0 10px 28px rgba(37,211,102,0.45); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 60px 0 40px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  body { padding-bottom: 74px; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .topbar-right { display: none; }
  .section { padding: 48px 0; }
  
  .services-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    width: 100vw;
    margin-left: -20px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 24px;
    scrollbar-width: none;
  }
  .services-tabs::-webkit-scrollbar {
    display: none;
  }
  .stab {
    flex-shrink: 0;
  }
  
  .section-title {
    font-size: 26px !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px !important;
  }
  .hero-sub {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .hero-ctas {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }
  .brand-card {
    padding: 12px 16px;
    gap: 12px;
  }
  .brand-logo {
    width: 40px;
    height: 40px;
  }
  .brand-logo img {
    width: 20px;
    height: 20px;
  }
  .brand-name {
    font-size: 14px;
  }
  .brand-models {
    font-size: 11px;
  }
  .brands-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
  }
}

@media (min-width: 769px) {
  .sticky-bar { display: none; }
}
