/*
Theme Name: AC & Refrigerator Repair Dubai Theme
Theme URI: https://acrefrigeratorrepairdubai.com
Author: Antigravity Team
Description: High-converting, manageable WordPress theme for home appliance repair services across Dubai, Sharjah, and Abu Dhabi with corporate responsive header.
Version: 1.5.0
Text Domain: acrefrigerator
*/

/* CSS Variables & Design System */
:root {
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --primary-glow: rgba(2, 132, 199, 0.4);
  --secondary: #0d9488;
  --accent: #f59e0b;
  --whatsapp: #25d366;
  --whatsapp-hover: #1eb956;
  --dark: #0f172a;
  --dark-surface: #1e293b;
  --light: #f8fafc;
  --light-border: #e2e8f0;
  --text-main: #334155;
  --text-muted: #64748b;
  --radius: 10px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 35px -10px rgba(2, 132, 199, 0.25);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--primary-hover);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

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

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes rainbowBorder {
  0% { border-color: var(--primary); box-shadow: 0 0 15px rgba(2, 132, 199, 0.3); }
  50% { border-color: var(--secondary); box-shadow: 0 0 20px rgba(13, 148, 136, 0.4); }
  100% { border-color: var(--primary); box-shadow: 0 0 15px rgba(2, 132, 199, 0.3); }
}

@keyframes ambientOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ==========================================================================
   ENTIRE HEADER STICKY WRAPPER (PREVENTS SCROLL CLIPPING)
   ========================================================================== */
.header-main-wrapper {
  position: sticky;
  top: 0;
  z-index: 99999;
  width: 100%;
}

body.admin-bar .header-main-wrapper {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .header-main-wrapper {
    top: 46px;
  }
}

/* Top Bar: Clean Single Line */
.top-bar {
  background: #0f172a;
  color: #94a3b8;
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

.top-text-bold {
  color: #ffffff;
  font-weight: 700;
}

.top-text-muted {
  color: #94a3b8;
}

.top-divider {
  color: rgba(255, 255, 255, 0.15);
  font-weight: 300;
}

.top-link {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.top-link:hover {
  color: #ffffff;
}

.top-link-highlight {
  color: #38bdf8;
  font-weight: 700;
}

.top-link-highlight:hover {
  color: #7dd3fc;
}

/* Main Site Header */
.site-header {
  background: #ffffff !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--light-border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  min-height: 68px;
}

/* Logo Alignment */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  overflow: visible;
}

.logo-img {
  height: 46px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.2px;
  margin: 0;
  padding: 0;
}

.logo-brand-subtitle {
  font-size: 0.68rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 1px;
}

/* Navigation Links - Compact Stylish Pills */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-pill {
  color: #1e293b;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 20px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-pill:hover {
  background: rgba(2, 132, 199, 0.08);
  color: var(--primary);
  transform: translateY(-1px);
}

/* Header Dropdown Menu */
.nav-dropdown-item {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.75rem;
  margin-left: 3px;
  transition: transform 0.25s ease;
  display: inline-block;
}

.nav-dropdown-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--light-border);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.15), 0 0 20px rgba(2, 132, 199, 0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.nav-dropdown-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: var(--dark-surface);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  text-decoration: none;
  border-radius: 8px;
  margin: 0 6px;
}

.dropdown-link:hover {
  background: rgba(2, 132, 199, 0.08);
  color: var(--primary);
  transform: translateX(4px);
}

.dropdown-icon {
  font-size: 1.25rem;
}

/* Header Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-call {
  background: #0f172a;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.btn-header-call:hover {
  background: #1e293b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.35);
}

.btn-header-whatsapp {
  background: var(--whatsapp);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  animation: pulseGlow 2.5s infinite;
  transition: all 0.25s ease;
}

.btn-header-whatsapp:hover {
  background: #1eb956;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

/* SECTION 1: ANIMATED HERO SECTION */
.new-hero-section {
  background: radial-gradient(circle at 80% 20%, rgba(2, 132, 199, 0.25) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(13, 148, 136, 0.2) 0%, transparent 50%),
              linear-gradient(135deg, #030712 0%, #0f172a 100%);
  color: #ffffff;
  padding: 90px 0 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-ambient-orb {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 70%);
  top: 10%;
  right: 5%;
  pointer-events: none;
  animation: ambientOrb 10s infinite ease-in-out;
}

.new-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .new-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.new-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #38bdf8;
  margin-bottom: 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.new-hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .new-hero-title {
    font-size: 3.4rem;
  }
}

