/* ============================================================
   TV Repair Gurgaon — Main Stylesheet
   tv-style.css
   ============================================================ */

:root {
  --tv-primary: #0d2f5e;
  --tv-primary-light: #1a4a8a;
  --tv-accent: #00c8e8;
  --tv-accent-dark: #0099b5;
  --tv-secondary: #f4f6f9;
  --tv-text: #1e2a3a;
  --tv-text-light: #5a6a7e;
  --tv-white: #ffffff;
  --tv-gray-100: #f8fafc;
  --tv-gray-200: #e8edf4;
  --tv-gray-300: #c8d4e0;
  --tv-border: #dde5ef;
  --tv-success: #27ae60;
  --tv-warning: #f39c12;
  --tv-danger: #e74c3c;
  --tv-shadow-sm: 0 2px 8px rgba(13,47,94,0.08);
  --tv-shadow-md: 0 4px 20px rgba(13,47,94,0.12);
  --tv-shadow-lg: 0 8px 40px rgba(13,47,94,0.16);
  --tv-radius: 12px;
  --tv-radius-lg: 20px;
  --tv-transition: 0.3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--tv-accent-dark); text-decoration: none; transition: color var(--tv-transition); }
a:hover { color: var(--tv-primary); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  color: var(--tv-primary);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--tv-text-light); }
p:last-child { margin-bottom: 0; }

.tv-lead { font-size: 1.15rem; color: var(--tv-text-light); }

/* ── Utility ── */
.tv-section { padding: 80px 0; }
.tv-section-sm { padding: 50px 0; }
.tv-section-lg { padding: 100px 0; }
.tv-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.tv-container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.tv-text-center { text-align: center; }
.tv-text-white { color: var(--tv-white) !important; }
.tv-text-accent { color: var(--tv-accent) !important; }
.tv-text-muted { color: var(--tv-text-light); }
.tv-bg-primary { background: var(--tv-primary); }
.tv-bg-secondary { background: var(--tv-secondary); }
.tv-bg-white { background: var(--tv-white); }

.tv-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(0,200,232,0.12);
  color: var(--tv-accent-dark);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tv-badge-white {
  background: rgba(255,255,255,0.2);
  color: var(--tv-white);
}

/* ── Section Headings ── */
.tv-section-heading { margin-bottom: 50px; }
.tv-section-heading h2 { margin-bottom: 12px; }
.tv-section-heading p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.tv-section-heading.text-start p { margin-left: 0; }

/* ── Buttons ── */
.tv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--tv-transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.tv-btn-primary {
  background: var(--tv-accent);
  color: var(--tv-primary);
  border-color: var(--tv-accent);
}
.tv-btn-primary:hover {
  background: var(--tv-accent-dark);
  border-color: var(--tv-accent-dark);
  color: var(--tv-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,200,232,0.35);
}
.tv-btn-outline {
  background: transparent;
  color: var(--tv-white);
  border-color: rgba(255,255,255,0.5);
}
.tv-btn-outline:hover {
  background: var(--tv-white);
  color: var(--tv-primary);
  border-color: var(--tv-white);
}
.tv-btn-outline-dark {
  background: transparent;
  color: var(--tv-primary);
  border-color: var(--tv-primary);
}
.tv-btn-outline-dark:hover {
  background: var(--tv-primary);
  color: var(--tv-white);
}
.tv-btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.tv-btn-lg { padding: 17px 36px; font-size: 1.05rem; }

/* ── Navbar ── */
.tv-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
  background: transparent;
}
.tv-navbar.tv-navbar-scrolled {
  background: var(--tv-white);
  box-shadow: var(--tv-shadow-md);
  padding: 0;
}
.tv-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.tv-navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.tv-navbar-brand .tv-brand-icon {
  width: 42px; height: 42px;
  background: var(--tv-accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--tv-primary);
}
.tv-navbar-brand .tv-brand-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--tv-white);
  line-height: 1.1;
}
.tv-navbar-brand .tv-brand-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.75;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tv-navbar.tv-navbar-scrolled .tv-brand-text { color: var(--tv-primary); }

