/* AC Masters UAE - Main Styles */
/* Modern AC Repair Website Design */

/* ========================================
   CSS VARIABLES - COLOR SCHEME
   ======================================== */
:root {
  /* Primary Colors - Cool Blue Theme */
  --primary-color: #0ea5e9;
  --primary-hover: #0284c7;
  --primary-light: #7dd3fc;
  --secondary-color: #06b6d4;
  --accent-color: #f97316;
  --accent-hover: #ea580c;

  /* Neutral Colors */
  --dark-blue: #0c4a6e;
  --dark-text: #1e293b;
  --gray-text: #64748b;
  --light-gray: #94a3b8;
  --bg-light: #f0f9ff;
  --bg-white: #ffffff;
  --bg-ice: #ecfeff;
  --border-color: #e2e8f0;

  /* Gold Accents */
  --gold: #fbbf24;
  --gold-light: #fde68a;

  /* Status Colors */
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Inter', var(--font-sans);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Spacing */
  --container-max: 1200px;
  --section-padding: 80px;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--dark-text);
  line-height: 1.6;
  background: var(--bg-white);
  overflow-x: hidden;
  max-width: 1920px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ========================================
   CONTAINER
   ======================================== */
.ac-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-desc {
  font-size: 18px;
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
}

/* Light variants for dark backgrounds */
.section-head-light .section-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.section-head-light .section-title {
  color: white;
}

.section-head-light .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   FIXED HEADER
   ======================================== */
.ac-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all var(--transition-base);
}

.ac-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 30px;
}

/* Logo */
.ac-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition-base);
}

.ac-logo:hover {
  transform: scale(1.02);
}

.ac-logo-icon {
  filter: drop-shadow(0 2px 4px rgba(14, 165, 233, 0.3));
}

.ac-logo-text {
  display: flex;
  flex-direction: column;
}

.ac-logo-brand {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ac-logo-tagline {


  /* Mobile Menu Open State */
  .ac-header.menu-open .ac-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 30px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .ac-header.menu-open .ac-nav-link {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .ac-header.menu-open .ac-nav-link:last-child {
    border-bottom: none;
  }

  /* Burger Menu Animation */
  .ac-mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .ac-mobile-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .ac-mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  font-size: 12px;
  color: var(--gray-text);
}

/* Navigation */
.ac-nav {
  display: flex;
  gap: 30px;
}

.ac-nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-text);
  position: relative;
  padding: 8px 0;
}

.ac-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width var(--transition-base);
}

.ac-nav-link:hover::after {
  width: 100%;
}

/* Header Actions */
.ac-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ac-blog-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-light);
  transition: all var(--transition-base);
}

.ac-blog-btn:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.ac-blog-btn:hover img {
  transform: scale(1.1);
}

.ac-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
  transition: all var(--transition-base);
}

.ac-phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

/* Mobile Menu */
.ac-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
}

.ac-mobile-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-cool {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  overflow: hidden;
}

/* Decorative Elements */
.hero-frost {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.frost-particle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  animation: float 20s infinite ease-in-out;
}

.frost-1 { top: 10%; left: 5%; animation-delay: 0s; }
.frost-2 { top: 60%; right: 10%; animation-delay: -7s; }
.frost-3 { bottom: 10%; left: 40%; animation-delay: -14s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.frost-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 165, 233, 0.05) 100%);
}

/* Hero Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Main Content */
.hero-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--accent-color), #fb923c);
  color: white;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(249, 115, 22, 0.5); }
}

/* Hero Title */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-title-pre {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title-main {
  font-size: 56px;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-accent {
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-text);
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 550px;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: all var(--transition-base);
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(14, 165, 233, 0.4);
}

.hero-btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.hero-btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

.hero-btn-arrow {
  font-size: 20px;
  transition: transform var(--transition-base);
}

.hero-btn-secondary:hover .hero-btn-arrow {
  transform: translateX(4px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 16px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 14px;
  color: var(--gray-text);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: auto;
}

/* ========================================
   TRUST & CERTIFICATIONS SECTION
   ======================================== */
.trust-proof {
  padding: 60px 0;
  background: linear-gradient(135deg, #fafaf8 0%, #f5f3f0 100%);
}

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

/* Trust Stats */
.trust-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.trust-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust-stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-ice));
  border-radius: 12px;
}

