/* =============================================
   ACR REPAIRS – V4 PREMIUM REDESIGN
   Commercial Fridge Repairs London
   Color: Navy + Orange + White
   Fonts: Inter (body) + Poppins (headings)
   ============================================= */

:root {
  --navy: #0a1628;
  --navy-light: #122040;
  --navy-mid: #1a2d52;
  --navy-surface: #0e1d35;
  --accent: #f97316;
  --accent-hover: #ea580c;
  --accent-light: rgba(249, 115, 22, 0.12);
  --accent-glow: rgba(249, 115, 22, 0.3);
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-50: #f1f5f9;
  --gray-100: #e2e8f0;
  --gray-200: #cbd5e1;
  --gray-300: #94a3b8;
  --gray-400: #64748b;
  --gray-500: #475569;
  --gray-600: #334155;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-on-dark: #e2e8f0;
  --text-on-dark-muted: #94a3b8;
  --green: #22c55e;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --container: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; line-height: 1.15;     margin-top: 15px;
    margin-bottom: 5px;}
ul { list-style: none; }
section { scroll-margin-top: 120px; }

.skip-link {
  position: absolute; left: 1rem; top: 1rem; z-index: 200;
  background: var(--navy); color: #fff; padding: 0.75rem 1rem;
  border-radius: var(--radius-sm); transform: translateY(-200%);
  transition: transform 0.2s;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }

/* ===== TOP CONTACT BAR ===== */
.top-bar {
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 8px 0; font-size: 0.82rem; position: fixed;
  top: 0; left: 0; right: 0; z-index: 101;
  transition: transform 0.3s ease;
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar-item {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-on-dark-muted); font-weight: 600;
  transition: color var(--transition);
}
.top-bar-hours svg { color: var(--accent); }
.top-bar-phone {
  color: var(--white); font-weight: 800; letter-spacing: 0.02em;
}
.top-bar-phone svg { color: var(--accent); }
.top-bar-phone:hover { color: var(--accent); }
.top-bar-phone-number { font-size: 0.92rem; font-family: 'Poppins', sans-serif; }
.top-bar-phone-label { display: none; }
.top-bar-whatsapp { color: #25D366; font-weight: 700; }
.top-bar-whatsapp:hover { color: #20bd5a; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px; border-radius: 999px;
  font-size: 0.95rem; font-weight: 700; font-family: 'Inter', sans-serif;
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-accent {
  background: var(--accent); color: var(--white);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-accent:hover { background: var(--accent-hover); box-shadow: 0 12px 32px var(--accent-glow); }

.btn-white {
  background: var(--white); color: var(--navy);
}
.btn-white:hover { background: var(--gray-50); }

.btn-outline-light {
  background: transparent; border-color: rgba(255,255,255,0.3); color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.btn-outline-white {
  background: transparent; border-color: rgba(255,255,255,0.4); color: var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { display: flex; width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 37px; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  top: 0;
}
.top-bar.hidden { transform: translateY(-100%); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand-logo { 
      height: 70px;
    width: auto;
    /* filter: brightness(0) invert(1); */
    background: #FFF;
    padding: 10px;
 }
.navbar.scrolled .brand-logo { height: 40px; }
.nav-links {
  display: flex; gap: 28px; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.8);
}
.nav-links a { transition: color var(--transition); position: relative; }
.nav-links a:hover { color: var(--accent); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent); transform: scaleX(0);
  transition: transform var(--transition); border-radius: 999px;
}
.nav-links a:hover::after { transform: scaleX(1); }

/* Dropdown Menus */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }
.nav-dropdown > a::after { display: none; }
.nav-dropdown > a svg { width: 10px; height: 10px; margin-left: 4px; vertical-align: middle; fill: currentColor; transition: transform var(--transition); }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 240px; background: #fff; border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15); padding: 8px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  transform: translateX(-50%) translateY(8px); z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block; padding: 10px 20px; color: var(--navy) !important;
  font-size: 0.85rem; font-weight: 500; white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover {
  background: #f1f5f9; color: var(--accent) !important;
}
.dropdown-menu .dropdown-label {
  display: block; padding: 8px 20px 4px; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: #94a3b8; font-weight: 700; pointer-events: none;
}
.dropdown-menu hr {
  border: none; border-top: 1px solid #e2e8f0; margin: 4px 0;
}

/* Mobile nav accordion */
.mobile-nav-group > .mobile-nav-toggle {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; background: none; border: none; cursor: pointer;
  font: inherit; color: inherit; padding: 0;
  font-size: 1.1rem; font-weight: 600; color: rgba(255,255,255,0.85);
}
.mobile-nav-group > .mobile-nav-toggle svg {
  width: 14px; height: 14px; fill: currentColor; transition: transform var(--transition);
}
.mobile-nav-group.open > .mobile-nav-toggle svg { transform: rotate(180deg); }
.mobile-nav-sub {
  display: none; padding-left: 16px; margin-top: 8px;
}
.mobile-nav-group.open .mobile-nav-sub { display: block; }
.mobile-nav-sub a {
  display: block; font-size: 0.95rem; padding: 6px 0;
  color: rgba(255,255,255,0.7) !important; font-weight: 400;
}
.mobile-nav-sub a:hover { color: var(--accent) !important; }
.mobile-nav-sub .mobile-sub-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.4); padding: 8px 0 2px; font-weight: 700;
}

.nav-cta { display: flex; gap: 10px; }
.nav-cta .btn { font-size: 0.85rem; padding: 10px 18px; }

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; z-index: 110;
}
.menu-toggle span {
  display: block; width: 100%; height: 2px; background: #fff;
  border-radius: 2px; transition: all var(--transition);
  position: absolute; left: 0;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

/* Mobile Nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 105;
  background: rgba(10, 22, 40, 0.7); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: all 0.4s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(340px, 85vw); background: var(--navy);
  padding: 80px 28px 28px; display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-panel a {
  display: block; padding: 14px 16px; color: rgba(255,255,255,0.85);
  font-size: 1.05rem; font-weight: 600; border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-nav-panel a:hover { background: rgba(255,255,255,0.08); color: var(--accent); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-close svg { width: 20px; height: 20px; }
.mobile-nav-cta { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.85) 40%, rgba(10, 22, 40, 0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: auto;
}

.hero-badge-emergency {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px; border-radius: 999px;
  background: rgba(249, 115, 22, 0.15); border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--accent); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); position: relative;
}
.pulse-dot::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid var(--accent);
  animation: pulse 2s ease-out infinite;
}
.pulse-dot-white { background: var(--white); }
.pulse-dot-white::before { border-color: var(--white); }

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900; color: var(--white);
  margin-bottom: 20px; letter-spacing: -0.03em;
  line-height: 1.08;
}
.hero-sub {
  font-size: 1.15rem; color: var(--text-on-dark-muted);
  line-height: 1.7; margin-bottom: 32px; max-width: 580px;
}
.hero-sub strong { color: var(--white); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-trust-strip {
  display: flex; flex-wrap: wrap; gap: 20px;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 600;
}
.hero-trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ===== TRUST SECTION ===== */
.trust-section {
  background: var(--navy); padding: 64px 0 48px;
  position: relative; overflow: hidden;
}
.trust-section::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-light), transparent 70%);
  pointer-events: none;
}

