/* Main Design System & UI Styling for RWG Repair */

html, body {
  overflow-x: hidden !important;
  width: 100%;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  color: #334155;
  background-color: #ffffff;
  line-height: 1.6;
}

/* Top Emergency Bar */
.emergency-bar {
  background: linear-gradient(90deg, #1e1b4b 0%, #0f62fe 50%, #1e1b4b 100%);
  color: #ffffff;
  padding: 8px 15px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1001;
  width: 100%;
  box-sizing: border-box;
}
.emergency-bar span {
  display: inline-block;
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0% { opacity: 0.8; transform: scale(0.99); }
  50% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 0.8; transform: scale(0.99); }
}

/* Header Navbar - Fixed Sticky Full Visibility */
.site-header {
  background: #ffffff;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 99999;
  width: 100%;
  overflow: visible;
  transition: top 0.2s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

/* FIX FOR WORDPRESS ADMIN BAR COVERING STICKY HEADER */
body.admin-bar .site-header {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px !important;
  }
}

.header-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  width: 100%;
  box-sizing: border-box;
}

/* Logo Styling */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
}
.site-logo img {
  height: 52px;
  max-height: 55px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.logo-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
}
.logo-title span {
  color: #0f62fe;
}
.logo-subtitle {
  font-size: 0.72rem;
  color: #10b981;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Nav Links & Dropdown Menu */
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-links a:hover {
  color: #0f62fe;
}

/* Dropdown Submenu */
.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: #ffffff;
  min-width: 270px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
  border-radius: 14px;
  padding: 12px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  border: 1px solid #e2e8f0;
  z-index: 100000;
}
.dropdown-menu li {
  width: 100%;
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.dropdown-menu a:hover {
  background: #eff6ff;
  color: #0f62fe;
  padding-left: 24px;
}

/* Header CTA Group */
.header-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-call {
  background: #0f62fe;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(15, 98, 254, 0.25);
  white-space: nowrap;
}
.btn-call:hover {
  background: #0043ce;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 98, 254, 0.35);
}
.btn-whatsapp {
  background: #10b981;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
  white-space: nowrap;
}
.btn-whatsapp:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
}

/* Mobile Nav Toggle */
.mobile-nav-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #0f172a;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1;
}

/* NEW FRESH HERO SECTION DESIGN */
.hero-section-new {
  background: radial-gradient(circle at 50% 20%, #1e293b 0%, #0f172a 60%, #090d16 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.hero-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 98, 254, 0.25) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}
.hero-content-centered {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}
.live-status-pill .dot {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 10px #34d399;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.hero-heading-bold {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
}
.hero-heading-bold .gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle-centered {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 780px;
  margin: 0 auto 35px auto;
  line-height: 1.6;
}

/* HIGH-PRIORITY FORM & SUBMIT BUTTON STYLING FIX */
.contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid #cbd5e1;
}
.contact-form-card label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.contact-form-card input[type="text"],
.contact-form-card input[type="tel"],
.contact-form-card input[type="email"],
.contact-form-card select,
.contact-form-card textarea {
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 14px 18px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 10px !important;
  background-color: #f8fafc !important;
  font-size: 0.98rem !important;
  color: #0f172a !important;
  font-family: inherit !important;
  margin-bottom: 18px !important;
  transition: all 0.2s ease !important;
  outline: none !important;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: #0f62fe !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(15, 98, 254, 0.12) !important;
}

/* SUBMIT WHATSAPP BUTTON HIGH-PRIORITY STYLING */
button.btn-submit-booking,
.btn-submit-booking {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: #ffffff !important;
  padding: 16px 28px !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4) !important;
  transition: all 0.25s ease !important;
  margin-top: 15px !important;
  font-family: inherit !important;
  text-align: center !important;
}
button.btn-submit-booking:hover,
.btn-submit-booking:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5) !important;
}

/* High Contrast Location Page Filter Chips & Badges */
.filter-chip-btn {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #0f172a !important;
  padding: 12px 24px !important;
  border-radius: 50px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04) !important;
}
.filter-chip-btn:hover,
.filter-chip-btn.active {
  background: #0f62fe !important;
  border-color: #0f62fe !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 25px rgba(15, 98, 254, 0.35) !important;
}

.emirate-card-box {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 30px !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04) !important;
  margin-bottom: 30px !important;
}
.emirate-card-title {
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: 'Outfit', sans-serif !important;
}
.location-tags-wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}
.location-item-badge {
  background: #eff6ff !important;
  color: #0f62fe !important;
  border: 1px solid #bfdbfe !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  font-size: 0.9rem !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: all 0.2s ease !important;
  display: inline-block !important;
}
.location-item-badge:hover {
  background: #0f62fe !important;
  color: #ffffff !important;
  border-color: #0f62fe !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(15, 98, 254, 0.25) !important;
}

/* Horizontal Interactive Appliance Selector Chips */
.appliance-chips-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.chip-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f1f5f9;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}
.chip-item:hover, .chip-item.active {
  background: #0f62fe;
  border-color: #38bdf8;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 98, 254, 0.4);
}