.trust-stat-value {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.trust-stat-text {
  font-size: 14px;
  color: var(--gray-text);
}

/* Trust Certifications */
.trust-certs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trust-cert-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.trust-cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.trust-cert-card:hover::before {
  transform: scaleX(1);
}

.trust-cert-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.trust-cert-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-ice));
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.trust-cert-card:hover .trust-cert-icon {
  transform: translateY(-3px) scale(1.1);
}

.trust-cert-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.trust-cert-desc {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.5;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-vault {
  padding: var(--section-padding) 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-box {
  position: relative;
  padding: 28px 20px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all var(--transition-base);
}

.service-box:hover {
  border-color: var(--primary-color);
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.15);
}

.service-box.service-featured {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--accent-color), #fb923c);
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 12px;
  text-transform: uppercase;
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-ice));
  border-radius: 14px;
  margin-bottom: 16px;
  transition: all var(--transition-base);
}

.service-box:hover .service-icon {
  transform: scale(1.1);
}

.service-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.service-text {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 14px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 13px;
  color: var(--dark-text);
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 14px;
}

/* ========================================
   AC TYPES COMPARISON SECTION
   ======================================== */
.ac-types-guide {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.ac-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ac-type-card {
  position: relative;
  padding: 28px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  overflow: hidden;
}

.ac-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.ac-type-card:hover::before {
  transform: scaleX(1);
}

.ac-type-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.ac-type-card.ac-type-popular {
  border: 2px solid var(--gold);
}

.ac-popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-blue);
  font-size: 11px;
  font-weight: 700;
  border-radius: 12px;
  text-transform: uppercase;
}

.ac-type-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 50%;
  margin: 0 auto 16px;
  transition: transform var(--transition-base);
}

.ac-type-card:hover .ac-type-icon {
  transform: scale(1.1);
}

.ac-type-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 8px;
}

.ac-type-intro {
  font-size: 13px;
  color: var(--gray-text);
  text-align: center;
  margin-bottom: 16px;
}

.ac-type-pros, .ac-type-cons {
  margin-bottom: 16px;
}

.ac-pro-item, .ac-con-item {
  font-size: 13px;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.ac-pro-item {
  color: var(--success);
}



.ac-con-item {
  color: var(--error);
}

.ac-type-ratings {
  margin-bottom: 16px;
}

.ac-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ac-rating-label {
  font-size: 12px;
  color: var(--gray-text);
  min-width: 70px;
}

.ac-rating-bar {
  flex: 1;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}

.ac-rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--gold));
  border-radius: 3px;
  transition: width 1s ease;
}

.ac-type-ideal {
  font-size: 12px;
  color: var(--dark-text);
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  font-weight: 600;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose {
  padding: var(--section-padding) 0;
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 30px 24px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all var(--transition-base);
}

.why-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.15);
}

.why-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: all var(--transition-base);
}

.why-card:hover .why-icon {
  transform: scale(1.1);
}

.why-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.why-text {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ========================================
   BEFORE/AFTER GALLERY SECTION
   ======================================== */
.transform-gallery {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.project-images {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  cursor: pointer;
}

.project-before {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.project-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 65% 0 0);
  transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card:hover .project-after {
  clip-path: inset(0 0 0 0);
}

.project-label {
  position: absolute;
  top: 12px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  text-transform: uppercase;
  z-index: 2;
}

.project-label-before {
  right: 12px;
  background: rgba(30, 41, 59, 0.9);
  color: white;
}

.project-label-after {
  left: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-blue);
}

.project-divider {
  position: absolute;
  top: 0;
  left: 35%;
  width: 4px;
  height: 100%;
  background: white;
  z-index: 10;
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.project-card:hover .project-divider {
  left: 100%;
}

.project-divider-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 700;
}

.project-divider-icon::before {
  content: '⟷';
  display: block;
}

.project-info {
  padding: 24px;
}

.project-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.project-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.project-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-text);
}

.project-meta-item img {
  filter: sepia(100%) hue-rotate(170deg) saturate(300%);
  opacity: 0.7;
}