.trust-stats-row {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 32px; margin-bottom: 48px;
}
.trust-stat { text-align: center; }
.trust-stat-number {
  font-family: 'Poppins', sans-serif; font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900; color: var(--white); line-height: 1;
}
.trust-stat-number span { color: var(--accent); }
.trust-stat-label {
  color: var(--text-on-dark-muted); font-size: 0.88rem;
  font-weight: 600; margin-top: 4px; text-transform: uppercase;
  letter-spacing: 0.06em;
}
.trust-stat-divider {
  width: 1px; height: 48px; background: rgba(255,255,255,0.12);
}

.trust-icons-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 40px;
}
.trust-icon-card {
  text-align: center; padding: 28px 20px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); transition: all var(--transition);
  opacity: 0; transform: translateY(20px);
}
.trust-icon-card.animate-in { opacity: 1; transform: translateY(0); }
.trust-icon-card:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-4px);
}
.trust-icon-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.trust-icon-card h3 {
  color: var(--white); font-size: 1rem; font-weight: 700;
  margin-bottom: 6px;
}
.trust-icon-card p {
  color: var(--text-on-dark-muted); font-size: 0.88rem;
  line-height: 1.5;
}

/* Reviews Bar */
.reviews-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding: 20px 28px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); margin-bottom: 32px;
}
.reviews-bar-left {
  display: flex; align-items: center; gap: 16px;
}
.google-logo {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-weight: 700; font-size: 0.92rem;
}
.stars-display {
  color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px;
}
.stars-display span { color: var(--text-on-dark-muted); font-size: 0.85rem; margin-left: 6px; }
.reviews-bar-right {
  color: var(--text-on-dark-muted); font-size: 0.88rem; font-weight: 600;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-header {
  text-align: center; max-width: 800px; margin: 0 auto 48px;
}
.section-tag {
  display: inline-block; padding: 8px 18px; border-radius: 999px;
  background: var(--accent-light); color: var(--accent)!important;
  font-size: 0.78rem!important; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800;
  color: var(--text); margin-bottom: 14px; letter-spacing: -0.02em;
}
.section-header p {
  color: var(--text-muted); font-size: 1.05rem; line-height: 1.7;
}

/* ===== SERVICES ===== */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 32px 28px; border: 1px solid var(--gray-100);
  transition: all var(--transition); position: relative; overflow: hidden;
  opacity: 0; transform: translateY(20px);
}
.service-card.animate-in { opacity: 1; transform: translateY(0); }
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-xl);
  border-color: rgba(249, 115, 22, 0.2);
}
.service-card-featured {
  background: var(--navy); border-color: var(--navy);
}
.service-card-featured h3 { color: var(--white); }
.service-card-featured p { color: var(--text-on-dark-muted); }
.service-card-featured .service-link { color: var(--accent); }
.service-card-featured .service-card-icon { color: var(--accent); }
.service-card-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: var(--white);
  padding: 4px 12px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card-featured .service-card-icon {
  background: rgba(249, 115, 22, 0.15);
}
.service-card h3 {
  font-size: 1.15rem; font-weight: 700; margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  color: var(--text-muted); font-size: 0.92rem; line-height: 1.6;
  margin-bottom: 16px;
}
.service-link {
  color: var(--accent); font-weight: 700; font-size: 0.9rem;
  transition: gap var(--transition);
  display: inline-flex; align-items: center; gap: 4px;
}
.service-link:hover { gap: 8px; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.why-content .section-tag { margin-bottom: 16px; }
.why-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800;
  margin-bottom: 16px; color: var(--text); letter-spacing: -0.02em;
}
.why-content > p {
  color: var(--text-muted); font-size: 1.02rem; line-height: 1.7;
  margin-bottom: 32px;
}
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  opacity: 0; transform: translateX(-20px);
}
.why-item.animate-in { opacity: 1; transform: translateX(0); }
.why-item-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-item strong {
  display: block; font-size: 1rem; font-weight: 700;
  margin-bottom: 2px;
}
.why-item p {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.5;
}
.why-image {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
}
.why-image img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-xl); min-height: 500px;
}
.why-image-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(10, 22, 40, 0.9); backdrop-filter: blur(12px);
  border-radius: var(--radius-md); padding: 16px 20px;
  border: 1px solid rgba(249, 115, 22, 0.3);
}
.why-image-badge strong {
  display: block; color: var(--accent); font-size: 1.05rem;
  margin-bottom: 4px;
}
.why-image-badge span {
  color: var(--text-on-dark-muted); font-size: 0.85rem;
}