.tv-navbar-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.tv-nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  transition: all var(--tv-transition);
  text-decoration: none;
}
.tv-nav-link:hover, .tv-nav-link.active {
  color: var(--tv-accent);
  background: rgba(255,255,255,0.1);
}
.tv-navbar.tv-navbar-scrolled .tv-nav-link { color: var(--tv-text); }
.tv-navbar.tv-navbar-scrolled .tv-nav-link:hover { color: var(--tv-primary); background: var(--tv-gray-100); }

.tv-nav-dropdown { position: relative; }
.tv-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--tv-white);
  border-radius: var(--tv-radius);
  box-shadow: var(--tv-shadow-lg);
  min-width: 220px;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  border: 1px solid var(--tv-border);
}
.tv-nav-dropdown:hover .tv-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  top: 100%;
}
.tv-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--tv-text);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--tv-transition);
}
.tv-dropdown-item:hover {
  background: var(--tv-secondary);
  color: var(--tv-primary);
}
.tv-dropdown-item i { color: var(--tv-accent-dark); width: 18px; }

.tv-navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--tv-accent);
  color: var(--tv-primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all var(--tv-transition);
}
.tv-navbar-phone:hover {
  background: var(--tv-accent-dark);
  color: var(--tv-white);
  transform: translateY(-1px);
}

.tv-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.tv-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tv-white);
  border-radius: 2px;
  transition: all 0.3s;
}
.tv-navbar.tv-navbar-scrolled .tv-hamburger span { background: var(--tv-primary); }

/* ── Hero Section ── */
.tv-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #081d3a 0%, #0d2f5e 45%, #0a4070 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.tv-hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0,200,232,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,200,232,0.06) 0%, transparent 40%);
}
.tv-hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,232,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,232,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.tv-hero-content { position: relative; z-index: 2; }
.tv-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,200,232,0.15);
  border: 1px solid rgba(0,200,232,0.3);
  border-radius: 50px;
  color: var(--tv-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.tv-hero-eyebrow i { font-size: 0.75rem; }
.tv-hero h1 { color: var(--tv-white); margin-bottom: 20px; }
.tv-hero h1 em { color: var(--tv-accent); font-style: normal; }
.tv-hero-lead {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.tv-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.tv-hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.tv-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}
.tv-hero-trust-item i { color: var(--tv-accent); }

.tv-hero-visual { position: relative; z-index: 2; }
.tv-hero-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.tv-hero-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.tv-hero-badge-float {
  position: absolute;
  background: var(--tv-white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--tv-shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
}
.tv-hero-badge-float.tv-float-1 { bottom: 30px; left: -20px; }
.tv-hero-badge-float.tv-float-2 { top: 30px; right: -20px; }
.tv-hero-badge-float .tv-badge-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,200,232,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--tv-accent-dark);
  font-size: 1.1rem;
}
.tv-hero-badge-float .tv-badge-info strong {
  display: block;
  font-size: 1.1rem;
  color: var(--tv-primary);
  line-height: 1;
  font-family: 'Syne', sans-serif;
}
.tv-hero-badge-float .tv-badge-info span {
  font-size: 0.75rem;
  color: var(--tv-text-light);
}

/* ── SVG Wave Separators ── */
.tv-wave-sep { line-height: 0; }
.tv-wave-sep svg { display: block; width: 100%; }

/* ── Stats Strip ── */
.tv-stats-strip {
  background: var(--tv-primary);
  padding: 40px 0;
}
.tv-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tv-stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.tv-stat-item:last-child { border-right: none; }
.tv-stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--tv-accent);
  line-height: 1;
  margin-bottom: 4px;
}
.tv-stat-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}

