/* ============================================
   AHAD COOLING v3.0 — PREMIUM STYLESHEET
   Arabic RTL · 3D Effects · Lead Generation
   Mobile-First · Ultra-Modern Design
   ============================================ */

:root {
  --primary: #0D3B6E;
  --primary-light: #1565C0;
  --primary-dark: #082952;
  --secondary: #2196F3;
  --secondary-light: #64B5F6;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --success: #25D366;
  --danger: #EF4444;
  --dark: #0F172A;
  --dark-light: #1E293B;
  --light: #F8FAFC;
  --lighter: #EFF6FF;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.14);
  --shadow-3d: 0 20px 60px rgba(13,59,110,0.15), 0 8px 20px rgba(13,59,110,0.1);
  --shadow-glow: 0 0 30px rgba(33,150,243,0.2);
  --glass: rgba(255,255,255,0.85);
  --glass-dark: rgba(15,23,42,0.75);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   BASE & TYPOGRAPHY
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Tajawal', 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: var(--gray-700);
  background: var(--white);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cairo', 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark);
}
h1 { font-size: clamp(1.75rem, 4.5vw, 3.25rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }
a { color: var(--secondary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }
p { margin-bottom: 0.75rem; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 2.5rem 0; }
.text-center { text-align: center; }
.grid { display: grid; gap: 1.75rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .container { padding: 0 1rem; }
}

/* ============================================
   TOP INFO BAR
   ============================================ */
.top-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 0.65rem 0;
  font-size: 0.85rem;
  position: relative;
  z-index: 1000;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.top-bar-right a {
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.top-bar-right a:hover { color: var(--accent); }
.top-bar-right i { font-size: 0.8rem; }
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.top-bar-left a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  transition: var(--transition);
}
.top-bar-left a:hover { background: var(--accent); color: var(--dark); transform: scale(1.15); }

@media (max-width: 767px) {
  .top-bar-left { display: none; }
  .top-bar .container { justify-content: center; }
  .top-bar-right { gap: 0.75rem; font-size: 0.75rem; }
  .top-bar-right a span { display: none; }
}

/* ============================================
   NAVBAR (Glassmorphism)
   ============================================ */
.navbar {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.98);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo svg { height: 44px; width: auto; transition: transform 0.3s ease; }
.logo:hover svg { transform: rotate(-8deg) scale(1.05); }
.logo-text {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
  line-height: 1.2;
}
.logo-text small {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--gray-500);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  display: block;
  padding: 1rem 1.1rem;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--secondary); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  border-radius: 3px;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Nav CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(33,150,243,0.3);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13,59,110,0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 100;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 300px; height: 100vh;
  background: var(--white);
  z-index: 10000;
  padding: 5rem 1.5rem 2rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.mobile-menu.open { right: 0; }
.mobile-menu .close-menu {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gray-100);
  border: none;
  font-size: 1.2rem;
  color: var(--gray-600);
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.mobile-menu .close-menu:hover { background: var(--danger); color: var(--white); }
.mobile-menu a {
  display: block;
  color: var(--gray-700);
  padding: 0.85rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--secondary); padding-right: 0.5rem; }
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.mobile-overlay.show { opacity: 1; visibility: visible; }

@media (max-width: 991px) {
  .hamburger { display: flex; }
  .nav-links, .nav-cta { display: none; }
}

/* ============================================
   HERO (Cinematic with Parallax + 3D)
   ============================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s ease;
  will-change: transform;
  animation: hero-zoom 20s ease alternate infinite;
}
@keyframes hero-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,59,110,0.88), rgba(15,23,42,0.7));
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  color: var(--accent);
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: badge-glow 3s ease infinite;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
  50% { box-shadow: 0 0 20px 4px rgba(245,158,11,0.15); }
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--secondary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Hero Floating Image (right side) */
.hero-visual {
  position: absolute;
  left: 5%;
  bottom: 0;
  width: 40%;
  max-width: 500px;
  z-index: 2;
  animation: hero-float 6s ease-in-out infinite;
}
.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  border-radius: var(--radius-lg);
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

