/* ============================================
   LANDING PAGES - SHARED STYLES
   Laptop Specialists London
   Light Professional Theme
   ============================================ */

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

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

body {
  font-family: 'Poppins', sans-serif;
  color: #334155;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner,
.site-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo span { color: #2563eb; }

.nav-links,
.site-header .nav,
.site-header .nav ul,
.site-header .nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a,
.site-header .nav a,
.site-header .nav li a {
  font-size: 0.82rem;
  font-weight: 500;
  color: #64748b;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active,
.site-header .nav a:hover,
.site-header .nav a.active,
.site-header .nav li a:hover,
.site-header .nav li a.active { color: #0f172a; }

.nav-cta {
  background: #2563eb;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #0f172a;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px 24px 24px;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
}

.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 0.95rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
  transition: color 0.2s;
}

.mobile-nav a:hover { color: #2563eb; }

.mobile-nav .nav-cta {
  display: inline-block;
  margin-top: 16px;
  text-align: center;
  width: 100%;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 110px 0 70px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #f0f9ff 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
  z-index: 0;
}

/* Animated background orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.12);
  top: -100px;
  right: -50px;
  animation: orbFloat1 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(99, 102, 241, 0.1);
  bottom: -80px;
  left: -60px;
  animation: orbFloat2 10s ease-in-out infinite;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.08);
  top: 40%;
  left: 30%;
  animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, -20px) scale(1.08); }
  66% { transform: translate(-15px, 25px) scale(0.92); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(40px, -30px) scale(1.1); opacity: 0.5; }
}

/* Animated floating shapes */
.hero-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
}

.hero-shape-1 {
  width: 120px;
  height: 120px;
  border: 2px solid #2563eb;
  border-radius: 24px;
  bottom: 15%;
  left: 8%;
  animation: shapeFloat1 16s ease-in-out infinite;
  transform: rotate(15deg);
}

.hero-shape-2 {
  width: 80px;
  height: 80px;
  border: 2px solid #818cf8;
  border-radius: 50%;
  top: 25%;
  right: 42%;
  animation: shapeFloat2 20s ease-in-out infinite;
}

.hero-shape-3 {
  width: 60px;
  height: 60px;
  background: #2563eb;
  border-radius: 12px;
  bottom: 30%;
  left: 25%;
  animation: shapeFloat3 14s ease-in-out infinite;
  transform: rotate(45deg);
}

.hero-shape-4 {
  width: 40px;
  height: 40px;
  border: 2px solid #60a5fa;
  border-radius: 50%;
  top: 35%;
  left: 15%;
  animation: shapeFloat4 18s ease-in-out infinite;
}

.hero-shape-5 {
  width: 100px;
  height: 100px;
  border: 2px solid #2563eb;
  border-radius: 50%;
  bottom: 10%;
  right: 35%;
  animation: shapeFloat5 22s ease-in-out infinite;
}

@keyframes shapeFloat1 {
  0%, 100% { transform: rotate(15deg) translate(0, 0); }
  25% { transform: rotate(25deg) translate(15px, -20px); }
  50% { transform: rotate(10deg) translate(-10px, 15px); }
  75% { transform: rotate(20deg) translate(20px, 10px); }
}

@keyframes shapeFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-20px, 15px) scale(1.1); }
  66% { transform: translate(15px, -25px) scale(0.9); }
}

@keyframes shapeFloat3 {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.06; }
  50% { transform: rotate(90deg) translate(30px, -20px); opacity: 0.1; }
}

@keyframes shapeFloat4 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, 20px); }
  50% { transform: translate(-15px, -10px); }
  75% { transform: translate(20px, -15px); }
}

@keyframes shapeFloat5 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, 20px) scale(1.05); }
}