/* ── Service Cards ── */
.tv-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tv-service-card {
  background: var(--tv-white);
  border-radius: var(--tv-radius-lg);
  padding: 32px;
  border: 1px solid var(--tv-border);
  transition: all var(--tv-transition);
  position: relative;
  overflow: hidden;
}
.tv-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tv-accent), var(--tv-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.tv-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tv-shadow-lg);
  border-color: transparent;
}
.tv-service-card:hover::before { transform: scaleX(1); }
.tv-service-icon {
  width: 60px; height: 60px;
  background: rgba(0,200,232,0.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--tv-accent-dark);
  margin-bottom: 20px;
  transition: all var(--tv-transition);
}
.tv-service-card:hover .tv-service-icon {
  background: var(--tv-primary);
  color: var(--tv-accent);
}
.tv-service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.tv-service-card p { font-size: 0.9rem; margin-bottom: 16px; }
.tv-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--tv-accent-dark);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: gap var(--tv-transition);
}
.tv-service-link:hover { gap: 10px; }

/* ── Process Section ── */
.tv-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.tv-process-step {
  position: relative;
  padding: 30px;
  background: var(--tv-white);
  border-radius: var(--tv-radius-lg);
  border: 1px solid var(--tv-border);
}
.tv-process-number {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(0,200,232,0.12);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}
.tv-process-icon {
  width: 52px; height: 52px;
  background: var(--tv-primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--tv-accent);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.tv-process-step h4 { margin-bottom: 8px; }
.tv-process-step p { font-size: 0.9rem; }

/* ── Diagnostic Tool ── */
.tv-diagnostic-tool {
  background: linear-gradient(135deg, var(--tv-primary), #0a4a7a);
  border-radius: 24px;
  padding: 50px;
  color: var(--tv-white);
}
.tv-diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.tv-symptom-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--tv-radius);
  padding: 16px 20px;
  color: var(--tv-white);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--tv-transition);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tv-symptom-btn:hover, .tv-symptom-btn.active {
  background: rgba(0,200,232,0.2);
  border-color: var(--tv-accent);
  color: var(--tv-accent);
}
.tv-symptom-btn i { font-size: 1.1rem; width: 20px; }
.tv-diagnosis-result {
  margin-top: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(0,200,232,0.3);
  border-radius: var(--tv-radius);
  padding: 24px;
  display: none;
}
.tv-diagnosis-result.show { display: block; }
.tv-diagnosis-result h4 { color: var(--tv-accent); margin-bottom: 12px; }
.tv-diagnosis-result ul { list-style: none; }
.tv-diagnosis-result ul li {
  padding: 6px 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
}
.tv-diagnosis-result ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--tv-accent);
}

/* ── Quiz Section ── */
.tv-quiz-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.tv-quiz-tab {
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid var(--tv-border);
  background: var(--tv-white);
  color: var(--tv-text-light);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--tv-transition);
}
.tv-quiz-tab.active {
  background: var(--tv-primary);
  border-color: var(--tv-primary);
  color: var(--tv-white);
}
.tv-quiz-box { display: none; }
.tv-quiz-box.active { display: block; }
.tv-quiz-question {
  background: var(--tv-white);
  border: 1px solid var(--tv-border);
  border-radius: var(--tv-radius-lg);
  padding: 30px;
  margin-bottom: 20px;
}
.tv-quiz-question h4 { margin-bottom: 18px; font-size: 1.05rem; }
.tv-quiz-options { display: flex; flex-direction: column; gap: 10px; }
.tv-quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 2px solid var(--tv-border);
  cursor: pointer;
  transition: all var(--tv-transition);
  font-size: 0.92rem;
}
.tv-quiz-option:hover { border-color: var(--tv-accent); background: rgba(0,200,232,0.05); }
.tv-quiz-option input { accent-color: var(--tv-accent-dark); }
.tv-quiz-result {
  background: var(--tv-primary);
  color: var(--tv-white);
  border-radius: var(--tv-radius-lg);
  padding: 28px;
  display: none;
  margin-top: 20px;
}
.tv-quiz-result.show { display: block; }
.tv-quiz-result h3 { color: var(--tv-accent); margin-bottom: 10px; }

