/* ===================================================
   TIMELY APPLIANCES REPAIR — MASTER STYLESHEET
   =================================================== */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0B1120;
  --bg2:       #131C2E;
  --card:      #1A2540;
  --card2:     #1E2D4A;
  --amber:     #F5A623;
  --amber2:    #E8922A;
  --amber3:    #FFB83F;
  --white:     #F0F4FF;
  --muted:     #8A9BBE;
  --border:    rgba(255,255,255,0.07);
  --shadow:    0 8px 40px rgba(0,0,0,0.45);
  --radius:    14px;
  --nav-h:     70px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.section { padding: 100px 0; }

.accent { color: var(--amber); }

/* --- TYPOGRAPHY --- */
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: #0B1120;
  border-color: var(--amber);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--amber3);
  border-color: var(--amber3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.875rem; }
.btn-block { width: 100%; justify-content: center; }

/* --- SECTION HEADER --- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  border: 1px solid rgba(245,166,35,0.25);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin-inline: auto;
}

/* ===================================================
   NAVIGATION
   =================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(11,17,32,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition);
  overflow: visible;
}
.navbar.scrolled {
  background: rgba(11,17,32,0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

/* nav-inner: always full width, padding-based, no container clipping */
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  width: 100%;
  padding: 0 24px;
  gap: 12px;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo-accent { color: var(--amber); }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.nav-active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Desktop CTA button */
.nav-cta { margin-left: 12px; flex-shrink: 0; }

/* Mobile-only elements — hidden on desktop */
.nav-mobile-services { display: none; }
.nav-mobile-book     { display: none; }

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 0;
  width: 44px;
  height: 40px;
  flex-shrink: 0;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #F0F4FF;
  border-radius: 2px;
  transition: var(--transition);
  pointer-events: none;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background slideshow */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.38) saturate(0.65);
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
  animation: none;
}
.hero-slide.active {
  opacity: 1;
  animation: heroZoom 7s ease forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(11,17,32,0.97) 0%, rgba(11,17,32,0.7) 55%, rgba(11,17,32,0.2) 100%),
    linear-gradient(to top, rgba(11,17,32,0.8) 0%, transparent 40%);
}

/* Animated tech grid */
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(245,166,35,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}
@keyframes gridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Two-column layout */
.hero-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 100px;
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* LEFT */
.hero-left { display: flex; flex-direction: column; }

.hero-top-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.hero-available {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #4ade80;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}
.avail-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: availPulse 1.8s infinite;
}
@keyframes availPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}
.hero-typewriter { color: var(--amber); }
.hero-cursor {
  color: var(--amber);
  animation: blink 0.9s step-end infinite;
  font-weight: 300;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(240,244,255,0.75);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 18px 24px;
  gap: 4px;
}
.hstat {
  flex: 1;
  text-align: center;
  min-width: 80px;
}
.hstat strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}
.hstat-plus { font-size: 0.75em; vertical-align: super; }
.hstat span { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.hstat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* RIGHT: floating repair card */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  background: rgba(26,37,64,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,166,35,0.08);
  overflow: hidden;
  animation: cardFloat 5s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hcard-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}
