/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Outfit', sans-serif;

  /* Light Theme Colors (Default) */
  --color-primary: #0EA5A4;
  --color-primary-dark: #0B8786;
  --color-primary-light: #E7F6F6;
  --color-secondary: #F5C84C;
  --color-secondary-dark: #DFB239;
  --color-secondary-light: #FEF9EB;
  
  --color-bg: #F8FAFC;
  --color-bg-card: #FFFFFF;
  --color-bg-alt: #F1F5F9;
  --color-border: #E2E8F0;
  
  --color-text: #1E293B;
  --color-text-muted: #64748B;
  --color-text-light: #94A3B8;
  
  --color-white: #FFFFFF;
  --color-black: #0F172A;
  --color-success: #10B981;
  --color-success-light: #D1FAE5;
  --color-error: #EF4444;
  --color-error-light: #FEE2E2;

  /* Glassmorphism Styles */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: 0 8px 32px 0 rgba(14, 165, 164, 0.08);
  
  /* Shadow Levels */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.07), 0 4px 12px -2px rgba(0,0,0,0.04);
  --shadow-hover: 0 20px 35px -5px rgba(14, 165, 164, 0.15);

  /* Dimensions */
  --header-height: 80px;
  --banner-height: 40px;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme Overrides */
:root.dark {
  --color-bg: #0B0F19;
  --color-bg-card: #151D30;
  --color-bg-alt: #1E293B;
  --color-border: #2E3E5C;
  
  --color-text: #F1F5F9;
  --color-text-muted: #94A3B8;
  --color-text-light: #64748B;
  
  --glass-bg: rgba(21, 29, 48, 0.75);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 20px 40px rgba(14, 165, 164, 0.25);
  
  --color-primary-light: rgba(14, 165, 164, 0.1);
  --color-secondary-light: rgba(245, 200, 76, 0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-text-light);
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--color-bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

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

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

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary), #00D2C4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-teal {
  color: var(--color-primary) !important;
}

.margin-top-lg {
  margin-top: 40px;
}

.margin-top-xl {
  margin-top: 60px;
}

/* Section Header styling */
.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-tagline {
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.section-tagline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background-color: var(--color-primary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-text);
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* ==========================================================================
   BUTTONS STYLES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  transition: var(--transition-normal);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.15);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn:hover::after {
  left: 0;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(14, 165, 164, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 164, 0.4);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: #1E293B;
  box-shadow: 0 4px 15px rgba(245, 200, 76, 0.3);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 200, 76, 0.4);
}

.btn-outline {
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  padding: 8px 18px;
  font-size: 0.9rem;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
}

.btn-call {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  padding: 8px 18px;
  font-size: 0.9rem;
}

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

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--border-radius-md);
}

.btn-xs {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: var(--border-radius-sm);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   LOADING ANIMATION
   ========================================================================== */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 60px;
  height: 60px;
  position: relative;
  margin-bottom: 20px;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-primary);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  animation-delay: -1.0s;
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

@keyframes sk-bounce {
  0%, 100% { transform: scale(0.0); }
  50% { transform: scale(1.0); }
}

/* ==========================================================================
   EMERGENCY SERVICE BANNER
   ========================================================================== */
.emergency-banner {
  height: var(--banner-height);
  background: linear-gradient(90deg, #DC2626, #EF4444, #DC2626);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  box-shadow: var(--shadow-sm);
  padding: 0 16px;
  overflow: hidden;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: pulse-banner 3s infinite ease-in-out;
}

.banner-text-short {
  display: none;
}

.emergency-badge {
  background-color: var(--color-white);
  color: #DC2626;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--border-radius-sm);
  letter-spacing: 1px;
}

.banner-phone {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.banner-phone:hover {
  text-decoration: underline;
}

@keyframes pulse-banner {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* ==========================================================================
   HEADER & GLASSMORPHISM NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: var(--banner-height);
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  top: 0;
  height: 70px;
  background-color: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--color-text);
  letter-spacing: -0.5px;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-normal);
}

.header.scrolled .logo-img {
  height: 44px;
}

.footer-logo .logo-img {
  height: 60px;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-normal);
}

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

/* Navbar actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-md);
  background-color: var(--color-bg-alt);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

.theme-toggle:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

/* Mobile responsive menu controls */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-md);
  background-color: var(--color-bg-alt);
  color: var(--color-text);
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.mobile-menu-btn:hover {
  color: var(--color-primary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + var(--banner-height));
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.3) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 680px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(241, 245, 249, 0.9);
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
}