/* ── Reviews Section ── */
.tv-reviews-slider-wrap { position: relative; overflow: hidden; }
.tv-reviews-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 24px;
}
.tv-review-card {
  min-width: calc(33.333% - 16px);
  background: var(--tv-white);
  border-radius: var(--tv-radius-lg);
  padding: 28px;
  border: 1px solid var(--tv-border);
  box-shadow: var(--tv-shadow-sm);
}
.tv-review-stars { color: #f4a01c; margin-bottom: 14px; font-size: 0.9rem; }
.tv-review-text {
  color: var(--tv-text);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.65;
}
.tv-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tv-reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tv-primary-light), var(--tv-accent-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--tv-white);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Syne', sans-serif;
  flex-shrink: 0;
}
.tv-reviewer-info strong { display: block; color: var(--tv-primary); font-size: 0.92rem; }
.tv-reviewer-info span { font-size: 0.8rem; color: var(--tv-text-light); }
.tv-slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.tv-slider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--tv-border);
  background: var(--tv-white);
  color: var(--tv-primary);
  cursor: pointer;
  transition: all var(--tv-transition);
  display: flex; align-items: center; justify-content: center;
}
.tv-slider-btn:hover {
  background: var(--tv-primary);
  border-color: var(--tv-primary);
  color: var(--tv-white);
}

/* ── Team Section ── */
.tv-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tv-team-card {
  background: var(--tv-white);
  border-radius: var(--tv-radius-lg);
  overflow: hidden;
  border: 1px solid var(--tv-border);
  transition: all var(--tv-transition);
  text-align: center;
}
.tv-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tv-shadow-lg);
}
.tv-team-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.tv-team-info { padding: 22px 20px; }
.tv-team-info h4 { font-size: 1rem; margin-bottom: 4px; }
.tv-team-role {
  color: var(--tv-accent-dark);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: block;
}
.tv-team-info p { font-size: 0.84rem; }

/* ── Explorer Section ── */
.tv-explorer-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--tv-white);
  border: 1px solid var(--tv-border);
  border-radius: var(--tv-radius-lg);
  overflow: hidden;
  box-shadow: var(--tv-shadow-md);
}
.tv-explorer-sidebar {
  background: var(--tv-primary);
  padding: 20px;
}
.tv-explorer-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  cursor: pointer;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--tv-transition);
  margin-bottom: 6px;
}
.tv-explorer-tab:hover, .tv-explorer-tab.active {
  background: rgba(0,200,232,0.18);
  color: var(--tv-accent);
}
.tv-explorer-tab i { width: 20px; }
.tv-explorer-content { padding: 36px; }
.tv-explorer-panel { display: none; }
.tv-explorer-panel.active { display: block; }
.tv-explorer-panel h3 { margin-bottom: 12px; }
.tv-explorer-panel p { margin-bottom: 16px; }
.tv-explorer-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.tv-explorer-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: var(--tv-secondary);
  border-radius: 10px;
  font-size: 0.88rem;
}
.tv-explorer-feature i { color: var(--tv-accent-dark); margin-top: 2px; }
.tv-explorer-feature span { color: var(--tv-text); }

/* ── FAQ Section ── */
.tv-faq-list { max-width: 800px; margin: 0 auto; }
.tv-faq-item {
  border: 1px solid var(--tv-border);
  border-radius: var(--tv-radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.tv-faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--tv-primary);
  transition: background var(--tv-transition);
  font-size: 0.95rem;
}
.tv-faq-question:hover { background: var(--tv-secondary); }
.tv-faq-question.open { background: var(--tv-secondary); }
.tv-faq-question i { transition: transform 0.3s; color: var(--tv-accent-dark); flex-shrink: 0; margin-left: 12px; }
.tv-faq-question.open i { transform: rotate(180deg); }
.tv-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}
.tv-faq-answer.open { max-height: 300px; padding: 0 24px 20px; }
.tv-faq-answer p { font-size: 0.92rem; margin-top: 8px; }