.hcard-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 0;
}
.hcard-dot.red    { background: #ff5f57; }
.hcard-dot.yellow { background: #febc2e; }
.hcard-dot.green  { background: #28c840; }
.hcard-header span { margin-left: 6px; }
.hcard-list { padding: 8px 0; }
.hcard-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition);
}
.hcard-item:last-child { border-bottom: none; }
.hcard-item:hover { background: rgba(255,255,255,0.03); }
.hcard-item--new { animation: newItemPulse 2s ease-in-out infinite; }
@keyframes newItemPulse {
  0%,100% { background: transparent; }
  50%      { background: rgba(245,166,35,0.05); }
}
.hcard-icon { font-size: 1.1rem; flex-shrink: 0; }
.hcard-item span:nth-child(2) { flex: 1; color: var(--white); }
.hcard-status {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.hcard-status.done { background: rgba(34,197,94,0.15); color: #4ade80; }
.hcard-status.prog { background: rgba(245,166,35,0.15); color: var(--amber); }
.hcard-status.new  { background: rgba(99,102,241,0.2); color: #a5b4fc; }
.hcard-footer {
  padding: 12px 18px;
  background: rgba(245,166,35,0.07);
  border-top: 1px solid rgba(245,166,35,0.1);
  font-size: 0.8rem;
  color: var(--amber);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
}

/* Floating brand pills */
.hfloat {
  position: absolute;
  background: rgba(26,37,64,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.hfloat-1 { top: -18px;  left: -30px;  animation: floatA 6s ease-in-out infinite; }
.hfloat-2 { top: 20px;   right: -28px; animation: floatB 7s ease-in-out infinite; }
.hfloat-3 { bottom: 40px; left: -35px;  animation: floatC 8s ease-in-out infinite; }
.hfloat-4 { bottom: -10px; right: -20px; animation: floatA 5s ease-in-out infinite reverse; }
@keyframes floatA { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-10px) rotate(0deg)} }
@keyframes floatB { 0%,100%{transform:translateY(0) rotate(1deg)}  50%{transform:translateY(-8px) rotate(-1deg)} }
@keyframes floatC { 0%,100%{transform:translateY(0) rotate(2deg)}  50%{transform:translateY(-12px) rotate(0deg)} }

/* Slide dots */
.hero-slide-dots {
  position: absolute;
  bottom: 80px; right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.slide-dot {
  width: 6px; height: 24px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
}
.slide-dot.active { background: var(--amber); height: 36px; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
  z-index: 3;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ===================================================
   SERVICES
   =================================================== */
.services-section { background: var(--bg2); }

/* Service category tabs */
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.stab {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}
.stab:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.stab.active {
  background: var(--amber);
  border-color: var(--amber);
  color: #0B1120;
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card.hidden { display: none; }
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.service-card:hover, .service-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow), 0 0 0 1px rgba(245,166,35,0.2);
  border-color: rgba(245,166,35,0.3);
}
.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,37,64,0.9) 0%, transparent 60%);
}
.service-tag-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(11,17,32,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  z-index: 1;
}
.service-card-body {
  padding: 24px;
  position: relative;
}
.service-icon { font-size: 1.8rem; margin-bottom: 10px; }
.service-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-card-body p { color: var(--muted); font-size: 0.92rem; }
.service-card-body::before {
  content: '';
  position: absolute;
  bottom: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(to right, var(--amber), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 2px;
}
.service-card:hover .service-card-body::before { transform: scaleX(1); }

/* ===================================================
   WHY US
   =================================================== */
.why-section { background: var(--bg); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 0%, rgba(245,166,35,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(245,166,35,0.25); }
.why-card:hover::after { opacity: 1; }
.why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-stat {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}
.why-stat-label { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 0.9rem; }

/* ===================================================
   PROCESS
   =================================================== */
.process-section {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.process-step:hover { transform: translateY(-4px); border-color: rgba(245,166,35,0.3); }
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(245,166,35,0.12);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.process-step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 0.9rem; }
.process-connector {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--amber), rgba(245,166,35,0.2));
  flex-shrink: 0;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -4px; top: -4px;
  width: 10px; height: 10px;
  background: var(--amber);
  border-radius: 50%;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials-section { background: var(--bg); }

.testimonials-wrapper { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  flex: 0 0 calc(100% / 3 - 16px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: rgba(245,166,35,0.25); }
.t-stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 18px; }
blockquote { color: rgba(240,244,255,0.85); font-size: 0.97rem; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--amber), var(--amber2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #0B1120;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.t-author span { color: var(--muted); font-size: 0.82rem; }
.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.t-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.t-btn:hover { background: var(--amber); color: #0B1120; border-color: var(--amber); }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.t-dot.active { background: var(--amber); transform: scale(1.3); }

/* ===================================================
   ABOUT
   =================================================== */
.about-section { background: var(--bg2); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-wrap img {
  width: 100%; height: 500px;
  object-fit: cover;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(245,166,35,0.1), transparent);
  z-index: 1;
}
.about-img-badge {
  position: absolute;
  bottom: 28px; right: 28px;
  background: var(--amber);
  color: #0B1120;
  border-radius: 12px;
  padding: 16px 22px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.badge-year {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.about-img-badge span:last-child { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.about-text .section-tag { margin-bottom: 12px; }
.about-text .section-title { margin-bottom: 24px; text-align: left; }
.about-text p { color: rgba(240,244,255,0.8); margin-bottom: 18px; font-size: 1rem; line-height: 1.8; }
.about-quote {
  border-left: 3px solid var(--amber);
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(245,166,35,0.06);
  border-radius: 0 10px 10px 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--amber3);
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.astat { text-align: center; }
.astat strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}
.astat span { font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===================================================
   CONTACT
   =================================================== */
.contact-section { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3, .contact-form-wrap h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.contact-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-list li { display: flex; align-items: flex-start; gap: 16px; }
.c-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-list strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--amber); margin-bottom: 4px; }
.contact-list a, .contact-list span { color: var(--muted); font-size: 0.95rem; transition: color var(--transition); }
.contact-list a:hover { color: var(--amber); }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

/* Form */
.repair-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(138,155,190,0.5); }
.form-group select option { background: var(--card2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.6); cursor: pointer; }

.form-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.form-success span { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.form-success strong { font-size: 1.2rem; display: block; margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: #070E1C;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 0 56px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.social-link svg { width: 18px; height: 18px; }
.social-link.wa { color: #25D366; }
.social-link.fb { color: #1877F2; }
.social-link.ig { color: #E1306C; }
.social-link:hover { transform: translateY(-3px); border-color: currentColor; background: rgba(255,255,255,0.05); }
.footer-links h4, .footer-services h4, .footer-contact h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--amber); }
.footer-services li { color: var(--muted); font-size: 0.9rem; }
.footer-contact p { color: var(--muted); font-size: 0.9rem; margin-bottom: 10px; }
.footer-contact a { color: var(--muted); transition: color var(--transition); }
.footer-contact a:hover { color: var(--amber); }
.footer-wa-btn { margin-top: 20px; }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

/* ===================================================
   FLOATING WHATSAPP
   =================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 90px; right: 24px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 3s infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
  animation: none;
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--card);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  border: 1px solid var(--border);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--border);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}

/* Mobile sticky bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-call-bar .btn { flex: 1; justify-content: center; }

/* ===================================================
   SERVICE MODAL
   =================================================== */
.smodal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(7,14,28,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: backdropIn 0.25s ease;
}
.smodal-backdrop[hidden] { display: none; }
@keyframes backdropIn { from { opacity:0 } to { opacity:1 } }

.smodal {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
  scrollbar-width: thin;
  scrollbar-color: var(--amber) transparent;
}
@keyframes modalIn { from { opacity:0; transform:scale(0.92) translateY(20px) } to { opacity:1; transform:scale(1) translateY(0) } }

.smodal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(11,17,32,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.smodal-close:hover { background: rgba(255,255,255,0.15); }

/* Hero */
.smodal-hero {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.smodal-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.smodal-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(19,28,46,1) 0%, rgba(19,28,46,0.4) 60%, transparent 100%);
}
.smodal-hero-text {
  position: absolute;
  bottom: 20px; left: 24px;
}
.smodal-hero-text .section-tag { margin-bottom: 8px; }
.smodal-hero-text h2 {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.1;
}
.smodal-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--amber);
  color: #0B1120;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}

/* Body */
.smodal-body { padding: 24px 28px 32px; }

.smodal-summary {
  color: rgba(240,244,255,0.85);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Brands */
.smodal-brands { margin-bottom: 28px; }
.smodal-brands-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.smodal-brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.smodal-brand-tags span {
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  color: var(--amber);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Sections */
.smodal-section { margin-bottom: 28px; }
.smodal-section h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* Problems grid */
.smodal-problems {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sprob {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color var(--transition);
}
.sprob:hover { border-color: rgba(245,166,35,0.3); }
.sprob-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.sprob div { display: flex; flex-direction: column; gap: 2px; }
.sprob strong { font-size: 0.87rem; font-weight: 600; color: var(--white); }
.sprob span { font-size: 0.78rem; color: var(--muted); }

/* Process steps */
.smodal-steps { display: flex; flex-direction: column; gap: 10px; }
.sstep {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
}
.sstep-num {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--amber), var(--amber2));
  color: #0B1120;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.sstep div { display: flex; flex-direction: column; gap: 2px; }
.sstep strong { font-size: 0.9rem; font-weight: 600; }
.sstep span { font-size: 0.82rem; color: var(--muted); }

/* Testimonial */
.smodal-testimonial {
  background: var(--card);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 24px;
}
.smodal-testimonial blockquote {
  font-size: 0.93rem;
  font-style: italic;
  color: rgba(240,244,255,0.85);
  margin-bottom: 14px;
  line-height: 1.7;
}

/* Info bar */
.smodal-infobar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.sinfo {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sinfo-icon { font-size: 1.2rem; margin-bottom: 4px; }
.sinfo strong { font-size: 0.87rem; font-weight: 700; color: var(--white); }
.sinfo span { font-size: 0.75rem; color: var(--muted); }

/* CTA buttons */
.smodal-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.smodal-ctas .btn { justify-content: center; }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
  padding: 11px 20px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }

@media (max-width: 480px) {
  .smodal-problems { grid-template-columns: 1fr; }
  .smodal-infobar  { grid-template-columns: 1fr 1fr; }
  .smodal-body { padding: 20px 18px 28px; }
  .smodal-hero { height: 180px; }
  .smodal-hero-text h2 { font-size: 1.35rem; }
}
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}
.reveal-delay.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap img { height: 380px; }
  .footer-inner { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 72px 0; }

  /* === MOBILE NAV === */
  /* nav-inner: full width, no container, no overflow */
  .nav-inner {
    padding: 0 14px;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  /* Logo takes all leftover space, pushes items right */
  .logo { margin-right: auto; }
  /* Shrink logo text on very small phones */
  .logo-text { font-size: 0.95rem; }

  /* Hide desktop nav + CTA */
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-mobile-book { display: none; }

  /* Red Services pill */
  .nav-mobile-services {
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    border-radius: 7px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: #e53e3e;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 1;
  }

  /* Hamburger — always visible */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 0;
    width: 44px;
    height: 40px;
    flex-shrink: 0;
    cursor: pointer;
    min-width: 44px;
  }
  .hamburger span {
    display: block !important;
    width: 22px;
    height: 2px;
    background: #F0F4FF !important;
    border-radius: 2px;
    pointer-events: none;
  }

  /* Drawer */
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(11,17,32,0.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 16px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a {
    display: block;
    padding: 13px 16px;
    font-size: 1rem;
    border-radius: 8px;
    color: var(--white);
    width: 100%;
  }
  .nav-links.open a:hover { background: rgba(255,255,255,0.06); }

  /* Hero */
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding-bottom: 120px; }
  .hero-right { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-slide-dots { right: 16px; bottom: 100px; }
  .hero-stats { gap: 0; padding: 14px 16px; }
  .hstat strong { font-size: 1.4rem; }

  /* Process */
  .process-steps { flex-direction: column; }
  .process-connector { width: 2px; height: 40px; transform: none;
    background: linear-gradient(to bottom, var(--amber), rgba(245,166,35,0.2)); }
  .process-connector::after { bottom: -4px; right: -4px; top: auto; }

  /* Testimonials */
  .testimonial-card { flex: 0 0 calc(100% - 0px); }

  /* About */
  .about-text .section-title { font-size: 2rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  /* Floating WA */
  .whatsapp-float { bottom: 80px; }
  .mobile-call-bar { display: flex; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 20px; }
}