/* ===== GUARANTEE ===== */
.guarantee-section {
  background: var(--accent); padding: 40px 0;
}
.guarantee-bar {
  display: flex; align-items: center; gap: 24px;
}
.guarantee-icon {
  flex-shrink: 0; width: 64px; height: 64px;
  border-radius: 50%; background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.guarantee-text strong {
  display: block; color: var(--white); font-size: 1.2rem;
  margin-bottom: 4px; font-family: 'Poppins', sans-serif;
}
.guarantee-text p {
  color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.6;
}

/* ===== PROCESS ===== */
.process-section { background: var(--off-white); }
.process-timeline {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  position: relative;
}
.process-timeline::before {
  content: ''; position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 2px; background: var(--gray-200);
}
.process-step {
  text-align: center; position: relative;
  opacity: 0; transform: translateY(20px);
}
.process-step.animate-in { opacity: 1; transform: translateY(0); }
.process-step-number {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); color: var(--accent);
  font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 2;
  border: 4px solid var(--off-white);
}
.process-step-content h3 {
  font-size: 0.98rem; font-weight: 700;
  margin-bottom: 8px; color: var(--text);
}
.process-step-content p {
  color: var(--text-muted); font-size: 0.86rem;
  line-height: 1.5;
}

/* ===== INDUSTRIES ===== */
.industries-section { background: var(--white); }
.industries-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.industry-card {
  background: var(--off-white); border-radius: var(--radius-xl);
  padding: 32px 24px; text-align: center;
  border: 1px solid transparent; transition: all var(--transition);
  opacity: 0; transform: translateY(20px);
}
.industry-card.animate-in { opacity: 1; transform: translateY(0); }
.industry-card:hover {
  transform: translateY(-4px); border-color: var(--accent);
  box-shadow: var(--shadow-lg); background: var(--white);
}
.industry-icon {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.industry-card h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 8px;
}
.industry-card p {
  color: var(--text-muted); font-size: 0.88rem; line-height: 1.5;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15), transparent 60%);
  pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08), transparent 60%);
  pointer-events: none;
}
.cta-banner-content {
  text-align: center; position: relative; z-index: 2;
}
.cta-banner-emergency {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; border-radius: 999px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--accent); font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 900;
  color: var(--white); margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cta-banner p {
  color: var(--text-on-dark-muted); font-size: 1.1rem;
  max-width: 600px; margin: 0 auto 32px; line-height: 1.7;
}
.cta-banner-actions {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 14px; margin-bottom: 24px;
}
.cta-phone-big {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900; color: var(--accent);
  letter-spacing: 0.02em;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--off-white); }