/* ── Image Sections ── */
.tv-image-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  border-radius: var(--tv-radius-lg);
  overflow: hidden;
  box-shadow: var(--tv-shadow-lg);
}
.tv-image-feature img { width: 100%; height: 450px; object-fit: cover; }
.tv-image-feature-content { padding: 50px; background: var(--tv-primary); color: var(--tv-white); }
.tv-image-feature-content h2 { color: var(--tv-white); margin-bottom: 16px; }
.tv-image-feature-content p { color: rgba(255,255,255,0.75); margin-bottom: 20px; }
.tv-feature-list { list-style: none; margin-bottom: 28px; }
.tv-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
}
.tv-feature-list li i { color: var(--tv-accent); margin-top: 3px; flex-shrink: 0; }

/* ── Articles Grid ── */
.tv-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tv-article-card {
  background: var(--tv-white);
  border-radius: var(--tv-radius-lg);
  overflow: hidden;
  border: 1px solid var(--tv-border);
  transition: all var(--tv-transition);
}
.tv-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tv-shadow-lg);
}
.tv-article-thumb { width: 100%; height: 200px; object-fit: cover; }
.tv-article-body { padding: 24px; }
.tv-article-tag {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(0,200,232,0.1);
  color: var(--tv-accent-dark);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tv-article-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.tv-article-body p { font-size: 0.88rem; margin-bottom: 16px; }
.tv-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--tv-text-light);
  border-top: 1px solid var(--tv-border);
  padding-top: 14px;
}
.tv-article-meta i { margin-right: 4px; }

/* ── Contact Form ── */
.tv-contact-form {
  background: var(--tv-white);
  border-radius: var(--tv-radius-lg);
  padding: 40px;
  border: 1px solid var(--tv-border);
  box-shadow: var(--tv-shadow-md);
}
.tv-form-group { margin-bottom: 20px; }
.tv-form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--tv-primary);
}
.tv-form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--tv-border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--tv-text);
  transition: border-color var(--tv-transition), box-shadow var(--tv-transition);
  background: var(--tv-white);
}
.tv-form-control:focus {
  outline: none;
  border-color: var(--tv-accent);
  box-shadow: 0 0 0 3px rgba(0,200,232,0.1);
}
.tv-form-control.error { border-color: var(--tv-danger); }
.tv-form-error {
  font-size: 0.8rem;
  color: var(--tv-danger);
  margin-top: 4px;
  display: none;
}
.tv-form-error.show { display: block; }
textarea.tv-form-control { resize: vertical; min-height: 120px; }

/* ── Page Hero (inner pages) ── */
.tv-page-hero {
  background: linear-gradient(135deg, #081d3a 0%, #0d2f5e 60%, #0a4070 100%);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}
.tv-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(0,200,232,0.08) 0%, transparent 50%);
}
.tv-page-hero-content { position: relative; z-index: 1; }
.tv-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.tv-breadcrumb a { color: rgba(255,255,255,0.55); }
.tv-breadcrumb a:hover { color: var(--tv-accent); }
.tv-breadcrumb i { font-size: 0.7rem; }
.tv-page-hero h1 { color: var(--tv-white); margin-bottom: 14px; }
.tv-page-hero p { color: rgba(255,255,255,0.7); max-width: 600px; font-size: 1.05rem; }