/* Legacy - keep for backwards compat */
.hero-laptop-img {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge,
.hero-content > .badge,
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 .highlight {
  color: #2563eb;
  -webkit-text-fill-color: #2563eb;
}

.hero p {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid #cbd5e1;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  transform: translateY(-1px);
}

.btn-full { width: 100%; justify-content: center; }

/* Trust Badges Row */
.trust-badges {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #475569;
  font-weight: 500;
}

.trust-badge-icon {
  color: #2563eb;
  font-size: 1rem;
}

.trust-badge .icon {
  width: 36px;
  height: 36px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.trust-badge .info .number {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.trust-badge .info .label {
  font-size: 0.75rem;
  color: #64748b;
}

/* Hero Visual (right side) - Contact Form */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-form {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.hero-form h3 {
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: 6px;
  font-weight: 700;
}

.hero-form .form-subtitle {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 20px;
}

.hero-form .hf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-form .hf-row.full { grid-template-columns: 1fr; }

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  padding: 11px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #0f172a;
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder { color: #94a3b8; }

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus { border-color: #2563eb; }

.hero-form textarea { resize: vertical; min-height: 70px; }

.hero-form select option { background: #fff; color: #0f172a; }

.hero-form .hf-submit {
  width: 100%;
  padding: 13px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.25s;
  margin-top: 8px;
}

.hero-form .hf-submit:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.hero-form .hf-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.7rem;
  color: #94a3b8;
}

.hero-form .hf-trust span { display: flex; align-items: center; gap: 4px; }

/* --- Stats Bar (below hero) --- */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0;
  position: relative;
  z-index: 5;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.stats-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid #f1f5f9;
  animation: statSlideUp 0.6s ease-out both;
}

.stats-bar-item:last-child { border-right: none; }
.stats-bar-item:nth-child(1) { animation-delay: 0.1s; }
.stats-bar-item:nth-child(2) { animation-delay: 0.2s; }
.stats-bar-item:nth-child(3) { animation-delay: 0.3s; }
.stats-bar-item:nth-child(4) { animation-delay: 0.4s; }

.stats-bar-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #eef2ff, #dbeafe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.stats-bar-text .stats-bar-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: #2563eb;
  display: block;
  line-height: 1.2;
}

.stats-bar-text .stats-bar-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

@keyframes statSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Stats bar responsive */
@media (max-width: 768px) {
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-item { padding: 18px 16px; }
  .stats-bar-item:nth-child(2) { border-right: none; }
}

@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .stats-bar-item { gap: 10px; padding: 14px 12px; }
  .stats-bar-text .stats-bar-number { font-size: 1.1rem; }
}

/* --- Section Base --- */
.section {
  padding: 80px 0;
}

.section-dark {
  background: linear-gradient(180deg, #f0f5ff 0%, #f8fafc 100%);
}

.section-darker {
  background: #f1f5f9;
}

.section-light {
  background: #fff;
}

.section-accent {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Feature Cards --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #6366f1);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: #c7d2fe;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  background: #eef2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
}

/* --- Process / Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

/* Connecting line between steps */
.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 14%;
  right: 14%;
  height: 3px;
  background: linear-gradient(90deg, #dbeafe, #2563eb, #818cf8, #dbeafe);
  background-size: 200% 100%;
  animation: lineShimmer 4s ease-in-out infinite;
  border-radius: 2px;
  z-index: 0;
}

@keyframes lineShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 24px 32px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  opacity: 0;
  transform: translateY(30px);
  animation: processReveal 0.6s ease-out forwards;
}

.process-step:nth-child(1) { animation-delay: 0.15s; }
.process-step:nth-child(2) { animation-delay: 0.3s; }
.process-step:nth-child(3) { animation-delay: 0.45s; }
.process-step:nth-child(4) { animation-delay: 0.6s; }

@keyframes processReveal {
  to { opacity: 1; transform: translateY(0); }
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
  border-color: #bfdbfe;
}

.process-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #818cf8);
  border-radius: 0 0 20px 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.process-step:hover::after { opacity: 1; }

.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover .step-num {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.stars,
.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

/* --- Floating Widgets --- */
.widget-phone,
.widget-whatsapp {
  position: fixed;
  bottom: 28px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: widgetPulse 2s ease-in-out infinite;
}

.widget-phone:hover,
.widget-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.widget-phone {
  left: 28px;
  background: #2563eb;
  color: #fff;
}

.widget-whatsapp {
  right: 28px;
  background: #25d366;
  color: #fff;
}

@keyframes widgetPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
  50% { box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 0 0 8px rgba(37,99,235,0.1); }
}

.widget-whatsapp { animation-name: widgetPulseWA; }

@keyframes widgetPulseWA {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
  50% { box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 0 0 8px rgba(37,211,102,0.15); }
}

@media (max-width: 768px) {
  .widget-phone,
  .widget-whatsapp { width: 50px; height: 50px; font-size: 1.3rem; bottom: 20px; }
  .widget-phone { left: 16px; }
  .widget-whatsapp { right: 16px; }
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: #475569;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.author-info .name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
}

.author-info .verified {
  font-size: 0.75rem;
  color: #16a34a;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.3s;
}

.faq-item.open { border-color: #93c5fd; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  transition: color 0.2s;
}

.faq-question:hover { color: #2563eb; }

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: #2563eb;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
}

/* --- Contact / Quote Form --- */
.form-section {
  position: relative;
}

.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(37,99,235,0.03) 0%, transparent 60%);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.form-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.form-info p {
  color: #64748b;
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item > div strong {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item > div a,
.contact-item > div span {
  font-size: 0.95rem;
  color: #0f172a;
  font-weight: 500;
}

.contact-item > div a {
  transition: color 0.2s;
}

.contact-item > div a:hover { color: #2563eb; }

.contact-item .text .label {
  font-size: 0.8rem;
  color: #64748b;
}

.contact-item .text .value {
  font-size: 1rem;
  color: #0f172a;
  font-weight: 500;
}

.contact-item .text a {
  color: #0f172a;
  transition: color 0.2s;
}

.contact-item .text a:hover { color: #2563eb; }

/* Form */
.quote-form,
.form-wrapper .quote-form,
.form-wrapper form {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px;
}

.form-wrapper {
  position: relative;
  z-index: 1;
}

.quote-form h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row.full { grid-template-columns: 1fr; }

.form-group { margin-bottom: 0; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  color: #0f172a;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group select option {
  background: #fff;
  color: #0f172a;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.25s;
  margin-top: 16px;
}

.form-submit:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #2563eb;
  font-size: 1.05rem;
  padding: 16px 36px;
}

.cta-banner .btn-primary:hover {
  background: #f8fafc;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* --- Hero Trust Bar --- */
.hero-trust-bar {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
}

.hero-trust-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero-trust-bar { gap: 12px; padding: 12px 16px; }
  .hero-trust-item { font-size: 0.75rem; }
}

/* --- Broken Device Banner responsive --- */
@media (max-width: 768px) {
  .section [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* --- Shop Gallery --- */
.shop-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.shop-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.shop-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.shop-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.shop-gallery-grid img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .shop-gallery { grid-template-columns: 1fr; }
  .shop-gallery-main img { height: 250px; }
  .shop-gallery-grid img { height: 150px; }
}

/* --- Footer --- */
/* --- Location / Visit Us Section --- */
.location-section {
  background: #0f172a;
  padding: 80px 0;
  color: #fff;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.location-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

.location-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.location-detail .loc-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.location-detail p,
.location-detail a {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
}

.location-detail a {
  color: #60a5fa;
  transition: color 0.2s;
}

.location-detail a:hover { color: #93bbfc; }

.location-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 12px;
  transition: all 0.25s;
}

.location-directions:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.location-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
}

.location-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .location-grid { grid-template-columns: 1fr; gap: 32px; }
  .location-map iframe { height: 280px; }
}

/* --- Footer --- */
.site-footer {
  background: #0f172a;
  padding: 60px 0 24px;
  color: #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.85rem;
  color: #cbd5e1;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col .logo {
  display: block;
  margin-bottom: 16px;
  color: #fff;
}

.footer-col > p {
  font-size: 0.85rem;
  color: #cbd5e1;
  max-width: 280px;
  line-height: 1.6;
  margin-top: 12px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: #cbd5e1;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: #60a5fa; }

.footer-col ul li {
  font-size: 0.85rem;
  color: #cbd5e1;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.footer-col .contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-col ul li a {
  display: inline;
  padding: 0;
}

/* Footer hours */
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-cta-box {
  margin-top: 20px;
  padding: 16px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  text-align: center;
}

.footer-cta-box p {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 10px;
}

.footer-cta-btn {
  display: inline-block;
  background: #2563eb;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s;
}

.footer-cta-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.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.8rem;
  color: #94a3b8;
}

.footer-bottom a {
  color: #64748b;
  margin-left: 24px;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: #60a5fa; }

/* --- Mobile Sticky CTA --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid #e2e8f0;
  z-index: 999;
  text-align: center;
}

.sticky-cta .btn-primary {
  width: 100%;
  justify-content: center;
}

/* --- Success Modal --- */
.success-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.success-modal.show,
.success-modal.active { display: flex; }

.success-content,
.modal-content {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  max-width: 420px;
  margin: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.success-check,
.modal-icon {
  width: 72px;
  height: 72px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #16a34a;
  margin: 0 auto 20px;
}

.success-content h3,
.modal-content h3 {
  font-size: 1.3rem;
  color: #0f172a;
  margin-bottom: 10px;
}

.success-content p,
.modal-content p {
  color: #64748b;
  font-size: 0.9rem;
}

.success-close,
.modal-close {
  margin-top: 24px;
  padding: 10px 28px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 1080px) {
  .hamburger { display: flex; }
  .nav-links,
  .site-header .nav,
  .site-header .nav ul,
  .site-header nav { display: none; }
}

@media (max-width: 1024px) {
  .hero h1 { font-size: 2.3rem; }
  .hero-grid,
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .mobile-nav { display: block; }

  .hero { min-height: auto; padding: 96px 0 56px; }
  .hero h1 { font-size: 1.9rem; }
  .hero p { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; justify-content: center; }

  .trust-badges { gap: 16px; }

  .section { padding: 56px 0; }
  .section-header h2 { font-size: 1.6rem; }

  .features-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .process-grid::before { display: none; }
  .process-step { padding: 28px 20px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom a { margin-left: 0; margin-right: 16px; }

  .sticky-cta { display: block; }

  .cta-banner h2 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .trust-badges { flex-direction: column; gap: 12px; }
  .hero-stats { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  body { padding-bottom: 70px; }
}