/* Hero particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

@media (max-width: 991px) {
  .hero-visual { display: none; }
}
@media (max-width: 767px) {
  .hero { min-height: 500px; padding: 2rem 0; }
  .hero h1 { font-size: 1.6rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .hero { min-height: 450px; }
  .hero h1 { font-size: 1.4rem; }
}

/* ============================================
   APPOINTMENT BAR (3D Floating)
   ============================================ */
.appointment-bar {
  background: transparent;
  padding: 0;
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}
.appointment-inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-3d);
  padding: 1.75rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}
.appointment-inner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(33,150,243,0.06), transparent 70%);
  pointer-events: none;
}
.appointment-inner h3 {
  white-space: nowrap;
  font-size: 1rem;
  color: var(--dark);
}
.appointment-fields {
  display: flex;
  gap: 0.75rem;
  flex: 1;
  flex-wrap: wrap;
}
.appointment-fields input,
.appointment-fields select {
  flex: 1;
  min-width: 140px;
  padding: 0.7rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--gray-700);
  background: var(--gray-50);
  transition: var(--transition);
  direction: rtl;
}
.appointment-fields input:focus,
.appointment-fields select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(33,150,243,0.1);
  background: var(--white);
}
.appointment-bar .btn-book {
  background: linear-gradient(135deg, var(--danger), #DC2626);
  color: var(--white);
  border: none;
  padding: 0.7rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(239,68,68,0.3);
}
.appointment-bar .btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239,68,68,0.4);
}
.free-consult {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(33,150,243,0.25);
}
.free-consult:hover { color: var(--white); transform: translateY(-2px); }
.free-consult .fc-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  animation: phone-ring 2s ease infinite;
}
@keyframes phone-ring {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(-12deg); }
  20% { transform: rotate(12deg); }
  30% { transform: rotate(-8deg); }
  40% { transform: rotate(8deg); }
  50% { transform: rotate(0); }
}
.free-consult .fc-text { font-size: 0.72rem; opacity: 0.9; }
.free-consult .fc-phone { font-weight: 700; font-size: 0.95rem; direction: ltr; }

@media (max-width: 991px) {
  .appointment-inner { flex-direction: column; align-items: stretch; }
  .free-consult { justify-content: center; }
}
@media (max-width: 767px) {
  .appointment-bar { margin-top: -1.5rem; padding: 0 0.5rem; }
  .appointment-inner { padding: 1.25rem; border-radius: var(--radius-lg); }
  .appointment-fields { flex-direction: column; }
  .appointment-fields input,
  .appointment-fields select { min-width: 100%; }
}

/* ============================================
   BUTTONS (3D with gradient + glow)
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.btn:hover::before { left: 100%; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(33,150,243,0.3);
}
.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(33,150,243,0.4);
  color: var(--white);
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(245,158,11,0.3);
}
.btn-accent:hover {
  box-shadow: 0 8px 30px rgba(245,158,11,0.4);
  color: var(--dark);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  color: var(--white);
}
.btn-outline-white {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

@media (max-width: 767px) {
  .btn-lg { padding: 0.85rem 1.75rem; font-size: 0.95rem; }
}

/* ============================================
   SECTION HEADERS (with animated underline)
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--lighter);
  color: var(--secondary);
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(33,150,243,0.12);
}
.section-title { margin-bottom: 0.75rem; }
.section-desc {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.title-bar {
  display: block;
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 4px;
  margin: 1rem auto 0;
  position: relative;
}
.title-bar::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: var(--secondary);
  border-radius: 50%;
  top: -3px;
  animation: bar-dot 3s ease infinite;
}
@keyframes bar-dot {
  0%, 100% { right: 0; }
  50% { right: 50px; }
}

/* ============================================
   SERVICE CARDS (3D Hover + Glow)
   ============================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  perspective: 1000px;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: var(--shadow-3d);
  border-color: transparent;
}
.service-card .s-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--lighter), rgba(33,150,243,0.08));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--secondary);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.service-card:hover .s-icon {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  transform: scale(1.15) rotateY(10deg);
  box-shadow: 0 10px 25px rgba(33,150,243,0.3);
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; color: var(--dark); }
.service-card p { color: var(--gray-500); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1rem; }
.service-card .s-link {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
}
.service-card .s-link:hover { color: var(--primary); gap: 0.6rem; }

/* ============================================
   STATS (3D Counter Boxes)
   ============================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 70%; height: 200%;
  background: radial-gradient(circle, rgba(33,150,243,0.12), transparent 60%);
}
.stats-bar::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 40%; height: 100%;
  background: radial-gradient(circle, rgba(245,158,11,0.08), transparent 60%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-item {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.stat-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.stat-item .stat-num {
  font-family: 'Cairo', sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-item .stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

@media (max-width: 767px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-item .stat-num { font-size: 2rem; }
  .stat-item { padding: 1rem; }
}

/* ============================================
   WHY CHOOSE US (3D Feature Cards)
   ============================================ */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(33,150,243,0.05), transparent 70%);
  transition: all 0.4s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-3d);
  border-color: transparent;
  transform: translateY(-8px);
}
.feature-card:hover::after {
  width: 200px; height: 200px;
}
.feature-card .f-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  transition: var(--transition-bounce);
}
.feature-card:hover .f-icon { transform: scale(1.15) rotate(-5deg); }
.feature-card h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.feature-card p { color: var(--gray-500); font-size: 0.88rem; line-height: 1.7; margin: 0; }