.testimonials-slider { overflow: hidden; position: relative; }
.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% - 48px) / 3);
  background: var(--white); border-radius: var(--radius-xl);
  padding: 32px; border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg); border-color: rgba(249, 115, 22, 0.2);
}
.testimonial-stars {
  color: #fbbf24; font-size: 1.1rem; letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-size: 0.95rem; line-height: 1.7;
  color: var(--text-muted); margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block; font-size: 0.92rem; color: var(--text);
}
.testimonial-author span {
  font-size: 0.82rem; color: var(--text-muted);
}

.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 32px;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-200);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); color: var(--text);
}
.slider-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gray-200); border: none; cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active { background: var(--accent); width: 28px; border-radius: 999px; }

/* ===== EQUIPMENT ===== */
.equipment-section { background: var(--white); }
.equipment-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.equipment-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--off-white); border: 1px solid var(--gray-100);
  transition: all var(--transition); text-align: center;
  opacity: 0; transform: translateY(20px);
}
.equipment-card.animate-in { opacity: 1; transform: translateY(0); }
.equipment-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.2);
}
.equipment-card img {
  width: 100%; height: 200px; object-fit: contain;
  padding: 16px; background: var(--white);
}
.equipment-card-link {
  display: block; height: 100%; color: inherit; text-decoration: none;
}
.equipment-card-link:hover {
  color: inherit;
}
.equipment-label {
  display: block; padding: 12px; font-weight: 700;
  font-size: 0.88rem; color: var(--text);
}

