/*
Theme Name: MTH Home Repair
Theme URI: https://mthhomerepair.com/
Author: Antigravity Team
Author URI: https://google.com
Description: A premium, highly manageable, and responsive WordPress theme designed specifically for home appliance and repair services in the UAE (Dubai, Abu Dhabi, Sharjah, Ajman).
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mthhomerepair
*/

/* --- CSS Variables & Design System --- */
:root {
  --primary-color: #0c2340;       /* Premium Navy Blue */
  --secondary-color: #ff6b00;     /* Service Orange */
  --secondary-hover: #e05e00;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #475569;
  --success-color: #22c55e;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --transition: all 0.3s ease;
  --box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --box-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Base Resets & Layout Safety --- */
html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
}

#page, .site {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative; /* Essential relative anchor for absolute children */
}

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

body {
  font-family: var(--font-family);
  background-color: #040d1a;
  color: var(--dark-color);
  line-height: 1.6;
  position: relative;
}

/* Layer 1: High-Impact Moving Mesh Grid */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image: 
    linear-gradient(rgba(0, 229, 255, 0.08) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.08) 1.5px, transparent 1.5px);
  background-size: 45px 45px;
  pointer-events: none;
  z-index: -99;
  animation: gridPerspectiveMove 35s linear infinite;
}

/* Layer 2: Dynamic Glowing Particle Aura */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 25%, rgba(0, 229, 255, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255, 85, 0, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(121, 40, 202, 0.12) 0%, transparent 55%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -98;
  animation: pulseGlobalAura 12s ease-in-out infinite alternate;
}

@keyframes gridPerspectiveMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-45px, -45px); }
}

@keyframes pulseGlobalAura {
  0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
  50% { transform: scale(1.2) rotate(6deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
}

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

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

/* --- Grid & Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2; /* Ensures interactive elements stay on top of background animations */
}

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

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

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

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

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: #16365c;
  transform: translateY(-2px);
}

/* --- Sections --- */
.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* High Visibility Animated Background Orbs for Every Section */
.section::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, rgba(0, 229, 255, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(35px);
  pointer-events: none;
  z-index: 0;
  animation: floatSectionOrb1 12s ease-in-out infinite alternate;
}

.section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.2) 0%, rgba(255, 85, 0, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: floatSectionOrb2 16s ease-in-out infinite alternate;
}

/* Alternate start positions for variety */
.section:nth-of-type(odd)::before {
  top: -80px;
  left: -120px;
}
.section:nth-of-type(odd)::after {
  bottom: -100px;
  right: -120px;
}
.section:nth-of-type(even)::before {
  bottom: -80px;
  left: 15%;
  animation-delay: -3s;
}
.section:nth-of-type(even)::after {
  top: -80px;
  right: 15%;
  animation-delay: -6s;
}

@keyframes floatSectionOrb1 {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(100px, 60px) scale(1.3) rotate(30deg); }
  100% { transform: translate(40px, 120px) scale(0.95) rotate(60deg); }
}

@keyframes floatSectionOrb2 {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(-110px, -70px) scale(1.35) rotate(-45deg); }
  100% { transform: translate(-50px, 50px) scale(1) rotate(-90deg); }
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* --- Responsive Helpers --- */
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }

/* --- CSS Micro-Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-slide-left {
  opacity: 0;
  animation: slideInLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-slide-right {
  opacity: 0;
  animation: slideInRight 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* --- Brand Marquee Styles --- */
.marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  padding: 15px 35px;
  background: var(--light-color);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  font-weight: 800;
  color: var(--primary-color);
  font-size: 1.15rem;
  letter-spacing: 1px;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

/* --- Premium Background Effects --- */