/* ============================================
   TESTIMONIALS (3D Cards with Gradient Border)
   ============================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--gray-200);
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary), var(--accent));
  background-size: 200% 100%;
  animation: gradient-move 3s linear infinite;
}
@keyframes gradient-move {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d);
}
.testimonial-card .stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}
.testimonial-card blockquote {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card .t-author {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}
.testimonial-card .t-location {
  font-size: 0.8rem;
  color: var(--gray-400);
}
.testimonial-card .quote-icon {
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-size: 3.5rem;
  color: var(--gray-100);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ============================================
   IMAGE GALLERY SECTION
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 250px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,59,110,0.7), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .g-label {
  position: absolute;
  bottom: 1rem; right: 1rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.gallery-item:hover .g-label { opacity: 1; transform: translateY(0); }

@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { height: 180px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 200px; }
}

/* ============================================
   PROCESS STEPS (Timeline Style)
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  right: 10%; left: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step .step-num {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 15px rgba(33,150,243,0.3);
  transition: var(--transition-bounce);
}
.process-step:hover .step-num {
  transform: scale(1.2);
  box-shadow: 0 8px 25px rgba(33,150,243,0.4);
}
.process-step .step-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.process-step:hover .step-icon { transform: scale(1.15) rotate(-5deg); color: var(--primary); }
.process-step h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--gray-500); font-size: 0.85rem; }

@media (max-width: 767px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .process-grid::before { display: none; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ (Smooth Accordion)
   ============================================ */
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.faq-item.active { border-color: var(--secondary); box-shadow: 0 4px 20px rgba(33,150,243,0.1); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
  transition: var(--transition);
}
.faq-item.active .faq-question { color: var(--secondary); }
.faq-question:hover { color: var(--secondary); }
.faq-icon {
  transition: transform 0.4s ease;
  color: var(--secondary);
  font-size: 0.85rem;
}
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  line-height: 1.9;
  font-size: 0.9rem;
}
.faq-item.active .faq-answer { max-height: 600px; }

/* ============================================
   PAGE HERO (inner pages - with parallax feel)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--primary));
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
  padding: 7.5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 50%; height: 160%;
  background: radial-gradient(circle, rgba(33,150,243,0.12), transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 40%; height: 120%;
  background: radial-gradient(circle, rgba(245,158,11,0.06), transparent 60%);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.breadcrumb a { color: var(--secondary-light); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

@media (max-width: 767px) {
  .page-hero { padding: 6rem 0 2.5rem; }
  .page-hero h1 { font-size: 1.5rem; }
  .page-hero p { font-size: 0.9rem; padding: 0 0.5rem; }
}

/* ============================================
   CONTACT CARDS (3D + Glow)
   ============================================ */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(33,150,243,0.03), transparent 50%);
  transition: var(--transition);
}
.contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-3d);
  border-color: transparent;
}
.contact-card .c-icon {
  width: 65px; height: 65px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  transition: var(--transition-bounce);
}
.contact-card:hover .c-icon { transform: scale(1.15) rotate(-5deg); }
.contact-card h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.contact-card p { color: var(--gray-500); font-size: 0.85rem; margin-bottom: 0.5rem; }
.contact-card a { color: var(--secondary); font-weight: 700; font-size: 0.9rem; }