.repair-detail-section {
  background: var(--white);
  padding-top: 56px;
}
.repair-detail-content {
  max-width: 100%;
  color: var(--text);
}
.repair-detail-content > :first-child {
  margin-top: 0;
}
.repair-gallery-section {
  margin-top: 56px;
}
.repair-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.repair-gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.repair-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.28);
}
.repair-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 240px;
  object-fit: contain;
}
.repair-lightbox-open {
  overflow: hidden;
}
.repair-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(5, 12, 24, 0.92);
}
.repair-lightbox.open {
  display: flex;
}
.repair-lightbox-image {
  display: block;
  max-width: min(1100px, 88vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.repair-lightbox-close,
.repair-lightbox-nav {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.repair-lightbox-close:hover,
.repair-lightbox-nav:hover {
  background: var(--accent);
  transform: scale(1.04);
}
.repair-lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  font-weight: 800;
}
.repair-lightbox-nav {
  top: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  font-weight: 700;
}
.repair-lightbox-prev {
  left: 24px;
}
.repair-lightbox-next {
  right: 24px;
}

/* ===== BLOG ===== */
.blog-section { background: var(--off-white); }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.blog-card {
  background: var(--white); border-radius: var(--radius-xl);
  overflow: hidden; border: 1px solid var(--gray-100);
  transition: all var(--transition);
  opacity: 0; transform: translateY(20px);
}
.blog-card.animate-in { opacity: 1; transform: translateY(0); }
.blog-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.blog-card-img {
  height: 200px; overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: var(--accent-light); color: var(--accent);
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 8px;
  color: var(--text); line-height: 1.35;
}
.blog-card p {
  color: var(--text-muted); font-size: 0.88rem;
  line-height: 1.6; margin-bottom: 14px;
}
.blog-link {
  color: var(--accent); font-weight: 700; font-size: 0.88rem;
  transition: gap var(--transition);
  display: inline-flex; align-items: center; gap: 4px;
}
.blog-link:hover { gap: 8px; }

/* ===== CONTACT ===== */
.contact-section { background: var(--white); padding: 80px 0 100px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800;
  margin-bottom: 12px; letter-spacing: -0.02em;
}
.contact-info > p {
  color: var(--text-muted); font-size: 1rem; line-height: 1.6;
  margin-bottom: 28px;
}

.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.contact-method {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; border-radius: var(--radius-md);
  border: 1px solid var(--gray-100); background: var(--off-white);
}
.contact-method-emergency {
  background: rgba(249, 115, 22, 0.06);
  border-color: rgba(249, 115, 22, 0.2);
}
.contact-method-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method strong {
  display: block; font-size: 0.88rem; margin-bottom: 4px;
}
.contact-phone {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem; font-weight: 800;
  color: var(--accent);
}
.contact-method p {
  color: var(--text-muted); font-size: 0.88rem; line-height: 1.5;
}
.emergency-tag {
  display: inline-block; padding: 2px 10px; border-radius: 999px;
  background: var(--accent); color: var(--white);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  margin-top: 4px;
}

.map-embed { border-radius: var(--radius-lg); overflow: hidden; }

/* Contact Form */
.contact-form-wrap {
  background: var(--navy); border-radius: var(--radius-xl);
  padding: 36px; color: var(--white);
}
.contact-form h3 {
  font-size: 1.4rem; font-weight: 800; margin-bottom: 6px;
}
.contact-form > p {
  color: var(--text-on-dark-muted); font-size: 0.92rem;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 700;
  color: var(--text-on-dark-muted); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.required-star {
  color: #ef4444;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm); color: var(--white);
  font-size: 0.95rem; font-family: 'Inter', sans-serif;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.contact-form .btn { margin-top: 8px; }
.form-note {
  color: var(--text-on-dark-muted); font-size: 0.8rem;
  margin-top: 12px; text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy); padding: 64px 0 0;
  color: var(--text-on-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-logo {
  height: 44px; width: auto; filter: brightness(0) invert(1);
  margin-bottom: 14px;
}
.footer-brand p {
  color: var(--text-on-dark-muted); font-size: 0.9rem;
  line-height: 1.6; margin-bottom: 16px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-on-dark-muted); transition: all var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--white); }
.site-footer h4 {
  font-size: 0.88rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 16px; color: var(--white);
}
.footer-links li { margin-bottom: 8px; }
.footer-links a, .footer-links span {
  color: var(--text-on-dark-muted); font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-areas {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.footer-areas li {
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 0.78rem; color: var(--text-on-dark-muted);
  margin-bottom: 0;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { color: var(--text-on-dark-muted); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  color: var(--text-on-dark-muted); font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--accent); }

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90; background: var(--navy);
  padding: 10px 16px;
  display: flex; gap: 10px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-call {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: var(--white);
  padding: 14px 20px; border-radius: 999px;
  font-weight: 800; font-size: 0.95rem;
}
.sticky-cta-quote {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); color: var(--white);
  padding: 14px 24px; border-radius: 999px;
  font-weight: 700; font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.2);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 76px; right: 20px;
  z-index: 85; width: 56px; height: 56px;
  border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: whatsappBounce 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
@keyframes whatsappBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== SCROLL ANIMATIONS ===== */
.service-card, .industry-card, .trust-icon-card,
.process-step, .why-item, .blog-card, .equipment-card {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Stagger animations */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.4s; }

.industries-grid .industry-card:nth-child(1) { transition-delay: 0s; }
.industries-grid .industry-card:nth-child(2) { transition-delay: 0.1s; }
.industries-grid .industry-card:nth-child(3) { transition-delay: 0.15s; }
.industries-grid .industry-card:nth-child(4) { transition-delay: 0.2s; }
.industries-grid .industry-card:nth-child(5) { transition-delay: 0.25s; }
.industries-grid .industry-card:nth-child(6) { transition-delay: 0.3s; }

.process-timeline .process-step:nth-child(1) { transition-delay: 0s; }
.process-timeline .process-step:nth-child(2) { transition-delay: 0.1s; }
.process-timeline .process-step:nth-child(3) { transition-delay: 0.2s; }
.process-timeline .process-step:nth-child(4) { transition-delay: 0.3s; }
.process-timeline .process-step:nth-child(5) { transition-delay: 0.4s; }

.why-list .why-item:nth-child(1) { transition-delay: 0s; }
.why-list .why-item:nth-child(2) { transition-delay: 0.1s; }
.why-list .why-item:nth-child(3) { transition-delay: 0.15s; }
.why-list .why-item:nth-child(4) { transition-delay: 0.2s; }
.why-list .why-item:nth-child(5) { transition-delay: 0.25s; }

.equipment-grid .equipment-card:nth-child(1) { transition-delay: 0s; }
.equipment-grid .equipment-card:nth-child(2) { transition-delay: 0.08s; }
.equipment-grid .equipment-card:nth-child(3) { transition-delay: 0.16s; }
.equipment-grid .equipment-card:nth-child(4) { transition-delay: 0.24s; }
.equipment-grid .equipment-card:nth-child(5) { transition-delay: 0.32s; }

.blog-grid .blog-card:nth-child(1) { transition-delay: 0s; }
.blog-grid .blog-card:nth-child(2) { transition-delay: 0.1s; }
.blog-grid .blog-card:nth-child(3) { transition-delay: 0.2s; }


/* ============================================
   RESPONSIVE – MOBILE FIRST
   ============================================ */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }

  .top-bar { padding: 6px 0; }
  .top-bar-hours { display: none; }
  .top-bar-phone-number { display: none; }
  .top-bar-phone-label { display: inline; font-size: 0.82rem; }

  .navbar { top: 33px; }

  .hero { min-height: 90vh; padding: 120px 0 60px; }
  .hero h1 { font-size: clamp(2rem, 6vw, 3rem); }

  .trust-icons-row { grid-template-columns: repeat(2, 1fr); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image { order: -1; }
  .why-image img { min-height: 360px; }

  .process-timeline {
    grid-template-columns: 1fr; gap: 0;
  }
  .process-timeline::before {
    top: 0; bottom: 0; left: 32px;
    width: 2px; height: auto; right: auto;
  }
  .process-step {
    display: flex; align-items: flex-start; gap: 20px;
    text-align: left; padding: 16px 0;
  }
  .process-step-number {
    margin: 0; flex-shrink: 0; width: 52px; height: 52px;
    font-size: 1rem;
  }

  .industries-grid { grid-template-columns: repeat(2, 1fr); }

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

  .equipment-grid { grid-template-columns: repeat(3, 1fr); }
  .repair-gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .trust-stats-row { gap: 20px; }
  .trust-stat-number { font-size: 2rem; }
  .trust-stat-divider { width: 1px; height: 32px; }

  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-sub { font-size: 1rem; }
  .hero-trust-strip { gap: 12px; }

  .services-grid { grid-template-columns: 1fr; }

  .guarantee-bar { flex-direction: column; text-align: center; }

  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .repair-gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .blog-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 640px) {
  .hero { min-height: auto; padding: 100px 0 50px; }

  .trust-icons-row { grid-template-columns: 1fr; gap: 12px; }
  .trust-stats-row {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .trust-stat-divider { display: none; }

  .reviews-bar { flex-direction: column; text-align: center; }

  .industries-grid { grid-template-columns: 1fr; }

  .testimonial-card { flex: 0 0 100%; }

  .equipment-grid { grid-template-columns: 1fr 1fr; }
  .repair-gallery-grid { grid-template-columns: 1fr; }
  .repair-lightbox { padding: 56px 16px 24px; }
  .repair-lightbox-image { max-width: 100%; max-height: 76vh; }
  .repair-lightbox-close { top: 12px; right: 12px; }
  .repair-lightbox-nav { top: auto; bottom: 14px; }

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

  .contact-form-wrap { padding: 24px 20px; }

  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn { width: 100%; max-width: 320px; }

  .whatsapp-float { bottom: 68px; right: 14px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }

  .logos-track { gap: 20px; }
  .logo-item img { height: 30px; }
}

/* ===== Padding fix for sticky CTA ===== */
body { padding-bottom: 0; }
.sticky-cta.visible ~ .site-footer { padding-bottom: 72px; }

/* Hide sticky on desktop */
@media (min-width: 1025px) {
  .sticky-cta { display: none; }
  .whatsapp-float { bottom: 24px; }
}