.project-desc {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ========================================
   UAE COVERAGE SECTION (GEOGRAPHY)
   ======================================== */
.dubai-coverage {
  padding: var(--section-padding) 0;
  background: white;
}

.uae-coverage-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.uae-map {
  position: sticky;
  top: 120px;
  background: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.uae-map img {
  width: 100%;
  height: auto;
  display: block;
}

.emirates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.emirate-card {
  padding: 24px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  transition: all var(--transition-base);
  cursor: pointer;
}

.emirate-card:hover {
  border-color: var(--primary-color);
  background: var(--bg-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.15);
}

.emirate-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.emirate-cities {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

.areas-cta {
  text-align: center;
}

.areas-cta-btn {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
  transition: all var(--transition-base);
}

.areas-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

/* ========================================
   WORK PROCESS SECTION
   ======================================== */
.process-flow {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.process-num {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
  z-index: 2;
}

.process-content {
  flex: 1;
  padding: 16px 24px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.process-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.process-detail {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */
.portfolio-showcase {
  padding: var(--section-padding) 0;
  background: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.portfolio-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-details {
  padding: 24px;
}

.portfolio-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.portfolio-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.portfolio-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--gray-text);
}

.portfolio-description {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ========================================
   PRICING SECTION
   ======================================== */
/* ========================================
   PRICING MODERN SECTION
   ======================================== */
.pricing-modern {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.pricing-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 30px 24px;
  border: 2px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
}

/* Popular Card */
.pricing-card.popular {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.03) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.pricing-card.popular:hover {
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.25);
}

/* Featured Card */
.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.03) 0%, rgba(234, 179, 8, 0.05) 100%);
}

.pricing-card.featured:hover {
  box-shadow: 0 12px 40px rgba(201, 168, 106, 0.25);
}

/* Emergency Card */
.pricing-card.emergency {
  border-color: #ef4444;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.03) 0%, rgba(220, 38, 38, 0.05) 100%);
}

.pricing-card.emergency:hover {
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.25);
}

/* Badges */
.pricing-popular-badge,
.pricing-featured-badge,
.pricing-emergency-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-popular-badge {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.pricing-featured-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-blue);
  box-shadow: 0 4px 12px rgba(201, 168, 106, 0.3);
}

.pricing-emergency-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Price */
.pricing-price {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
}

.pricing-card.featured .pricing-price {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card.emergency .pricing-price {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Title & Description */
.pricing-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

/* Features List */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--dark-text);
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.pricing-card.featured .pricing-features li::before {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-blue);
}

.pricing-card.emergency .pricing-features li::before {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Info Box */
.pricing-info-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 16px;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.pricing-info-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.pricing-info-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.pricing-info-content p {
  font-size: 14px;
  color: var(--dark-text);
  line-height: 1.6;
  margin: 0;
}

/* CTA Box */
.pricing-cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pricing-cta-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.pricing-cta-text {
  font-size: 15px;
  color: var(--gray-text);
  margin-bottom: 24px;
}

.pricing-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
  transition: all var(--transition-base);
}

.pricing-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.4);
}

.pricing-cta-btn img {
  transition: transform var(--transition-base);
}

.pricing-cta-btn:hover img {
  transform: scale(1.2);
}

/* ========================================
   WARRANTY & AFTER-SERVICE SECTION
   ======================================== */
.warranty-shield {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #2c1810 0%, #3d2414 100%);
  position: relative;
  overflow: hidden;
}

.warranty-glow-overlay {
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.1) 0%, transparent 70%);
  animation: warrantyGlow 20s infinite;
}

@keyframes warrantyGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10%, 10%) scale(1.1); }
}

.warranty-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.warranty-intro {
  font-size: 16px;
  color: #e8e0d5;
  line-height: 1.7;
  margin-bottom: 30px;
}

.warranty-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.warranty-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 106, 0.2);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.warranty-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
  border-color: rgba(201, 168, 106, 0.4);
}

.warranty-feature-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c9a86a, #dbc087);
  border-radius: 50%;
  transition: transform var(--transition-base);
}

.warranty-feature:hover .warranty-feature-icon {
  transform: scale(1.1);
}

.warranty-feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #c9a86a;
  margin-bottom: 6px;
}

.warranty-feature-desc {
  font-size: 14px;
  color: #e8e0d5;
  line-height: 1.6;
}

/* Warranty Certificate */
.warranty-certificate {
  position: sticky;
  top: 120px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #c9a86a;
  border-radius: 16px;
  backdrop-filter: blur(20px);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.warranty-cert-seal {
  margin: 0 auto 20px;
  width: 100px;
  height: 100px;
}

.warranty-seal-rotate {
  animation: rotate360 20s linear infinite;
}

@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.warranty-cert-title {
  font-size: 22px;
  font-weight: 800;
  color: #c9a86a;
  margin-bottom: 24px;
  line-height: 1.3;
}

.warranty-cert-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.warranty-cert-item {
  padding: 10px;
  background: rgba(201, 168, 106, 0.1);
  border-radius: 8px;
  font-size: 14px;
  color: #e8e0d5;
  font-weight: 500;
}

/* ========================================
   COMMON PROBLEMS SECTION
   ======================================== */
.problems-solver {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.problem-card {
  position: relative;
  padding: 28px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--error), var(--accent-color));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.problem-card:hover::before {
  transform: scaleX(1);
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.problem-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-size: 14px;
  font-weight: 800;
  border-radius: 50%;
}

.problem-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fee2e2;
  border-radius: 50%;
  margin: 0 auto 16px;
  transition: transform var(--transition-base);
}