/* ============================================
   FORMS (Modern with floating labels feel)
   ============================================ */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--gray-700);
  font-size: 0.9rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1.15rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--gray-50);
  color: var(--gray-800);
  font-size: 0.95rem;
  transition: var(--transition);
  direction: rtl;
}
.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(33,150,243,0.08);
  background: var(--white);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { min-height: 120px; resize: vertical; }

/* ============================================
   CTA SECTION (Cinematic)
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--secondary), var(--primary), var(--primary-dark));
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60%; right: -25%;
  width: 70%; height: 220%;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 50%);
}
.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 550px; margin: 0.75rem auto 2rem; }

@media (max-width: 767px) {
  .cta-section { padding: 3rem 0; }
  .cta-section h2 { font-size: 1.4rem; }
  .cta-section p { font-size: 0.9rem; padding: 0 0.5rem; }
}

/* ============================================
   ABOUT PAGE (Image with 3D effect)
   ============================================ */
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-3d);
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.05); }
.about-image .exp-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 8px 25px rgba(33,150,243,0.35);
  animation: badge-pulse 3s ease infinite;
}
@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.about-image .exp-badge .num {
  font-family: 'Cairo', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.about-image .exp-badge .text { font-size: 0.72rem; opacity: 0.9; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  color: var(--gray-700);
  font-weight: 500;
  transition: var(--transition);
}
.check-list li:hover { padding-right: 0.5rem; color: var(--primary); }
.check-list li i { color: var(--success); font-size: 0.9rem; }

@media (max-width: 767px) {
  .about-image img { height: 280px; }
}

/* ============================================
   BRANDS (Animated scroll)
   ============================================ */
.brands-track {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.brand-item {
  padding: 0.85rem 1.75rem;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--gray-600);
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: default;
}
.brand-item:hover {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(33,150,243,0.2);
}

/* ============================================
   SERVICE AREAS (Animated Tags)
   ============================================ */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
  cursor: default;
}
.area-tag:hover {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 15px rgba(33,150,243,0.2);
}

/* ============================================
   MAINTENANCE PLANS (3D Cards)
   ============================================ */
.plan-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2rem;
  text-align: center;
  border: 2px solid var(--gray-200);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.plan-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, transparent 60%, rgba(33,150,243,0.03) 100%);
  pointer-events: none;
}
.plan-card.featured {
  border-color: var(--secondary);
  box-shadow: var(--shadow-3d);
  transform: scale(1.04);
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d);
  border-color: var(--secondary);
}
.plan-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.plan-badge {
  position: absolute;
  top: -1px; right: 50%;
  transform: translateX(50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--dark);
  padding: 0.3rem 1.25rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: 0.75rem;
  font-weight: 700;
}
.plan-price {
  font-family: 'Cairo', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin: 1.25rem 0;
}
.plan-price span { font-size: 0.85rem; font-weight: 400; color: var(--gray-500); }
.plan-features { text-align: right; margin: 1.75rem 0; }
.plan-features li {
  padding: 0.55rem 0;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.plan-features li i { color: var(--success); font-size: 0.8rem; }

@media (max-width: 767px) {
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-8px); }
}

/* ============================================
   FOOTER (Premium Dark)
   ============================================ */
.site-footer {
  background: linear-gradient(180deg, var(--dark), #080E1A);
  color: rgba(255,255,255,0.7);
  padding: 4.5rem 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}
.site-footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.site-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 35px; height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
}
.site-footer p { font-size: 0.9rem; line-height: 1.7; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.65);
  padding: 0.35rem 0;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a::before {
  content: '←';
  font-size: 0.7rem;
  opacity: 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--secondary); padding-right: 0.3rem; }
.footer-links a:hover::before { opacity: 1; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}
.footer-contact li i {
  color: var(--secondary);
  margin-top: 0.3rem;
  font-size: 0.85rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3.5rem;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(33,150,243,0.3);
  color: var(--white);
}