.gradient-text {
  background: linear-gradient(90deg, #38bdf8, #2dd4bf, #38bdf8);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradientMove 4s linear infinite;
}

.new-hero-desc {
  font-size: 1.12rem;
  color: #94a3b8;
  margin-bottom: 35px;
  line-height: 1.7;
}

.new-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.stats-badges-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-badge-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  animation: float 4s ease-in-out infinite;
}

.stat-badge-box:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-4px);
}

.stat-badge-box:nth-child(2) { animation-delay: 1s; }
.stat-badge-box:nth-child(3) { animation-delay: 2s; }

.stat-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stat-lbl {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Glassmorphism Appliance Widget Card */
.hero-widget-card {
  background: rgba(30, 41, 59, 0.75);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 30px rgba(2, 132, 199, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-widget-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #2dd4bf);
}

.widget-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-title-row h3 {
  font-size: 1.25rem;
  color: #ffffff;
}

.live-avail-tag {
  background: rgba(13, 148, 136, 0.25);
  color: #2dd4bf;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(45, 212, 191, 0.4);
}

.appliance-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.appliance-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 600;
}

.appliance-btn.active, .appliance-btn:hover {
  background: rgba(2, 132, 199, 0.35);
  border-color: #38bdf8;
  color: #ffffff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 5px 15px rgba(2, 132, 199, 0.3);
}

.appliance-btn span {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 4px;
  transition: transform 0.3s ease;
}

.appliance-btn:hover span {
  transform: rotate(10deg) scale(1.15);
}

/* ==========================================================================
   GLOBAL FORM ELEMENTS & CONTROLS STYLING
   ========================================================================== */
.form-group {
  margin-bottom: 20px;
  width: 100%;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: #0f172a;
  margin-bottom: 8px;
}

.form-control,
input[type="text"],
input[type="tel"],
input[type="email"],
select.form-control,
textarea.form-control {
  width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
  padding: 14px 18px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 12px !important;
  font-family: inherit !important;
  font-size: 0.95rem !important;
  color: #0f172a !important;
  background-color: #ffffff !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
  appearance: auto;
}

.form-control:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select.form-control:focus,
textarea.form-control:focus {
  outline: none !important;
  border-color: #0284c7 !important;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15) !important;
  background-color: #ffffff !important;
}

/* Dark Form Controls Inside Hero & Widgets */
.hero-widget-card .form-control,
.hero-widget-card input[type="text"],
.hero-widget-card input[type="tel"],
.hero-widget-card select,
.hero-widget-card textarea {
  background-color: #0f172a !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.hero-widget-card .form-control:focus,
.hero-widget-card input:focus,
.hero-widget-card select:focus,
.hero-widget-card textarea:focus {
  border-color: #38bdf8 !important;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2) !important;
}

/* SECTION GLOBAL STYLING */
.section {
  padding: 85px 0;
  position: relative;
}

.bg-light {
  background-color: var(--light);
}

.bg-dark {
  background-color: var(--dark-surface);
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.section-subtitle::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin: 6px auto 0 auto;
  border-radius: 2px;
}

.section-title {
  font-size: 2.4rem;
  color: var(--dark);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.25;
}

.bg-dark .section-title {
  color: #ffffff;
}

/* SECTION 2: 24/7 RAPID EMERGENCY BANNER */
.emergency-banner-box {
  background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
  border-radius: 24px;
  padding: 45px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.emergency-banner-box:hover {
  transform: translateY(-4px);
}

.emergency-banner-content h2 {
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 8px;
}

/* SECTION 3: SERVICES GRID CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0284c7, #0d9488);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.3);
}

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

.card-price-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(2, 132, 199, 0.12);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .card-price-badge {
  background: var(--primary);
  color: #ffffff;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 22px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(6deg);
}

.service-card h3 {
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 800;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* SECTION 4: WORKFLOW TIMELINE */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.step-card {
  background: #ffffff;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.4rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
  transition: transform 0.3s ease;
}

.step-card:hover .step-num {
  transform: scale(1.1) rotate(-5deg);
}

.step-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* SECTION 5: BRANDS GRID CHIPS */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.brand-chip {
  background: #ffffff;
  border: 1.5px solid var(--light-border);
  padding: 18px 12px;
  border-radius: 14px;
  text-align: center;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.brand-chip:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.2);
}

/* SECTION 6: LOCATIONS MATRIX */
.city-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.city-tab {
  padding: 13px 30px;
  border-radius: 30px;
  background: var(--light);
  color: var(--dark);
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--light-border);
  transition: all 0.3s ease;
}

.city-tab.active, .city-tab:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
  transform: translateY(-2px);
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.loc-tag {
  background: #ffffff;
  border: 1px solid var(--light-border);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.875rem;
  color: var(--text-main);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.loc-tag:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 15px rgba(2, 132, 199, 0.3);
}

.loc-tag:hover span {
  animation: pinBounce 0.5s ease infinite;
}

/* SECTION 7: WHY CHOOSE US CARDS */
.why-card {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px;
  color: #ffffff;
  transition: all 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: #38bdf8;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* SECTION 8: PRICING TABLE CARDS */
.price-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.price-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 34px;
  border: 1.5px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.35s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  border-color: var(--primary);
  animation: rainbowBorder 4s infinite ease-in-out;
  position: relative;
}

.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
}