.problem-card:hover .problem-icon {
  transform: scale(1.1);
}

.problem-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
  text-align: center;
}

.problem-cause, .problem-solution {
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.problem-cause strong {
  color: var(--error);
}

.problem-solution strong {
  color: var(--success);
}

.problem-btn {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition-base);
}

.problem-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.problems-cta-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border: 2px solid var(--gold);
  border-radius: 16px;
  text-align: center;
}

.problems-cta-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.problems-cta-text {
  font-size: 16px;
  color: var(--gray-text);
  margin-bottom: 24px;
}

.problems-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--accent-color), #fb923c);
  color: white;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
  transition: all var(--transition-base);
}

.problems-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-story {
  padding: var(--section-padding) 0;
  background: white;
}

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

.about-image img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  gap: 14px;
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 50%;
}

.about-feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.about-feature-text p {
  font-size: 13px;
  color: var(--gray-text);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-social {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.review-card {
  padding: 28px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.review-header {
  margin-bottom: 16px;
}

.review-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.review-service {
  font-size: 13px;
  color: var(--primary-color);
  font-weight: 600;
}

.review-comment {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 16px;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.review-rating {
  color: var(--gold);
  font-size: 16px;
}

.review-date {
  font-size: 12px;
  color: var(--light-gray);
}

.reviews-cta {
  text-align: center;
}

.reviews-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: all var(--transition-base);
}

.reviews-cta-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* ========================================
   BLOG/GUIDES SECTION
   ======================================== */
.guides-hub {
  padding: var(--section-padding) 0;
  background: white;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.blog-preview-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.blog-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.blog-preview-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-preview-card:hover .blog-preview-image img {
  transform: scale(1.1);
}

.blog-preview-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  background: white;
  color: var(--dark-blue);
  font-size: 11px;
  font-weight: 700;
  border-radius: 8px;
  text-transform: uppercase;
}

.blog-cat-guide { color: var(--primary-color); }
.blog-cat-tips { color: var(--accent-color); }
.blog-cat-maintenance { color: var(--success); }
.blog-cat-buying { color: var(--warning); }
.blog-cat-energy { color: #8b5cf6; }
.blog-cat-troubleshoot { color: #ec4899; }

.blog-preview-content {
  padding: 24px;
}

.blog-preview-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-preview-excerpt {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 14px;
}

.blog-preview-link {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition-base);
}

.blog-preview-link:hover {
  color: var(--primary-hover);
}

.blog-preview-cta {
  text-align: center;
}

.blog-preview-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: all var(--transition-base);
}

.blog-preview-cta-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-answers {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-blue);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-base);
}

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

.faq-icon {
  font-size: 24px;
  color: var(--primary-color);
  transition: transform var(--transition-base);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-connect {
  padding: var(--section-padding) 0;
  background: white;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 6px;
}

.contact-info-subtitle {
  font-size: 15px;
  color: var(--gray-text);
  margin-bottom: 30px;
}

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

.contact-detail {
  display: flex;
  gap: 16px;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 50%;
}

.contact-detail-label {
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-blue);
}

.contact-detail-value:hover {
  color: var(--primary-color);
}

.contact-trust {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.contact-trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: 12px;
  text-align: center;
}

.contact-trust-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.3;
}

/* Contact Form */
.dw-contact-wow-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px;
  background: var(--bg-light);
  border-radius: 16px;
}

.cn-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.dw-contact-wow-input-wrap {
  position: relative;
}

.dw-contact-wow-input,
.dw-contact-wow-textarea {
  width: 100%;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(14, 165, 233, 0.2);
  border-radius: 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark-text);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.05);
}

.dw-contact-wow-input::placeholder,
.dw-contact-wow-textarea::placeholder {
  color: rgba(51, 65, 85, 0.5);
}

.dw-contact-wow-input:focus,
.dw-contact-wow-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.2), 0 0 0 4px rgba(14, 165, 233, 0.1);
  transform: translateY(-2px);
}