/* ── Info Cards ── */
.tv-info-card {
  background: var(--tv-white);
  border-radius: var(--tv-radius-lg);
  padding: 30px;
  border: 1px solid var(--tv-border);
  height: 100%;
}
.tv-info-card-icon {
  width: 56px; height: 56px;
  background: rgba(0,200,232,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--tv-accent-dark);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.tv-info-card h4 { margin-bottom: 10px; }

/* ── Timeline ── */
.tv-timeline { position: relative; padding-left: 30px; }
.tv-timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--tv-accent), var(--tv-primary-light));
}
.tv-timeline-item {
  position: relative;
  margin-bottom: 36px;
  padding-left: 24px;
}
.tv-timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--tv-accent);
  border: 3px solid var(--tv-white);
  box-shadow: 0 0 0 2px var(--tv-accent);
}
.tv-timeline-year {
  display: inline-block;
  padding: 3px 12px;
  background: var(--tv-primary);
  color: var(--tv-accent);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Syne', sans-serif;
}
.tv-timeline-item h4 { margin-bottom: 6px; }
.tv-timeline-item p { font-size: 0.9rem; }

/* ── Legal Pages ── */
.tv-legal-content h2 { font-size: 1.4rem; margin-top: 36px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--tv-border); }
.tv-legal-content h3 { font-size: 1.1rem; margin-top: 24px; margin-bottom: 10px; }
.tv-legal-content p { color: var(--tv-text); margin-bottom: 14px; line-height: 1.75; }
.tv-legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.tv-legal-content ul li { margin-bottom: 6px; color: var(--tv-text); font-size: 0.95rem; }

/* ── Footer ── */
.tv-footer {
  background: #060f1e;
  color: rgba(255,255,255,0.65);
  padding: 70px 0 30px;
}
.tv-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.tv-footer-brand { margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.tv-footer-brand .tv-brand-icon {
  width: 40px; height: 40px;
  background: var(--tv-accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--tv-primary);
  font-size: 1.1rem;
}
.tv-footer-brand-text { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--tv-white); }
.tv-footer-brand-text span { display: block; font-size: 0.68rem; font-weight: 400; opacity: 0.6; font-family: 'DM Sans', sans-serif; letter-spacing: 0.08em; }
.tv-footer p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.tv-footer-social { display: flex; gap: 10px; }
.tv-social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: all var(--tv-transition);
  font-size: 0.9rem;
}
.tv-social-link:hover { border-color: var(--tv-accent); color: var(--tv-accent); }
.tv-footer-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--tv-white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tv-footer-links { list-style: none; }
.tv-footer-links li { margin-bottom: 10px; }
.tv-footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--tv-transition);
  display: flex; align-items: center; gap: 6px;
}
.tv-footer-links a:hover { color: var(--tv-accent); }
.tv-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.tv-footer-contact-item i { color: var(--tv-accent); margin-top: 3px; flex-shrink: 0; }
.tv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.tv-footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.tv-footer-legal a { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.tv-footer-legal a:hover { color: var(--tv-accent); }

/* ── Cookie Banner ── */
.tv-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: #0d2f5e;
  color: var(--tv-white);
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  max-width: 600px;
  width: calc(100% - 40px);
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(0,200,232,0.2);
  transition: all 0.4s ease;
}
.tv-cookie-banner.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(20px); }
.tv-cookie-text { flex: 1; font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.tv-cookie-text a { color: var(--tv-accent); }
.tv-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Thank You Page ── */
.tv-thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0f6ff, #e8f4fa);
}
.tv-thankyou-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--tv-accent), var(--tv-primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--tv-white);
  font-size: 2rem;
  margin: 0 auto 24px;
}

/* ── Captcha Style ── */
.tv-captcha-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 2px solid var(--tv-border);
  border-radius: 10px;
  background: var(--tv-gray-100);
  margin-bottom: 20px;
}
.tv-captcha-box input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--tv-accent-dark); cursor: pointer; }
.tv-captcha-label { font-size: 0.92rem; color: var(--tv-text); }
.tv-captcha-shield { margin-left: auto; color: var(--tv-text-light); font-size: 0.8rem; text-align: right; }
.tv-captcha-shield i { display: block; font-size: 1.2rem; color: var(--tv-success); margin-bottom: 2px; }