/* Features row */
.hero-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-icon {
  width: 28px;
  height: 28px;
  background-color: rgba(14, 165, 164, 0.2);
  color: var(--color-primary);
  border: 1px solid rgba(14, 165, 164, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.badge-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(241, 245, 249, 0.95);
}

/* ==========================================================================
   SERVICES SECTION (COVER IMAGES + BODY LAYOUT)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(14, 165, 164, 0.3);
}

/* Top Cover Image Box */
.card-image-box {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .card-image-box img {
  transform: scale(1.08);
}

/* Absolute overlay badge */
.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(14, 165, 164, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Card content body */
.card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.card-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: left;
  width: fit-content;
  font-size: 0.95rem;
}

.card-btn i {
  transition: transform 0.3s ease;
}

.service-card:hover .card-btn i {
  transform: translateX(6px);
}

/* ==========================================================================
   WHY CHOOSE US & ANIMATED COUNTERS
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 165, 164, 0.2);
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Counter items */
.counters-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 40px 20px;
  box-shadow: var(--shadow-sm);
}

.counter-box {
  text-align: center;
  position: relative;
}

.counter-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--color-border);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-label {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ==========================================================================
   SERVICE AREAS SECTION
   ========================================================================== */
.search-container {
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.search-box {
  background-color: var(--color-bg-card);
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 6px 16px 6px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.search-box:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 164, 0.1);
}

.search-icon {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

#area-search {
  flex-grow: 1;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--color-text);
}

.clear-search-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-bg-alt);
  color: var(--color-text-muted);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition-normal);
}

.clear-search-btn:hover {
  background-color: var(--color-error-light);
  color: var(--color-error);
}

/* Areas Grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.area-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 165, 164, 0.2);
}

.area-card:hover::before {
  transform: scaleY(1);
}

.area-icon {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.area-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.area-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
}

.area-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  flex: 1;
  transition: var(--transition-normal);
  border: 1px solid transparent;
}

.area-call {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-color: rgba(14, 165, 164, 0.2);
}

.area-call:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.area-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
}

.area-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
}


/* Search results messages */
.no-search-results {
  text-align: center;
  padding: 60px 20px;
}

.no-search-results i {
  font-size: 3.5rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.no-search-results h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.no-search-results p {
  color: var(--color-text-muted);
  max-width: 460px;
  margin: 0 auto;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image-container {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: visible;
  padding-right: 20px;
  padding-bottom: 20px;
}

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

.experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 24px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border: 4px solid var(--color-bg-card);
  animation: float-badge 4s infinite ease-in-out;
}

.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 20px;
}