.dw-contact-wow-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.dcr-error {
  display: none;
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(220, 38, 38, 0.1);
  border-left: 3px solid #dc2626;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #dc2626;
}

.dw-contact-wow-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dw-contact-wow-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.dw-contact-wow-submit:hover::before {
  left: 100%;
}

.dw-contact-wow-submit:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(14, 165, 233, 0.4);
}

.dw-contact-wow-submit:active {
  transform: translateY(-2px) scale(0.98);
}

.dw-contact-wow-submit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.dw-contact-wow-submit-icon img {
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.dw-contact-wow-submit:hover .dw-contact-wow-submit-icon img {
  transform: translateX(3px);
}

.dw-contact-wow-submit-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.dw-contact-wow-submit:hover .dw-contact-wow-submit-arrow {
  transform: translateX(5px);
}

.cn-success {
  display: none;
  margin-top: 20px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
  border: 2px solid #22c55e;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #16a34a;
  text-align: center;
  animation: successPulse 0.6s ease;
}

@keyframes successPulse {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/* ========================================
   SEO EXPERT SECTION
   ======================================== */
.seo-expert {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, #fafaf8 0%, #ffffff 50%, #fafaf8 100%);
  position: relative;
  overflow: hidden;
}

.seo-expert::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.03), transparent 70%);
  pointer-events: none;
}

.seo-expert-header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.seo-expert-label {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(59, 130, 246, 0.15));
  border: 2px solid rgba(14, 165, 233, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.seo-expert-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 24px;
  line-height: 1.2;
}

.seo-expert-intro {
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.7;
}

.seo-expert-intro strong {
  color: var(--dark-text);
  font-weight: 700;
}

.seo-expert-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.seo-expert-article {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.seo-expert-article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px 0 0 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.seo-expert-article:hover::before {
  opacity: 1;
}

.seo-expert-article:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 40px rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.2);
}

.seo-expert-article-highlight {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.02) 0%, rgba(59, 130, 246, 0.03) 100%);
  border-color: rgba(14, 165, 233, 0.15);
}

.seo-expert-number {
  position: absolute;
  top: -15px;
  left: 40px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
  z-index: 2;
}

.seo-expert-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 20px;
  line-height: 1.3;
  padding-top: 10px;
}

.seo-expert-content p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.seo-expert-content p:last-child {
  margin-bottom: 0;
}

.seo-expert-content strong {
  color: var(--dark-text);
  font-weight: 700;
}

.seo-expert-highlight-box {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(245, 158, 11, 0.12));
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  margin: 20px 0;
  font-size: 15px;
  color: var(--dark-text);
  line-height: 1.7;
}

.seo-expert-highlight-box strong {
  display: block;
  color: #d97706;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 16px;
}

.seo-expert-savings {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(16, 185, 129, 0.12));
  border-left-color: #10b981;
}

.seo-expert-savings strong {
  color: #059669;
}

.seo-expert-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.seo-expert-price-item {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(59, 130, 246, 0.08));
  border: 2px solid rgba(14, 165, 233, 0.2);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.seo-expert-price-item:hover {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(59, 130, 246, 0.15));
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.2);
}

.seo-expert-price-value {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.seo-expert-price-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.3;
}
/* ========================================
   FIXED CALL BUTTON
   ======================================== */
.fixed-call-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(14, 165, 233, 0.4);
  z-index: 9999;
  transition: all var(--transition-base);
  animation: pulse 2s infinite;
}

.fixed-call-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(14, 165, 233, 0.5);
}

.fixed-call-button img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 5px 25px rgba(14, 165, 233, 0.4);
  }
  50% {
    box-shadow: 0 5px 35px rgba(14, 165, 233, 0.6), 0 0 0 15px rgba(14, 165, 233, 0.1);
  }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  :root {
    --section-padding: 60px;
  }

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

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

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hero-title-main {
    font-size: 48px;
  }