/* Faint Dot Grid Pattern overlay */
.bg-dot-pattern {
  position: relative;
  background-color: var(--white);
  background-image: radial-gradient(rgba(12, 35, 64, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Faint Grid lines pattern for light sections */
.bg-grid-pattern {
  position: relative;
  background-color: var(--light-color);
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Hero Radial Glow blobs (CSS-only glowing orbs) */
.bg-glow-hero {
  position: relative;
  overflow: hidden;
}

.bg-glow-hero::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.bg-glow-hero::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 75%);
  bottom: -150px;
  left: -100px;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

/* Frosted Glassmorphism card styling */
.glass-card {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.04), 
    inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(255, 107, 0, 0.3) !important;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.08), 
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transform: translateY(-5px);
}

/* Service Card SVGs */
.service-icon-wrapper svg {
  width: 30px;
  height: 30px;
  color: var(--secondary-color);
  display: block;
}

/* Premium Text Highlight Effects */
.highlight-service, .highlight-brand {
  background: linear-gradient(120deg, #ff8c00 0%, #ffbb00 30%, #ff5000 70%, #ff8c00 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
  animation: shineGlowText 3s linear infinite;
  filter: drop-shadow(0 2px 10px rgba(255, 107, 0, 0.5));
}

.highlight-location {
  background: linear-gradient(120deg, #ffe066 0%, #ffcc00 30%, #ffa600 70%, #ffe066 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
  animation: shineGlowText 3s linear infinite;
  filter: drop-shadow(0 2px 10px rgba(255, 204, 0, 0.5));
}

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

/* Glassy Badge Pill */
.loc-banner .badge,
.services-banner .badge,
.about-banner .badge,
.contact-banner .badge,
.locations-banner .badge {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ff9d4d !important;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
}

/* Button micro-animations */
.btn {
  position: relative;
  overflow: hidden;
}

.btn-primary.pulse-btn {
  animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}

.btn-secondary.whatsapp-pulse {
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Hover shine reflection */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 20%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
}

.btn:hover::after {
  left: 125%;
}

/* Service Title Hover Link */
.service-title-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.animate-slide-in-left {
  animation: slideInFromLeft 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* --- PREMIUM UI/UX OVERHAUL ADDITIONS --- */

/* Lenis smooth scroll styling */
html.lenis, html.lenis body {
  height: auto;
}
.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis-stopped {
  overflow: hidden;
}

/* Page loader curtain styling */
.page-loader {
  display: none !important;
}
.loader-spinner {
  width: 55px;
  height: 55px;
  border: 4px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  border-top-color: var(--secondary-color);
  animation: spinLoader 0.9s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  margin: 0 auto 20px;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.15);
}
.loader-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.loader-logo span {
  color: var(--secondary-color);
  filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.5));
}
@keyframes spinLoader {
  to { transform: rotate(360deg); }
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), #ffbb00);
  z-index: 100000;
}

/* Premium cursor details */
.custom-cursor {
  width: 18px;
  height: 18px;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 999999;
  transition: width 0.25s ease-out, height 0.25s ease-out, background-color 0.25s ease-out, border-color 0.25s ease-out;
  opacity: 0;
}
.custom-cursor-dot {
  width: 4px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 999999;
  opacity: 0;
}
@media (pointer: fine) {
  .custom-cursor, .custom-cursor-dot {
    opacity: 1;
  }
}
.custom-cursor.hovered {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 107, 0, 0.1);
  border-color: var(--secondary-color);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 80px; /* Above mobile floating CTA bar if needed */
  right: 25px;
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.35);
}

/* Dynamic background glowing blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
  animation: floatBlob 12s ease-in-out infinite alternate;
}
.bg-blob-1 {
  background-color: var(--primary-color);
  width: 350px;
  height: 350px;
  top: 15%;
  left: -50px;
}
.bg-blob-2 {
  background-color: var(--secondary-color);
  width: 400px;
  height: 400px;
  bottom: 20%;
  right: -80px;
  animation-delay: -4s;
}
@keyframes floatBlob {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  100% { transform: translateY(60px) scale(1.18) rotate(90deg); }
}

/* Floating shape animation container */
.shape-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.floating-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  animation: rotateShape 20s linear infinite;
}
@keyframes rotateShape {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-150px) rotate(360deg); }
}