@media (max-width: 991px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .site-footer h4::after { right: 50%; transform: translateX(50%); }
  .footer-social { justify-content: center; }
  .footer-contact li { justify-content: center; }
  .footer-links a { justify-content: center; }
  .site-footer { padding-top: 3rem; }
}

/* ============================================
   FLOATING BUTTONS (Enhanced with labels)
   ============================================ */
.float-btns {
  position: fixed;
  bottom: 1.75rem;
  left: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
.float-btn:hover {
  transform: scale(1.15);
  color: var(--white);
}
.float-btn.wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  animation: pulse-wa 2s infinite;
}
.float-btn.ph {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}
.float-btn .float-label {
  position: absolute;
  right: calc(100% + 10px);
  background: var(--dark);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}
.float-btn:hover .float-label { opacity: 1; transform: translateX(0); }

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 767px) {
  .float-btns { bottom: 1rem; left: 1rem; }
  .float-btn { width: 50px; height: 50px; font-size: 1.2rem; }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  cursor: pointer;
  z-index: 800;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

@media (max-width: 767px) {
  .back-to-top { bottom: 1rem; right: 1rem; width: 40px; height: 40px; }
}

/* ============================================
   GMB EMBED
   ============================================ */
.gmb-section { background: var(--lighter); }
.gmb-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}
.gmb-embed iframe {
  width: 100%; height: 400px; border: 0;
}

@media (max-width: 767px) {
  .gmb-embed iframe { height: 280px; }
}

/* ============================================
   LEAD MAGNET BAR (Sticky Bottom CTA)
   ============================================ */
.lead-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 0.85rem 0;
  z-index: 800;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.5s ease;
  display: none;
}
.lead-bar.visible {
  transform: translateY(0);
  display: block;
}
.lead-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.lead-bar-text { font-weight: 600; font-size: 0.9rem; }
.lead-bar-text i { color: var(--accent); margin-left: 0.5rem; }
.lead-bar .btn { padding: 0.55rem 1.5rem; font-size: 0.85rem; }

@media (max-width: 767px) {
  .lead-bar .container { flex-direction: column; text-align: center; gap: 0.5rem; }
  .lead-bar-text { font-size: 0.8rem; }
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%; right: 0;
  background: var(--accent);
  color: var(--dark);
  padding: 0.75rem 1.5rem;
  z-index: 99999;
  font-weight: 700;
}
.skip-link:focus { top: 0; }

/* ============================================
   ELEMENTOR COMPATIBILITY
   ============================================ */
.elementor-page .site-header,
.elementor-page .site-footer { display: block; }
.elementor-editor-active .navbar { position: relative; }

/* ============================================
   RESPONSIVE — MOBILE FIRST COMPLETE
   ============================================ */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }

  /* Two column grids on about/contact */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1.2fr 0.8fr"],
  [style*="grid-template-columns:1.2fr 0.8fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Flex wrapping */
  [style*="display:flex"][style*="gap"] {
    flex-wrap: wrap;
  }

  /* Hero adjustments done above */
}

/* ============ BLOG STYLES ============ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d);
}
.blog-content .entry-content h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-light);
}
.blog-content .entry-content h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin: 1.5rem 0 0.75rem;
}
.blog-content .entry-content p {
  color: var(--gray-600);
  line-height: 2;
  margin-bottom: 1rem;
}
.blog-content .entry-content ul,
.blog-content .entry-content ol {
  margin: 1rem 0 1rem 1.5rem;
  color: var(--gray-600);
  line-height: 2;
}
.blog-content .entry-content li {
  margin-bottom: 0.5rem;
}
.blog-content .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 1rem 0;
}
.blog-content .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.blog-content .entry-content th,
.blog-content .entry-content td {
  padding: 0.85rem 1rem;
  text-align: right;
  border-bottom: 1px solid var(--gray-200);
}
.blog-content .entry-content th {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}
.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
}

@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  h1 { font-size: 1.4rem !important; }
  h2 { font-size: 1.25rem !important; }
  .section { padding: 2.5rem 0; }
  .btn { padding: 0.7rem 1.25rem; font-size: 0.85rem; }
  .btn-lg { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
}