/* SEO Expert Section - Tablet */
  .seo-expert-header {
    margin: 0 auto 50px;
  }

  .seo-expert-title {
    font-size: 32px;
  }

  .seo-expert-intro {
    font-size: 17px;
  }

  .seo-expert-article {
    padding: 35px;
  }

  .seo-expert-subtitle {
    font-size: 22px;
  }

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

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --section-padding: 50px;
  }

  /* Header */
  .ac-nav {
    display: none;
  }

  .ac-mobile-menu {
    display: flex;
  }

  .ac-phone-btn {
    display: none;
  }

  .ac-header-actions {
    margin-left: auto;
  }

  .ac-logo-tagline {
    display: none;
  }

  .ac-header.menu-open .ac-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 30px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .ac-header.menu-open .ac-nav-link {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .ac-header.menu-open .ac-nav-link:last-child {
    border-bottom: none;
  }

  /* Burger Menu Animation */
  .ac-mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .ac-mobile-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .ac-mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Hero */
  .hero-cool {
    padding: 120px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title-main {
    font-size: 40px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-emergency-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero-emergency-badge img {
    width: 14px;
    height: 14px;
  }

  .hero-title-accent {
    font-size: 20px;
  }

  .hero-subtitle {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 15px;
  }

  .hero-stat-num {
    font-size: 28px;
  }

  .hero-stat-label {
    font-size: 13px;
  }

  .frost-particle {
    width: 200px;
    height: 200px;
  }

  /* Sections */
  .section-title {
    font-size: 28px;
  }

  .section-desc {
    font-size: 16px;
  }

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

  .trust-proof {
    padding: 50px 0;
  }

  .trust-certs {
    grid-template-columns: 1fr;
  }

  .trust-stat-card {
    padding: 16px;
  }

  .trust-stat-icon {
    width: 50px;
    height: 50px;
  }

  .trust-stat-icon img {
    width: 32px;
    height: 32px;
  }

  .trust-stat-value {
    font-size: 32px;
  }

  .trust-cert-card {
    padding: 16px;
  }

  .trust-cert-icon {
    width: 44px;
    height: 44px;
  }

  .trust-cert-icon img {
    width: 32px;
    height: 32px;
  }

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

  .service-box {
    padding: 24px 18px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
  }

  .service-icon img {
    width: 40px;
    height: 40px;
  }

  .service-name {
    font-size: 17px;
  }

  .service-text {
    font-size: 13px;
  }

  .service-features li {
    font-size: 12px;
  }

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

  .ac-type-card {
    padding: 24px 18px;
  }

  .ac-type-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 14px;
  }

  .ac-type-icon img {
    width: 50px;
    height: 50px;
  }

  .ac-type-title {
    font-size: 18px;
  }

  .ac-type-intro {
    font-size: 12px;
  }

  .ac-pro-item, .ac-con-item {
    font-size: 12px;
  }

  .ac-rating-label {
    min-width: 60px;
    font-size: 11px;
  }

  .ac-type-ideal {
    font-size: 11px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-card {
    padding: 26px 20px;
  }

  .why-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
  }

  .why-icon img {
    width: 44px;
    height: 44px;
  }

  .why-title {
    font-size: 18px;
  }

  .why-text {
    font-size: 14px;
gap: 24px;  }  .why-card {
    padding: 26px 20px;  }  .why-icon {    width: 70px;    height: 70px;    margin-bottom: 16px;  }  .why-icon img {    width: 44px;    height: 44px;  }  .why-title {
    font-size: 18px;  }  .why-text {
    font-size: 14px;  }

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

  .project-images {
    height: 220px;
  }

  .project-after {
    clip-path: inset(0 60% 0 0);
  }

  .project-divider {
    left: 40%;
  }

  .project-divider-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .uae-coverage-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .uae-map {
    position: relative;
    top: 0;
    order: -1;
  }

  .emirates-grid {
    gap: 16px;
  }

  .emirate-card {
    padding: 20px;
  }

  .emirate-name {
    font-size: 18px;
  }

  .emirate-cities {
    font-size: 13px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .pricing-price {
    font-size: 24px;
  }

  .pricing-cta-box {
    padding: 30px 20px;
  }

  .pricing-cta-title {
    font-size: 20px;
  }

  .pricing-info-box {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

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

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

  .problems-cta-box {
    padding: 24px 20px;
    margin-top: 30px;
  }

  .problems-cta-heading {
    font-size: 20px;
  }

  .problems-cta-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .problems-cta-btn {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 15px;
  }

  .about-features {
    gap: 16px;
    margin-top: 24px;
  }

  .about-feature {
    gap: 12px;
  }

  .about-feature-icon {
    width: 46px;
    height: 46px;
  }

  .about-feature-icon img {
    width: 36px;
    height: 36px;
  }

  .about-feature-text h4 {
    font-size: 15px;
  }

  .about-feature-text p {
    font-size: 12px;
  }

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

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

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

  .contact-info-title {
    font-size: 24px;
  }

  .contact-info-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .contact-details {
    gap: 18px;
    margin-bottom: 24px;
  }

  .contact-detail {
    gap: 14px;
  }

  .contact-detail-icon {
    width: 46px;
    height: 46px;
  }

  .contact-detail-icon img {
    width: 20px;
    height: 20px;
  }

  .contact-detail-label {
    font-size: 12px;
  }

  .contact-detail-value {
    font-size: 16px;
  }

  .contact-trust {
    gap: 16px;
  }

  .contact-trust-item {
    padding: 14px;
  }

  .contact-trust-item img {
    width: 28px;
    height: 28px;
  }

  .contact-trust-item span {
    font-size: 11px;
  }

  .cn-form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dw-contact-wow-form {
    padding: 24px;
    gap: 18px;
  }

  .dw-contact-wow-input,
  .dw-contact-wow-textarea {
    padding: 16px 18px;
    font-size: 14px;
  }

  .dw-contact-wow-submit {
    padding: 16px 32px;
    font-size: 16px;
  }

  .warranty-content {
    grid-template-columns: 1fr;
  }

  .seo-expert-title {
    font-size: 28px;
  }

  .seo-expert-intro {
    font-size: 16px;
  }

  .seo-expert-article {
    padding: 30px 24px;
  }

  .seo-expert-number {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .seo-expert-subtitle {
    font-size: 20px;
  }

  .seo-expert-content p {
    font-size: 15px;
  }

  .seo-expert-price-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .seo-expert-price-value {
    font-size: 17px;
  }

  .seo-expert-price-label {
    font-size: 12px;
  }


  .seo-expert-header {
    margin: 0 auto 40px;
  }

  .seo-expert-highlight-box {
    padding: 18px 20px;
    font-size: 14px;
  }

  .seo-expert-highlight-box strong {
    font-size: 15px;
  }

  .seo-expert-price-item {
    padding: 18px 14px;
  }
  .fixed-call-button {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .fixed-call-button img {
    width: 24px;
    height: 24px;
  }
}


/* Very small mobile (max-width: 375px) */

/* Medium mobile (max-width: 425px) */

/* Medium mobile (max-width: 425px) */
@media (max-width: 500px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .ac-types-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 425px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .ac-types-grid {
    grid-template-columns: 1fr;
  }

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

  /* SEO Expert Section - Medium Mobile */
  .seo-expert-article:hover {
    transform: none;
  }

  .seo-expert-number {
    left: 20px;
  }

  .seo-expert-grid {
    gap: 24px;
  }
}


@media (max-width: 375px) {
  .ac-container {
    padding: 0 15px;
  }

  /* Header adjustments for very small screens */
  .ac-logo-icon {
    width: 36px;
    height: 36px;
  }

  .ac-logo-brand {
    font-size: 16px;
  }

  .ac-header-wrap {
    padding: 12px 0;
    gap: 8px;
  }

  .ac-header-actions {
    margin-left: auto;
    gap: 8px;
  }

  .ac-blog-btn {
    width: 36px;
    height: 36px;
  }

  .hero-title-main {
    font-size: 32px;
  }

  .hero-cool {
    padding: 80px 0 40px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-title-accent {
    font-size: 18px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-emergency-badge {
    font-size: 11px;
    padding: 5px 10px;
  }

  .hero-emergency-badge img {
    width: 12px;
    height: 12px;
  }

  .hero-btn {
    padding: 11px 20px;
    font-size: 14px;
  }

  .hero-stats {
    gap: 15px;
  }

  .hero-stat-num {
    font-size: 24px;
  }

  .hero-stat-label {
    font-size: 12px;
  }

  .frost-particle {
    width: 150px;
    height: 150px;
  }

  .trust-proof {
    padding: 40px 0;
  }

  .trust-grid {
    gap: 30px;
  }

  .trust-stats {
    gap: 16px;
  }

  .trust-stat-card {
    padding: 14px;
    gap: 12px;
  }

  .trust-stat-icon {
    width: 44px;
    height: 44px;
  }

  .trust-stat-icon img {
    width: 28px;
    height: 28px;
  }

  .trust-stat-value {
    font-size: 28px;
  }

  .trust-stat-text {
    font-size: 13px;
  }

  .trust-certs {
    gap: 16px;
  }

  .trust-cert-card {
    padding: 14px;
    gap: 12px;
  }

  .trust-cert-icon {
    width: 40px;
    height: 40px;
  }

  .trust-cert-icon img {
    width: 28px;
    height: 28px;
  }

  .trust-cert-title {
    font-size: 15px;
  }

  .trust-cert-desc {
    font-size: 12px;
  }

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

  .service-box {
    padding: 20px 16px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
  }

  .service-icon img {
    width: 36px;
    height: 36px;
  }

  .service-name {
    font-size: 16px;
  }

  .service-text {
    font-size: 13px;
  }

  .service-features {
    gap: 6px;
  }

  .service-features li {
    font-size: 12px;
  }

  .service-badge {
    font-size: 10px;
    padding: 3px 10px;
  }

  .ac-types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ac-type-card {
    padding: 20px 16px;
  }

  .ac-type-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }

  .ac-type-icon img {
    width: 48px;
    height: 48px;
  }

  .ac-type-title {
    font-size: 17px;
  }

  .ac-type-intro {
    font-size: 12px;
  }

  .ac-pro-item, .ac-con-item {
    font-size: 12px;
    padding: 5px 0;
  }

  .ac-rating-row {
    gap: 10px;
  }

  .why-grid {
    gap: 20px;
  }

  .why-card {
    padding: 22px 18px;
  }

  .why-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
  }

  .why-icon img {
    width: 42px;
    height: 42px;
  }

  .why-title {
    font-size: 17px;
  }

  .why-text {
    font-size: 13px;
  }

  .problems-cta-box {
    padding: 20px 15px;
  }

  .problems-cta-heading {
    font-size: 18px;
  }

  .problems-cta-text {
    font-size: 13px;
  }

  .problems-cta-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .about-layout {
    gap: 30px;
  }

  .about-title {
    font-size: 26px;
  }

  .about-text {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
  }

  .about-feature {
    gap: 10px;
  }

  .about-feature-icon {
    width: 42px;
    height: 42px;
  }

  .about-feature-icon img {
    width: 32px;
    height: 32px;
  }

  .about-feature-text h4 {
    font-size: 14px;
  }

  .about-feature-text p {
    font-size: 12px;
  }

  .contact-layout {
    gap: 30px;
  }

  .contact-info-title {
    font-size: 22px;
  }

  .contact-info-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .contact-details {
    gap: 16px;
    margin-bottom: 20px;
  }

  .contact-detail {
    gap: 12px;
  }

  .contact-detail-icon {
    width: 42px;
    height: 42px;
  }

  .contact-detail-icon img {
    width: 18px;
    height: 18px;
  }

  .contact-detail-label {
    font-size: 11px;
  }

  .contact-detail-value {
    font-size: 15px;
  }

  .contact-trust {
    gap: 12px;
    flex-wrap: wrap;
  }

  .contact-trust-item {
    padding: 12px;
    flex: 1 1 calc(50% - 6px);
    min-width: 120px;
  }

  .contact-trust-item img {
    width: 26px;
    height: 26px;
  }

  .contact-trust-item span {
    font-size: 10px;
  }

  .dw-contact-wow-form {
    padding: 20px;
    gap: 16px;
  }

  .dw-contact-wow-input,
  .dw-contact-wow-textarea {
    padding: 14px 16px;
    font-size: 13px;
  }

  .dw-contact-wow-submit {
    padding: 14px 28px;
    font-size: 15px;
  }

  .ac-rating-label {
    min-width: 55px;
    font-size: 11px;
  }

  .ac-rating-bar {
    height: 5px;
  }

  .ac-type-ideal {
    font-size: 11px;
  }

  .ac-popular-badge {
    font-size: 10px;
    padding: 4px 12px;
  }

  .section-title {
    font-size: 24px;
  }

  .uae-coverage-wrapper {
    gap: 20px;
  }

  .emirate-card {
    padding: 16px;
  }

  .emirate-name {
    font-size: 16px;
  }

  .seo-expert-header {
    margin: 0 auto 30px;
  }

  .seo-expert-label {
    padding: 6px 16px;
    font-size: 11px;
  }

  .seo-expert-title {
    font-size: 24px;
  }

  .seo-expert-intro {
    font-size: 15px;
  }

  .seo-expert-article {
    padding: 24px;
    border-radius: 16px;
  }

  .seo-expert-number {
    width: 40px;
    height: 40px;
    font-size: 15px;
    left: 24px;
    top: -12px;
  }

  .seo-expert-subtitle {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .seo-expert-content p {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .seo-expert-highlight-box {
    padding: 16px 18px;
    font-size: 13px;
  }

  .seo-expert-highlight-box strong {
    font-size: 14px;
  }

  .seo-expert-price-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .seo-expert-price-item {
    padding: 16px 12px;
  }

  .seo-expert-price-value {
    font-size: 17px;
  }

  .seo-expert-price-label {
    font-size: 11px;
  }
}