/* Floating Trust Feature Cards */
.floating-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1050px;
  margin: 45px auto 0 auto;
  text-align: left;
}
.trust-card-glass {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease;
}
.trust-card-glass:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.4);
}
.trust-card-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.trust-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}
.trust-card-desc {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Section Padding & Headings */
.section-padding {
  padding: 80px 20px;
  width: 100%;
  box-sizing: border-box;
}
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
}
.section-tag {
  color: #0f62fe;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
}
.section-desc {
  font-size: 1.05rem;
  color: #64748b;
}

/* Services Grid */
.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 30px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(15, 98, 254, 0.12);
  border-color: #93c5fd;
}
.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  background: #eff6ff;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}
.service-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0f172a;
}
.service-card-desc {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 25px;
  flex-grow: 1;
}
.service-card-btn {
  background: #f1f5f9;
  color: #0f62fe;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s ease;
}
.service-card:hover .service-card-btn {
  background: #0f62fe;
  color: #ffffff;
}

/* Brands Supported Grid */
.brands-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 15px;
  align-items: center;
}
.brand-pill {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: #334155;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: all 0.2s ease;
}
.brand-pill:hover {
  border-color: #0f62fe;
  color: #0f62fe;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 98, 254, 0.1);
}

/* Process Steps Timeline */
.process-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.process-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.process-number {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #0f62fe;
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.process-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 15px 0 10px 0;
}

/* Live Stats Banner */
.stats-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 50px 30px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #38bdf8;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* Pricing Table Guide */
.pricing-table-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  overflow-x: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.pricing-table th {
  background: #0f172a;
  color: #ffffff;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 700;
}
.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 500;
}
.pricing-table tr:hover td {
  background: #f8fafc;
}
.price-tag {
  color: #10b981;
  font-weight: 800;
}

/* Customer Reviews Showcase */
.reviews-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.review-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.review-stars {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.review-text {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar-badge {
  background: #0f62fe;
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.user-name {
  font-weight: 800;
  color: #0f172a;
}
.user-loc {
  font-size: 0.8rem;
  color: #64748b;
}

/* FAQ Accordion */
.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  padding: 0 25px 20px 25px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Locations Section */
.locations-section {
  background: #0f172a;
  color: #ffffff;
}
.locations-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.emirate-box {
  background: #1e293b;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid #334155;
}
.emirate-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #38bdf8;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.location-tag {
  background: #334155;
  color: #f1f5f9;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}
.location-tag:hover {
  background: #10b981;
  color: #ffffff;
}

/* Footer */
.site-footer {
  background: #090d16;
  color: #94a3b8;
  padding: 60px 20px 20px 20px;
  font-size: 0.9rem;
  width: 100%;
  box-sizing: border-box;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand h3 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.footer-links h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #38bdf8;
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Mobile Sticky Bottom CTA Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  padding: 10px 15px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  border-top: 1px solid #334155;
  width: 100%;
  box-sizing: border-box;
}
.mobile-sticky-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sticky-btn-call {
  background: #0f62fe;
  color: #ffffff;
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 800;
  text-align: center;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sticky-btn-whatsapp {
  background: #10b981;
  color: #ffffff;
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 800;
  text-align: center;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* -------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES FOR PERFECT MOBILE DISPLAY
   ------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero-heading-bold {
    font-size: 2.5rem;
  }
  .nav-links {
    display: none;
  }
  .mobile-nav-btn {
    display: block;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* TABLETS AND MOBILE PHONES (<= 768px) */
@media (max-width: 768px) {
  /* HIDE LARGE PHONE NUMBER BUTTON FROM MOBILE HEADER TO PREVENT OVERFLOW */
  .hide-mobile {
    display: none !important;
  }

  .header-container {
    padding: 10px 15px;
    min-height: 60px;
  }

  .site-logo {
    gap: 8px;
  }
  .site-logo img {
    height: 44px !important;
    max-height: 44px !important;
  }
  .logo-title {
    font-size: 1.25rem !important;
  }
  .logo-subtitle {
    font-size: 0.65rem !important;
    letter-spacing: 0.3px;
  }

  .btn-whatsapp {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .hero-heading-bold {
    font-size: 2rem;
  }
  .hero-subtitle-centered {
    font-size: 1.05rem;
  }

  .mobile-sticky-bar {
    display: block;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .emergency-bar {
    font-size: 0.78rem;
    padding: 6px 10px;
  }
}

/* SMALL MOBILE PHONES (<= 480px) */
@media (max-width: 480px) {
  .site-logo img {
    height: 38px !important;
    max-height: 38px !important;
  }
  .logo-title {
    font-size: 1.1rem !important;
  }
  .logo-subtitle {
    display: none !important; /* Hide long subtitle text on small phone screens */
  }
  .header-cta-group {
    gap: 6px;
  }
  .btn-whatsapp {
    padding: 7px 10px;
    font-size: 0.78rem;
  }
  .mobile-nav-btn {
    font-size: 1.4rem;
    padding: 3px 6px;
  }
  .hero-heading-bold {
    font-size: 1.75rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .contact-form-card {
    padding: 20px 15px;
  }
}