.about-body {
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

/* Stat card grid in About */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-icon {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.stat-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.stat-desc {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   TESTIMONIALS CAROUSEL
   ========================================================================== */
.testimonials-slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
  opacity: 0.3;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-content-box {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 35px;
  left: 35px;
  font-size: 3rem;
  color: var(--color-primary-light);
  z-index: 0;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

/* Dynamic avatar background gradients */
.gradient-avatar-1 { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
.gradient-avatar-2 { background: linear-gradient(135deg, #4E54C8, #8F94FB); }
.gradient-avatar-3 { background: linear-gradient(135deg, #11998E, #38EF7D); }
.gradient-avatar-4 { background: linear-gradient(135deg, #FC466B, #3F5EFB); }
.gradient-avatar-5 { background: linear-gradient(135deg, #F27121, #E94057); }
.gradient-avatar-6 { background: linear-gradient(135deg, #11998E, #38EF7D); }

.customer-details {
  display: flex;
  flex-direction: column;
}

.customer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
}

.customer-rating {
  color: var(--color-secondary);
  font-size: 0.85rem;
  margin: 2px 0;
}

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

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.slider-arrow:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-text-light);
  transition: var(--transition-normal);
  cursor: pointer;
}

.dot.active {
  background-color: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.contact-info-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: var(--transition-normal);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 165, 164, 0.2);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-card-detail {
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-card-sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Form and Maps Wrapper */
.contact-main-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-form-wrapper {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-wrapper-title, .map-wrapper-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
}

.required {
  color: var(--color-error);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  color: var(--color-text);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 164, 0.1);
  background-color: var(--color-bg-card);
}

.form-buttons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.form-buttons button {
  flex: 1;
}

.error-msg {
  color: var(--color-error);
  font-size: 0.8rem;
  position: absolute;
  bottom: -18px;
  left: 0;
}

/* Map Wrapper styles */
.contact-map-wrapper {
  display: flex;
  flex-direction: column;
}

.map-desc {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  flex-grow: 1;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION STYLE)
   ========================================================================== */
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-normal);
}

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

.faq-trigger {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  transition: var(--transition-normal);
}

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

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-bg-alt);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background-color: var(--color-primary);
  color: var(--color-white);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  padding: 0 30px 24px 30px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background-color: #0F172A;
  color: #94A3B8;
  padding: 80px 0 30px 0;
  border-top: 1px solid #1E293B;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 24px;
}

.logo-text.text-white {
  color: var(--color-white);
}

.footer-about-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #1E293B;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.footer-socials a:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: #94A3B8;
}

.footer-links-list a:hover {
  color: var(--color-primary);
  padding-left: 6px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}

.contact-list-icon {
  color: var(--color-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.link-white {
  color: #94A3B8;
}

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

/* Footer Business hours */
.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.footer-hours-list .day {
  font-weight: 600;
  color: var(--color-white);
}

.emergency-tag-footer {
  border-top: 1px solid #1E293B;
  padding-top: 16px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-secondary);
}

.emergency-tag-footer .emergency-icon {
  font-size: 1rem;
}

.emergency-tag-footer .emergency-text {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ==========================================================================
   MODAL CONTROLLER (GLASS & POPUPS)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  max-width: 600px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.modal-backdrop.open .modal-container {
  transform: scale(1);
}

.modal-container.modal-lg {
  max-width: 800px;
}

.modal-header {
  padding: 24px 30px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.close-modal-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-bg-alt);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-normal);
}

.close-modal-btn:hover {
  background-color: var(--color-error-light);
  color: var(--color-error);
}

.modal-body {
  padding: 30px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}

.modal-intro {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Pricing Table details */
.pricing-table-container {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  margin-bottom: 20px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.pricing-table th, .pricing-table td {
  padding: 16px 20px;
}

.pricing-table th {
  background-color: var(--color-bg-alt);
  font-weight: 700;
  border-bottom: 2px solid var(--color-border);
}

.pricing-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--color-border);
}

.pricing-table tr:hover td {
  background-color: var(--color-bg-alt);
}

.table-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   SUCCESS MODAL POPUP
   ========================================================================== */
.success-popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.success-popup-wrapper.open {
  opacity: 1;
  visibility: visible;
}

.success-popup-container {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-popup-wrapper.open .success-popup-container {
  transform: scale(1);
}

.success-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-success-light);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  margin: 0 auto 24px auto;
  animation: bounce-check 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounce-check {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.1); }
  75% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

.success-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.success-message {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.success-emails-mock {
  background-color: var(--color-bg-alt);
  border-radius: var(--border-radius-md);
  padding: 16px;
  margin-bottom: 30px;
  text-align: left;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.success-emails-mock p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.success-emails-mock i {
  color: var(--color-primary);
  font-size: 0.95rem;
}

/* ==========================================================================
   FLOATING INTERACTIVE CONTROLS
   ========================================================================== */
.floating-controls {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: var(--transition-normal);
  border: 1px solid transparent;
}

.back-to-top {
  background-color: var(--color-bg-card);
  color: var(--color-text);
  border-color: var(--color-border);
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-5px);
}

.floating-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  position: relative;
}

.floating-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-5px) scale(1.05);
}

.pulse-ring {
  border: 3px solid #25D366;
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  animation: pulse-ring-anim 2s infinite ease-out;
  opacity: 0.7;
}

@keyframes pulse-ring-anim {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Mobile Sticky CTA bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
  display: none;
  z-index: 998;
  height: 60px;
}

.cta-action-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  height: 100%;
}

.cta-call {
  background-color: var(--color-white);
  color: var(--color-text);
}

.cta-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
}

.cta-book {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* ==========================================================================
   SCROLL REVEAL BASE STYLES
   ========================================================================== */
.reveal-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-fade.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES (MOBILE RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-column {
    max-width: 500px;
    margin: 0 auto;
  }
  .contact-main-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .banner-text-long {
    display: none;
  }
  .banner-text-short {
    display: inline;
  }
  .section-padding {
    padding: 70px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .hide-mobile {
    display: none !important;
  }
  
  /* Mobile menu buttons trigger */
  .mobile-menu-btn {
    display: flex;
  }

  /* Slide-in Mobile menu overlay */
  .nav-menu {
    position: fixed;
    top: calc(var(--header-height) + var(--banner-height));
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - var(--header-height) - var(--banner-height));
    background-color: var(--color-bg-card);
    border-right: 1px solid var(--color-border);
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .nav-menu.open {
    left: 0;
  }

  .header.scrolled + .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }

  /* Hero adjustments */
  .hero {
    padding-top: calc(var(--header-height) + var(--banner-height) + 20px);
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-features-row {
    justify-content: center;
    gap: 15px 25px;
  }

  /* Counters, cards */
  .counters-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 10px;
  }
  .counter-box:not(:last-child)::after {
    display: none;
  }

  /* Contact Cards info */
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  /* Testimonial slider pad */
  .testimonial-content-box {
    padding: 30px;
  }
  .quote-icon {
    top: 15px;
    left: 15px;
  }

  /* Sticky CTA active */
  body {
    padding-bottom: 60px;
  }
  .sticky-cta-bar {
    display: flex;
  }
  
  .floating-controls {
    bottom: 80px;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .counters-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
  .modal-body {
    padding: 20px;
  }
}