/* ── Map embed ── */
.tv-map-embed {
  border-radius: var(--tv-radius-lg);
  overflow: hidden;
  height: 350px;
  border: 1px solid var(--tv-border);
}
.tv-map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ── Brands Section ── */
.tv-brands-strip { background: var(--tv-secondary); padding: 40px 0; }
.tv-brands-heading { text-align: center; margin-bottom: 24px; font-size: 0.85rem; color: var(--tv-text-light); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.tv-brands-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.tv-brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--tv-gray-300);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  transition: color var(--tv-transition);
}
.tv-brand-name:hover { color: var(--tv-primary); }

/* ── Scroll Top ── */
.tv-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--tv-primary);
  color: var(--tv-accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--tv-transition);
  box-shadow: var(--tv-shadow-md);
  border: none;
  font-size: 1rem;
}
.tv-scroll-top.visible { opacity: 1; pointer-events: all; }
.tv-scroll-top:hover { background: var(--tv-accent); color: var(--tv-primary); transform: translateY(-3px); }

/* ── Article Page ── */
.tv-article-content { max-width: 820px; }
.tv-article-content h2 { font-size: 1.5rem; margin: 36px 0 14px; }
.tv-article-content h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.tv-article-content p { color: var(--tv-text); margin-bottom: 18px; line-height: 1.8; font-size: 1rem; }
.tv-article-content ul, .tv-article-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.tv-article-content ul li, .tv-article-content ol li {
  margin-bottom: 8px;
  color: var(--tv-text);
  font-size: 0.97rem;
}
.tv-article-content img { border-radius: var(--tv-radius); margin: 24px 0; }
.tv-article-content blockquote {
  border-left: 4px solid var(--tv-accent);
  padding: 16px 24px;
  background: var(--tv-secondary);
  border-radius: 0 var(--tv-radius) var(--tv-radius) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--tv-text);
}
.tv-callout {
  background: rgba(0,200,232,0.08);
  border: 1px solid rgba(0,200,232,0.25);
  border-radius: var(--tv-radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.tv-callout strong { color: var(--tv-primary); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .tv-services-grid { grid-template-columns: repeat(2, 1fr); }
  .tv-team-grid { grid-template-columns: repeat(2, 1fr); }
  .tv-footer-top { grid-template-columns: 1fr 1fr; }
  .tv-explorer-wrap { grid-template-columns: 1fr; }
  .tv-explorer-sidebar { display: flex; flex-wrap: wrap; gap: 6px; padding: 16px; }
}
@media (max-width: 768px) {
  .tv-navbar-nav { display: none; }
  .tv-navbar-phone { display: none; }
  .tv-hamburger { display: flex; }
  .tv-hero { padding: 100px 0 60px; }
  .tv-hero-visual { display: none; }
  .tv-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tv-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .tv-services-grid { grid-template-columns: 1fr; }
  .tv-process-grid { grid-template-columns: 1fr; }
  .tv-team-grid { grid-template-columns: repeat(2, 1fr); }
  .tv-articles-grid { grid-template-columns: 1fr; }
  .tv-review-card { min-width: calc(100% - 24px); }
  .tv-image-feature { grid-template-columns: 1fr; }
  .tv-image-feature img { height: 280px; }
  .tv-image-feature-content { padding: 32px; }
  .tv-footer-top { grid-template-columns: 1fr; }
  .tv-diagnostic-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .tv-team-grid { grid-template-columns: 1fr; }
  .tv-hero h1 { font-size: 2rem; }
  .tv-hero-cta { flex-direction: column; }
  .tv-cookie-banner { flex-direction: column; text-align: center; }
}

/* ── Mobile Nav Menu ── */
.tv-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--tv-primary);
  z-index: 998;
  padding: 100px 30px 40px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
}
.tv-mobile-menu.open { transform: translateX(0); }
.tv-mobile-menu a {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
}
.tv-mobile-menu a:hover { color: var(--tv-accent); }


.logo{
  max-width: 50px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}