/* Interactive card glow effect & zoom triggers */
.service-card, .glass-card {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.08), 0 0 1px rgba(255, 107, 0, 0.3) !important;
  border-color: rgba(255, 107, 0, 0.25) !important;
}

/* Wave Curve section dividers */
.section-divider {
  width: 100%;
  height: 60px;
  display: block;
  fill: var(--white);
  margin-top: -1px;
  margin-bottom: -1px;
}
.section-divider-light {
  fill: var(--light-color);
}
.section-divider-dark {
  fill: #0c2340;
}

/* Slide In From Left details animation */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-slide-in-left {
  animation: slideInFromLeft 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Service Title Hover Link */
.service-title-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.service-title-link:hover {
  color: var(--secondary-color);
}

/* Scroll Reveal System - 100% Always Visible Guarantee */
.reveal-from-left,
.reveal-from-right,
.reveal-from-top,
.reveal-from-bottom,
.reveal-on-scroll,
.reveal-zoom {
  opacity: 1 !important;
  transform: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.in-view {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* --- AWWWARDS & WEBFLOW LUXURY DESIGN SYSTEM --- */

/* 1. KEYWORD-ADAPTIVE THEMES */

/* AC & Cooling Theme */
.theme-ac {
  --theme-glow: #00d2ff;
  --theme-bg-gradient: linear-gradient(135deg, rgba(6, 18, 36, 0.95), rgba(0, 112, 243, 0.25));
}
.theme-ac .highlight-service {
  background: linear-gradient(90deg, #00d2ff 0%, #0070f3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.5));
}
.theme-ac .particle-snow-wrapper {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: hidden; z-index: 1;
}
.snow-particle {
  position: absolute;
  width: 8px; height: 8px;
  background: rgba(0, 210, 255, 0.4);
  border-radius: 50%;
  filter: blur(1px);
  animation: snowFloat 8s linear infinite;
}
.snow-particle.p1 { left: 15%; animation-duration: 6s; }
.snow-particle.p2 { left: 45%; animation-duration: 9s; animation-delay: -2s; }
.snow-particle.p3 { left: 75%; animation-duration: 7s; animation-delay: -4s; }
.snow-particle.p4 { left: 90%; animation-duration: 10s; animation-delay: -1s; }
@keyframes snowFloat {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  20% { opacity: 0.8; }
  100% { transform: translateY(500px) rotate(360deg); opacity: 0; }
}

/* Washing Machine & Dishwasher Theme */
.theme-washing, .theme-dishwasher {
  --theme-glow: #00e5ff;
  --theme-bg-gradient: linear-gradient(135deg, rgba(6, 18, 36, 0.95), rgba(0, 229, 255, 0.2));
}
.theme-washing .highlight-service, .theme-dishwasher .highlight-service {
  background: linear-gradient(90deg, #00e5ff 0%, #0088ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.5));
}
.bubble-particle {
  position: absolute;
  border: 2px solid rgba(0, 229, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  animation: bubbleRise 7s ease-in-out infinite;
}
.bubble-particle.b1 { width: 25px; height: 25px; left: 20%; animation-duration: 6s; }
.bubble-particle.b2 { width: 40px; height: 40px; left: 60%; animation-duration: 9s; animation-delay: -3s; }
.bubble-particle.b3 { width: 18px; height: 18px; left: 85%; animation-duration: 5s; animation-delay: -1s; }
@keyframes bubbleRise {
  0% { transform: translateY(400px) scale(0.8); opacity: 0; }
  50% { opacity: 0.6; }
  100% { transform: translateY(-50px) scale(1.2); opacity: 0; }
}

/* Oven & Stove Theme */
.theme-oven {
  --theme-glow: #ff6b00;
  --theme-bg-gradient: linear-gradient(135deg, rgba(20, 10, 5, 0.95), rgba(255, 107, 0, 0.25));
}
.theme-oven .highlight-service {
  background: linear-gradient(90deg, #ff9900 0%, #ff3300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.6));
}
.flame-aura {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  animation: flamePulse 4s ease-in-out infinite alternate;
}
@keyframes flamePulse {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.9; }
}

/* Refrigerator Theme */
.theme-fridge {
  --theme-glow: #70d6ff;
  --theme-bg-gradient: linear-gradient(135deg, rgba(5, 15, 30, 0.95), rgba(112, 214, 255, 0.2));
}
.theme-fridge .highlight-service {
  background: linear-gradient(90deg, #70d6ff 0%, #0070f3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(112, 214, 255, 0.5));
}

/* 2. 3D CARD TILT & MAGNETIC EFFECTS */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
}
.tilt-card-inner {
  transform: translateZ(25px);
}
.btn-magnetic {
  position: relative;
  display: inline-block;
  will-change: transform;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Shimmer Light Sweep on Buttons */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  transform: rotate(30deg) translateX(-100%);
  animation: shimmerSweep 5s infinite;
}
@keyframes shimmerSweep {
  0% { transform: rotate(30deg) translateX(-100%); }
  20% { transform: rotate(30deg) translateX(100%); }
  100% { transform: rotate(30deg) translateX(100%); }
}

/* 3. INTERACTIVE MAP PINS */
.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: var(--secondary-color);
  border: 3px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease;
  animation: pulsePin 2s infinite;
}
.map-pin:hover {
  transform: scale(1.4);
  background-color: var(--white);
  border-color: var(--secondary-color);
}
@keyframes pulsePin {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(255, 107, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

/* 4. VIDEO LIGHTBOX MODAL */
.video-lightbox-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(6, 18, 36, 0.85);
  backdrop-filter: blur(8px);
  z-index: 100002;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-lightbox-overlay.active {
  opacity: 1; visibility: visible;
}
.video-lightbox-container {
  width: 90%; max-width: 900px;
  aspect-ratio: 16/9;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background-color: #000;
}
.video-lightbox-close {
  position: absolute;
  top: -45px; right: 0;
  color: var(--white);
  font-size: 2rem;
  background: none; border: none;
  cursor: pointer;
}

/* 5. SINGLE BLOG MAGAZINE TYPOGRAPHY & TOC */
.reading-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), #00d2ff);
  z-index: 100005;
  width: 0%;
  transition: width 0.1s linear;
}
.toc-box {
  background-color: var(--light-color);
  border-left: 4px solid var(--secondary-color);
  padding: 25px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}
.toc-box h4 {
  font-size: 1.1rem; color: var(--primary-color); font-weight: 800; margin-bottom: 12px;
}
.toc-box ul {
  list-style: none; padding-left: 0; margin-bottom: 0;
}
.toc-box ul li {
  margin-bottom: 8px;
}
.toc-box ul li a {
  color: var(--dark-color); font-weight: 600; text-decoration: none; font-size: 0.95rem;
}
.toc-box ul li a:hover {
  color: var(--secondary-color);
}

/* --- Uniform Service Page Banner Heights & Perfect Center Alignment --- */
.services-banner, 
.loc-banner, 
.about-banner, 
.contact-banner, 
.locations-banner, 
.post-hero {
  min-height: 460px !important;
  height: 460px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 60px 0 !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
}

.services-banner .container,
.loc-banner .container,
.about-banner .container,
.contact-banner .container,
.locations-banner .container,
.post-hero .container {
  width: 100% !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* --- Smooth 3D Hover Lift & Micro-Movement Effect For All Cards --- */
.service-card,
.feature-card,
.pricing-card,
.testimonial-card,
.faq-card,
.glass-card,
.emirate-column,
.location-item-row,
.spare-parts-card,
.stat-card {
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
  will-change: transform;
}

.service-card:hover,
.feature-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.faq-card:hover,
.glass-card:hover,
.emirate-column:hover,
.spare-parts-card:hover,
.stat-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 20px 45px rgba(0, 229, 255, 0.2), 0 10px 20px rgba(0, 0, 0, 0.08) !important;
  border-color: #00e5ff !important;
}

.location-item-row:hover {
  transform: translateY(-5px) translateX(6px) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.2) !important;
  border-color: #ff6b00 !important;
}

/* --- High-Contrast Crystal Clear Card Typography & Backgrounds --- */
.bg-grid-pattern,
.bg-dot-pattern {
  background-color: #030d1d !important;
  color: #ffffff !important;
}

.glass-card, 
.service-card, 
.pricing-card, 
.testimonial-card, 
.faq-card, 
.spare-parts-card,
.stat-card,
.policy-card,
.value-card {
  background: #07162c !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(0, 229, 255, 0.3) !important;
}

.glass-card h1, .glass-card h2, .glass-card h3, .glass-card h4,
.service-card h1, .service-card h2, .service-card h3, .service-card h4,
.pricing-card h1, .pricing-card h2, .pricing-card h3, .pricing-card h4,
.testimonial-card h1, .testimonial-card h2, .testimonial-card h3, .testimonial-card h4,
.faq-card h1, .faq-card h2, .faq-card h3, .faq-card h4,
.policy-card h1, .policy-card h2, .policy-card h3, .policy-card h4,
.value-card h1, .value-card h2, .value-card h3, .value-card h4,
.section-subtitle,
.service-title-link,
th, td, p, span, li, tr, div {
  color: #ffffff !important;
  opacity: 1 !important;
}

.section-subtitle {
  color: #ffffff !important;
  font-weight: 500 !important;
}

.service-title-link,
.service-card h2 a,
.service-card h3 a {
  color: #ffffff !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

th {
  color: #00e5ff !important;
  font-weight: 800 !important;
}

td {
  color: #ffffff !important;
  font-weight: 700 !important;
}

/* --- Mobile Responsive Optimizations --- */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem !important;
  }
  h2 {
    font-size: 1.8rem !important;
  }
  .section {
    padding: 50px 0 !important;
  }
  .container {
    padding: 0 15px !important;
  }
  .services-banner, .loc-banner, .about-banner, .contact-banner, .locations-banner, .post-hero {
    padding: 80px 0 60px !important;
  }
  .video-section div[style*="height: 440px"] {
    height: 250px !important;
  }
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* --- Ultra-Professional Luminous Highlight Text System --- */
.highlight-service,
.highlight-brand,
.highlight-location,
.highlight-text,
span.highlight-service,
span.highlight-brand,
span.highlight-location {
  color: #00e5ff !important;
  background: linear-gradient(90deg, #00e5ff 0%, #00ffcc 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 2px 8px rgba(0, 229, 255, 0.4)) !important;
  text-shadow: none !important;
  font-weight: 900 !important;
  display: inline-block !important;
}

/* Vibrant Accent for Brand Highlights */
.highlight-brand,
span.highlight-brand {
  color: #ff7700 !important;
  background: linear-gradient(90deg, #ff7700 0%, #ffbb00 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 2px 8px rgba(255, 119, 0, 0.4)) !important;
}

/* --- 100% Clean & Uniform Full-Width Footer System --- */
.site-footer {
  width: 100% !important;
  max-width: 100% !important;
  background: #030d1d !important;
  color: #ffffff !important;
  box-sizing: border-box !important;
  border-top: 2px solid rgba(0, 229, 255, 0.35) !important;
  padding: 60px 0 30px !important;
  position: relative !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
}

.footer-widgets {
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto 40px !important;
  padding: 0 30px !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 40px !important;
  box-sizing: border-box !important;
}

.footer-bottom {
  width: 100% !important;
  max-width: 1280px !important;
  margin: 30px auto 0 !important;
  padding: 25px 30px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

/* --- Mobile Hamburger Navigation Menu System --- */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #00e5ff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

.mobile-nav-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #07162c;
  border-bottom: 2px solid #00e5ff;
  padding: 25px 30px 30px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.6);
  box-sizing: border-box;
  z-index: 999;
}

.mobile-nav-drawer.active {
  display: block !important;
  animation: slideDownNav 0.3s ease forwards;
}

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

.mobile-nav-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-drawer ul li a {
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

.mobile-nav-drawer ul li a:hover {
  color: #00e5ff !important;
}

@media (max-width: 991px) {
  .nav-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .header-phone {
    display: none !important;
  }
}