.price-val {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--dark);
  margin: 15px 0;
}

.price-val span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* SECTION 9: REVIEWS GRID CARDS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.review-card {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.3);
}

.stars-row {
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.6;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #0284c7, #0d9488);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.client-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}

.client-loc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* SECTION 10: FAQ ACCORDION */
.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1.5px solid var(--light-border);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(2, 132, 199, 0.4);
}

.faq-header {
  padding: 22px 28px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.faq-header:hover {
  color: var(--primary);
}

.faq-header::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  font-weight: bold;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.faq-item.active .faq-header::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 28px 22px 28px;
  display: none;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-body {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 75px 0 35px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 45px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 3px;
  background: var(--primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #94a3b8;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
  font-size: 0.875rem;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.18);
  z-index: 999999;
  padding: 10px 14px;
  gap: 10px;
  border-top: 1px solid var(--light-border);
}

.btn-call-sticky {
  flex: 1;
  background: #0f172a;
  color: #ffffff !important;
  padding: 13px 10px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.btn-whatsapp-sticky {
  flex: 1;
  background: linear-gradient(135deg, #25d366 0%, #1eb956 100%);
  color: #ffffff !important;
  padding: 13px 10px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-only-link {
    display: none;
  }
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE ENGINE (< 992px)
   ========================================================================== */
@media (max-width: 991px) {
  body {
    padding-bottom: 70px;
  }

  .hide-mobile {
    display: none !important;
  }

  .top-bar {
    padding: 6px 0;
  }

  .top-bar-inner {
    justify-content: space-between;
  }

  .top-text-muted {
    display: none;
  }

  .logo-img {
    height: 40px;
  }

  .logo-brand-title {
    font-size: 0.98rem;
  }

  .logo-brand-subtitle {
    font-size: 0.6rem;
  }

  .header-inner {
    padding: 10px 0;
    min-height: 60px;
  }

  /* Hamburger Menu Toggle Button */
  .mobile-menu-toggle {
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid var(--light-border);
    color: var(--dark);
    font-size: 1.5rem;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile Navigation Drawer with Internal Touch Scroll */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--light-border);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    padding: 15px 20px 25px 20px;
    display: none;
    z-index: 99999;
    max-height: 75vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.mobile-open {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-pill {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    border-radius: 10px;
    justify-content: space-between;
  }

  .nav-dropdown-item {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: #f8fafc;
    border-radius: 12px;
    padding: 6px 0;
    margin-top: 6px;
    display: none;
  }

  .dropdown-menu.mobile-sub-open {
    display: flex;
  }

  /* Layout Grids Stacking */
  .cards-grid,
  .workflow-grid,
  .price-cards-grid,
  .reviews-grid,
  .contact-main-grid {
    grid-template-columns: 1fr !important;
    gap: 25px;
  }

  .section {
    padding: 55px 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .new-hero-section {
    padding: 45px 0 55px 0;
  }

  .new-hero-title {
    font-size: 2.1rem;
  }

  .new-hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .new-hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-badges-flex {
    flex-direction: column;
    gap: 12px;
  }

  .stat-badge-box {
    width: 100%;
    box-sizing: border-box;
  }

  .hero-widget-card {
    padding: 22px 18px;
  }

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

  .city-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .city-tab {
    flex: 1 1 45%;
    text-align: center;
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .emergency-banner-box {
    flex-direction: column;
    padding: 30px 22px;
    text-align: center;
  }

  .emergency-banner-box > div {
    width: 100%;
  }

  .form-row-2col {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
}

/* Extra Small Phones (< 480px) */
@media (max-width: 480px) {
  .logo-brand-title {
    font-size: 0.85rem;
  }

  .logo-brand-subtitle {
    display: none;
  }

  .new-hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .city-tab {
    flex: 1 1 100%;
  }

  .location-tags {
    gap: 8px;
  }

  .loc-tag {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}
