/* =========================
   Global Reset & Typography
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Cairo', 'Almarai', 'IBM Plex Sans Arabic', sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f9fafb;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.logo-badge {
  padding: 2px 5px;
  display: flex;
  align-items: center;
}

.logo-badge svg {
  max-height: 60px;
  width: auto;
  display: block;
}

/* Navbar Dropdown on Hover */
@media (min-width: 992px) {
  .navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Better looking dropdown menu */
.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 10px;
}

.dropdown-item {
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #0b5ed7;
  padding-right: 25px;
  /* RTL shift */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   RTL/LTR Support
========================= */
html[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

html[dir="ltr"] {
  direction: ltr;
  text-align: left;
}

html[dir="rtl"] .hero-cta .btn {
  margin: 6px 6px 6px 0;
}

html[dir="ltr"] .hero-cta .btn {
  margin: 6px 0 6px 6px;
}

html[dir="rtl"] .call-float {
  right: auto;
  left: 20px;
}

html[dir="rtl"] .whatsapp-float {
  right: 80px;
}

html[dir="rtl"] .slider-control.prev {
  left: auto;
  right: 20px;
}

html[dir="rtl"] .slider-control.next {
  right: auto;
  left: 20px;
}

/* =========================
   Hero Section
========================= */
.hero-section {
  position: relative;
  overflow: hidden;
  height: 450px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
  visibility: hidden;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  visibility: visible;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(5, 44, 99, 0.8) 0%, rgba(30, 64, 175, 0.7) 100%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-content h2 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 20px;
  font-weight: 400;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #e63946 0%, #dc2626 100%);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  color: #fff;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(5, 44, 99, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Slider Controls */
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  width: 50px;
  height: 50px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  pointer-events: auto !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-control i {
  pointer-events: none;
}

.slider-control:hover {
  background: #e63946;
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
  color: #fff;
}

.slider-control.prev {
  left: 30px;
}

.slider-control.next {
  right: 30px;
}

/* Ensure slider controls are visible */
.hero-section:hover .slider-control {
  opacity: 1;
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 15px;
  z-index: 1100;
  pointer-events: auto !important;
  padding: 10px;
}

.indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer !important;
  transition: all 0.3s ease;
  padding: 0;
  display: block;
}

.indicator.active {
  background: #e63946;
  transform: scale(1.4);
  border-color: #fff;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.8);
}

.indicator:hover {
  background: #fff;
  transform: scale(1.2);
}

/* Optimize hero slides for z-index layering */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
  z-index: 1;
  visibility: hidden;
}

.hero-slide.active {
  opacity: 1;
  z-index: 10;
  visibility: visible;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(5, 44, 99, 0.75) 0%, rgba(30, 64, 175, 0.65) 100%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 20;
  padding: 0 20px;
}

.trust-section {
  padding: 60px 0;
  background: #fff;
}

.trust-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #052c63;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.trust-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.trust-card .icon {
  font-size: 36px;
  color: #052c63;
  margin-bottom: 15px;
  display: inline-block;
  padding: 15px;
  background: linear-gradient(135deg, rgba(5, 44, 99, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
  border-radius: 50%;
}

.trust-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #052c63;
  font-weight: 600;
}

.trust-card p {
  color: #666;
  line-height: 1.6;
}

/* =========================
   Services Section
========================= */
.services-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #052c63;
  font-weight: 700;
}

.services-section p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #e63946 0%, #dc2626 100%);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card .icon {
  font-size: 36px;
  color: #e63946;
  margin-bottom: 15px;
  display: inline-block;
  padding: 15px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
  border-radius: 50%;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #052c63;
  font-weight: 600;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #052c63;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.service-link:hover {
  color: #e63946;
  gap: 10px;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(-3px);
}

/* =========================
   Repair Issues Section
========================= */
.repair-issues-section {
  padding: 60px 0;
  background: #fff;
}

.repair-issues-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #052c63;
  font-weight: 700;
}

.issues-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.issue-card {
  background: #fff;
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.issue-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.issue-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.issue-card .icon {
  font-size: 32px;
  color: #f59e0b;
  margin-bottom: 12px;
  display: inline-block;
  padding: 12px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
  border-radius: 50%;
}

.issue-card h3 {
  font-size: 1.1rem;
  color: #052c63;
  font-weight: 600;
  margin-bottom: 8px;
}

.issue-card p {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
  line-height: 1.4;
}

/* =========================
   Areas Section
========================= */
.areas-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.areas-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #052c63;
  font-weight: 700;
}

.areas-section p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #666;
}

#riyadh-map {
  height: 400px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* =========================
   About Section
========================= */
.about-section {
  padding: 60px 0;
  background: #fff;
}

/* =========================
   Page Hero (Shared)
========================= */
.page-hero {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  color: #fff;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 55%),
    radial-gradient(circle at 80% 30%, rgba(230, 57, 70, 0.18) 0%, rgba(230, 57, 70, 0) 45%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero__breadcrumb .breadcrumb {
  justify-content: center;
  background: transparent;
  margin-bottom: 0;
}

.page-hero__breadcrumb .breadcrumb-item,
.page-hero__breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.page-hero__breadcrumb .breadcrumb-item a:hover {
  color: #fff;
  text-decoration: underline;
}

.page-hero__breadcrumb .breadcrumb-item.active {
  color: #fff;
}

.page-hero__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.page-hero__subtitle {
  font-size: 1.05rem;
  margin: 0;
  opacity: 0.95;
}

/* =========================
   About Page (Enhanced)
========================= */
.about-section-title {
  color: #052c63;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.about-muted {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
}

.about-lead {
  color: #0f172a;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-paragraph {
  color: #475569;
  line-height: 1.9;
  font-size: 1rem;
}

.about-badge {
  padding: 0.55rem 0.75rem;
  font-weight: 700;
}

.about-image img {
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(2, 6, 23, 0.14);
}

.about-stat-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(2, 6, 23, 0.10);
}

.about-stat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: #fff;
  background: linear-gradient(135deg, #e63946 0%, #b91c1c 100%);
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.25);
}

.about-stat-card__number {
  font-size: 1.8rem;
  font-weight: 900;
  color: #052c63;
  line-height: 1.1;
}

.about-stat-card__label {
  color: #64748b;
  font-weight: 600;
  margin-top: 6px;
}

.about-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(2, 6, 23, 0.10);
}

.about-feature-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 44, 99, 0.10);
  color: #052c63;
  margin-bottom: 12px;
  font-size: 18px;
}

.about-feature-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #052c63;
  margin-bottom: 8px;
}

.about-feature-card__text {
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.about-step-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
}

.about-step-card__num {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  margin-bottom: 12px;
}

.about-step-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #052c63;
  margin-bottom: 8px;
}

.about-step-card__text {
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.about-panel {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
}

.about-panel--accent {
  background: linear-gradient(135deg, rgba(5, 44, 99, 0.06) 0%, rgba(230, 57, 70, 0.06) 100%);
}

.about-area-pill {
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-weight: 700;
  padding: 0.55rem 0.8rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: #0f172a;
}

.about-list i {
  color: #10b981;
  margin-top: 4px;
}

.about-cta {
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  color: #fff;
}

.about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 18px;
  border-radius: 18px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 55%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.about-cta__title {
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 0 6px;
}

.about-cta__subtitle {
  margin: 0;
  opacity: 0.95;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-accordion .accordion-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
}

.about-accordion .accordion-item+.accordion-item {
  margin-top: 12px;
}

.about-accordion .accordion-button {
  font-weight: 800;
  color: #052c63;
  background: #fff;
}

.about-accordion .accordion-button:not(.collapsed) {
  background: rgba(5, 44, 99, 0.06);
  color: #052c63;
  box-shadow: none;
}

.about-accordion .accordion-body {
  color: #475569;
  line-height: 1.85;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 55px 0;
  }

  .about-cta__inner {
    flex-direction: column;
    text-align: center;
  }
}

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

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #052c63;
  font-weight: 700;
}

.about-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #e63946;
  font-weight: 600;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
}

.about-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  background: #fff;
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  min-width: 120px;
}

.stat-number {
  font-size: 2rem;
  color: #052c63;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  color: #666;
  font-weight: 500;
  margin-bottom: 5px;
}

.stat-desc {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
  font-weight: 400;
}

/* =========================
   FAQ Section
========================= */
.faq-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #052c63;
  font-weight: 700;
}

.faq-item {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.faq-question {
  padding: 20px 25px;
  background: #f8f9fa;
  font-weight: 600;
  color: #052c63;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-question i {
  color: #fbbf24;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-answer {
  padding: 20px 25px;
  color: #666;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* =========================
   Contact & Booking Section
========================= */
.contact-booking-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-booking-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #052c63;
  font-weight: 700;
}

.contact-booking-section p {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: #666;
}

.contact-booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-info-column h3,
.booking-form-column h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #052c63;
  font-weight: 600;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.contact-info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-info-item .icon {
  font-size: 24px;
  color: #052c63;
  margin-top: 5px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(5, 44, 99, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
  border-radius: 50%;
  min-width: 48px;
  text-align: center;
}

.contact-info-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #052c63;
  font-weight: 600;
}

.contact-info-item p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

.booking-form-column {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.booking-form {
  width: 100%;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #052c63;
}

.form-group label i {
  color: #e63946;
  font-size: 1rem;
}

.form-description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-align: center;
}

.form-note {
  text-align: center;
  color: #25D366;
  font-size: 0.9rem;
  margin-top: 15px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
}

.form-note i {
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #052c63;
  box-shadow: 0 0 0 3px rgba(5, 44, 99, 0.1);
}

.form-group input:invalid,
.form-group textarea:invalid {
  border-color: #ef4444;
}

.form-group input:valid,
.form-group textarea:valid {
  border-color: #10b981;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.booking-form .btn {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
}

/* =========================
   Footer
========================= */
.footer {
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 1.1rem;
}

/* =========================
   Floating Buttons
========================= */
.whatsapp-float,
.call-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
}

.whatsapp-float {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.call-float {
  right: 100px;
  background: linear-gradient(135deg, #e63946 0%, #dc2626 100%);
}

.whatsapp-float:hover,
.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* =========================
   Notifications
========================= */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification-success {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.notification-error {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.notification-info {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

html[dir="rtl"] .notification {
  right: auto;
  left: 20px;
  transform: translateX(-100%);
}

/* =========================
   Animations
========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =========================
   Responsive Design
========================= */
@media (max-width: 1024px) {
  .issues-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 0 15px;
  }

  .top-bar {
    padding: 0;
    font-size: 12px;
    min-height: 14px;
    margin-top: 0;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 3px;
    margin: 0;
    padding: 0;
  }

  .contact-info {
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
  }

  .top-bar a {
    gap: 2px;
    padding: 0 2px;
    font-size: 11px;
  }

  .top-bar a i {
    font-size: 10px;
  }

  .language-toggle {
    gap: 2px;
  }

  .lang-btn {
    font-size: 11px;
    padding: 0 2px;
  }

  .main-header .container {
    flex-direction: column;
    gap: 15px;
  }

  .main-nav ul {
    flex-direction: column;
    background: #fff;
    padding: 20px;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    border-radius: 0 0 10px 10px;
    z-index: 1001;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .main-nav ul.show {
    display: flex;
  }

  .main-nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: flex !important;
  }

  .main-nav {
    position: relative;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .slider-control {
    padding: 10px;
    font-size: 16px;
  }

  .slider-control.prev {
    left: 10px;
  }

  .slider-control.next {
    right: 10px;
  }

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

  .issues-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

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

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

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

  .booking-form {
    padding: 30px 20px;
  }

  .whatsapp-float,
  .call-float {
    width: 50px;
    height: 50px;
    font-size: 20px;
    bottom: 20px;
    right: 20px;
  }

  .call-float {
    right: 80px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content h2 {
    font-size: 1rem;
  }

  .trust-section h2,
  .services-section h2,
  .repair-issues-section h2,
  .areas-section h2,
  .about-content h2,
  .faq-section h2,
  .contact-section h2,
  .booking-section h2 {
    font-size: 2rem;
  }

  .trust-card,
  .service-card,
  .issue-card {
    padding: 25px 20px;
  }

  .booking-form {
    padding: 25px 15px;
  }
}

/* =========================
   How We Work Section
========================= */
.how-we-work-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 60px 0;
}

.how-we-work-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #052c63;
  font-weight: 700;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e63946 0%, #dc2626 100%);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-card .icon {
  font-size: 40px;
  color: #052c63;
  margin-bottom: 20px;
  display: inline-block;
  padding: 20px;
  background: linear-gradient(135deg, rgba(5, 44, 99, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
  border-radius: 50%;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #052c63;
  font-weight: 600;
}

.step-card p {
  color: #666;
  line-height: 1.6;
}

/* =========================
   Section Titles
========================= */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary, #052c63);
  text-align: center;
  margin-bottom: 2rem;
}

/* =========================
   How We Work Section
========================= */
.how-we-work {
  padding: 60px 20px;
  background: #f9fafb;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--accent, #e63946);
  color: #fff;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.step-icon {
  font-size: 2rem;
  color: var(--primary, #052c63);
  margin-bottom: 1rem;
}

/* =========================
   Brands Section
========================= */
.brands-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.brands-section .section-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #052c63;
  /* your brand navy */
  margin-bottom: 30px;
}

/* Brands Slider */
.brands-slider {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
}

.brands-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.brand-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 150px;
  flex-shrink: 0;
  position: relative;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.brand-card img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(1) contrast(1.1);
}

/* Brand Fallback Text */
.brand-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  height: 60px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #052c63;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  border: 2px solid #dee2e6;
}

/* Slider Controls */
.brands-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(5, 44, 99, 0.8);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brands-slider-btn:hover {
  background: rgba(5, 44, 99, 1);
  transform: translateY(-50%) scale(1.1);
}

.brands-slider-btn.prev {
  left: 10px;
}

.brands-slider-btn.next {
  right: 10px;
}

.brands-slider-btn i {
  font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .brands-slider {
    padding: 0 40px;
  }

  .brand-card {
    min-width: 120px;
    padding: 12px;
  }

  .brand-card img {
    max-height: 50px;
  }

  .brand-fallback {
    height: 50px;
    font-size: 1rem;
  }

  .brands-slider-btn {
    width: 35px;
    height: 35px;
  }
}

/* =========================
   Gallery Section
========================= */
.gallery-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.gallery-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #052c63;
}

.gallery-section p {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 44, 99, 0.8) 0%, rgba(30, 64, 175, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  color: #fff;
  padding: 25px;
  width: 100%;
}

.gallery-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.gallery-content p {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.9;
}

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

.gallery-cta .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

/* =========================
   New Sections Styles
========================= */

/* Steps Section */
.steps-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.step {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-num {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.step .icon {
  font-size: 48px;
  color: #052c63;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #052c63;
}

.step p {
  color: #666;
  line-height: 1.6;
}

/* Brands Section */
.brands-section {
  padding: 80px 0;
  background: #fff;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 40px;
  align-items: center;
}

.brands-grid img {
  max-width: 120px;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  opacity: 0.7;
}

.brands-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Areas Grid */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.areas-list {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.areas-list p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #052c63;
  font-weight: 600;
}

.areas-list ul {
  list-style: none;
  padding: 0;
}

.areas-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #666;
  font-size: 1rem;
}

.areas-list li:last-child {
  border-bottom: none;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #052c63;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.about-points {
  list-style: none;
  padding: 0;
}

.about-points li {
  padding: 10px 0;
  font-size: 1.1rem;
  color: #052c63;
  font-weight: 500;
}

.about-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #052c63;
}

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

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #052c63;
}

.contact-info {
  background: #052c63;
  color: #fff;
  padding: 40px;
  border-radius: 16px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.contact-info i {
  font-size: 20px;
  color: #25D366;
}

/* Enhanced Footer */
.footer {
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  color: #fff;
  padding: 70px 0 25px;
  font-family: "Tajawal", sans-serif;
  overflow: hidden;
}

.footer-col {
  height: 100%;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background: #e63946;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-links li a::before {
  content: "\f104";
  /* fa-angle-left */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8rem;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.footer-links li a:hover {
  color: #fff;
  padding-right: 5px;
}

.footer-links li a:hover::before {
  transform: translateX(-3px);
  color: #e63946;
  opacity: 1;
}

.contact-list p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-list i {
  width: 20px;
  text-align: center;
}

.footer-logo-wrapper {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Footer Icon Colors High Contrast */
.footer .text-warning {
  color: #fbbf24 !important;
}

.footer .text-success {
  color: #4ade80 !important;
}

.footer .text-danger {
  color: #f87171 !important;
}

.footer .text-info {
  color: #38bdf8 !important;
}



.social-links a {
  display: inline-block;
  margin-right: 12px;
  color: #fff;
  font-size: 18px;
  transition: color .3s, transform .2s;
}

.social-links a:hover {
  color: #25D366;
  transform: scale(1.1);
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #cbd5e1;
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 15px;
}

/* =========================
   Problems Page - Enhanced Styles
========================= */

/* Stats Bar */
.problems-stats-bar {
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  padding: 20px 0;
  margin-top: -1px;
}

.stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}

.stat-item i {
  font-size: 28px;
  color: #fbbf24;
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 800;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #052c63;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

.section-header--light h2 {
  color: #fff;
}

.section-header--light p {
  color: rgba(255, 255, 255, 0.85);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
  color: #e63946;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-badge--secondary {
  background: linear-gradient(135deg, rgba(5, 44, 99, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
  color: #052c63;
}

.section-badge--warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
  color: #d97706;
}

.section-badge--light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Problems Content Section */
.problems-content-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Problems Grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* Problem Card */
.problem-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #e63946 0%, #dc2626 100%);
}

.problem-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #e63946 0%, #dc2626 100%);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.problem-card__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.problem-card:hover .problem-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.problem-card__icon i {
  font-size: 32px;
  color: #e63946;
}

.problem-card__icon--water {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
}

.problem-card__icon--water i {
  color: #3b82f6;
}

.problem-card__icon--noise {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.problem-card__icon--noise i {
  color: #f59e0b;
}

.problem-card__icon--spin {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.problem-card__icon--spin i {
  color: #10b981;
}

.problem-card__icon--error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
}

.problem-card__icon--error i {
  color: #ef4444;
}

.problem-card__icon--power {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
}

.problem-card__icon--power i {
  color: #6366f1;
}

.problem-card__content {
  flex: 1;
}

.problem-card__content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #052c63;
  margin-bottom: 12px;
}

.problem-card__content>p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.problem-card__solutions {
  background: #f8fafc;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
}

.problem-card__solutions h4 {
  font-size: 0.9rem;
  color: #052c63;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.problem-card__solutions h4 i {
  color: #fbbf24;
}

.problem-card__solutions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-card__solutions li {
  padding: 5px 0;
  padding-right: 20px;
  position: relative;
  color: #475569;
  font-size: 0.9rem;
}

.problem-card__solutions li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: #10b981;
  font-weight: bold;
}

.problem-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e63946;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.problem-card__cta:hover {
  gap: 15px;
  color: #dc2626;
}

/* More Problems Section */
.more-problems-section {
  padding: 60px 0;
  background: #fff;
}

.mini-problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.mini-problem-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.mini-problem-item:hover {
  background: #fff;
  border-color: #e63946;
  transform: translateX(-5px);
  box-shadow: 0 5px 20px rgba(230, 57, 70, 0.15);
}

.mini-problem-item i {
  font-size: 20px;
  color: #e63946;
  width: 24px;
  text-align: center;
}

.mini-problem-item span {
  font-weight: 600;
  color: #052c63;
}

/* Error Codes Section */
.error-codes-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.error-codes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.error-code-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
}

.error-code-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #d97706;
}

.error-code {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
}

.error-meaning {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

.error-codes-note {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  padding: 20px;
}

.error-codes-note i {
  font-size: 24px;
  color: #3b82f6;
  flex-shrink: 0;
}

.error-codes-note p {
  margin: 0;
  color: #1e40af;
  font-weight: 500;
}

/* Tips Section */
.tips-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  position: relative;
  overflow: hidden;
}

.tips-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(230, 57, 70, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.tips-wrapper {
  position: relative;
  z-index: 1;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.tip-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 25px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.tip-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.tip-number {
  font-size: 2rem;
  font-weight: 900;
  color: #fbbf24;
  line-height: 1;
  flex-shrink: 0;
}

.tip-content h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.tip-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Brands Section */
.brands-section {
  padding: 60px 0;
  background: #fff;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.brand-item {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  color: #052c63;
  transition: all 0.3s ease;
}

.brand-item:hover {
  background: #052c63;
  border-color: #052c63;
  color: #fff;
  transform: scale(1.05);
}

/* Emergency CTA Section */
.emergency-cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.emergency-cta-box {
  background: linear-gradient(135deg, #e63946 0%, #dc2626 100%);
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.3);
  position: relative;
  overflow: hidden;
}

.emergency-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.emergency-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.emergency-icon i {
  font-size: 36px;
  color: #fff;
}

.emergency-content {
  flex: 1;
  min-width: 250px;
}

.emergency-content h2 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.emergency-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin: 0;
}

.emergency-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-emergency {
  background: #fff;
  color: #e63946;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-emergency:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #dc2626;
}

.btn-whatsapp-large {
  background: #25D366;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
  transform: translateY(-3px) scale(1.02);
  background: #128C7E;
  color: #fff;
}

/* Responsive for new sections */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .gallery-section h2 {
    font-size: 2rem;
  }

  .gallery-content {
    padding: 20px;
  }

  .gallery-content h3 {
    font-size: 1.1rem;
  }

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

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

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

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

  .contact-info-column,
  .booking-form-column {
    padding: 20px;
  }

  /* Problems Page Responsive */
  .problems-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-direction: column;
    gap: 15px;
  }

  .stat-item {
    width: 100%;
    justify-content: center;
  }

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

  .error-codes-grid {
    grid-template-columns: 1fr;
  }

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

  .tip-card {
    flex-direction: column;
    text-align: center;
  }

  .emergency-cta-box {
    padding: 30px;
    flex-direction: column;
    text-align: center;
  }

  .emergency-icon {
    width: 70px;
    height: 70px;
  }

  .emergency-icon i {
    font-size: 28px;
  }

  .emergency-actions {
    justify-content: center;
    width: 100%;
  }

  .btn-emergency,
  .btn-whatsapp-large {
    width: 100%;
    justify-content: center;
    padding: 12px 25px;
  }

  .brands-list {
    gap: 10px;
  }

  .brand-item {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .problem-card__badge {
    top: 15px;
    left: 15px;
    font-size: 0.7rem;
  }

}

/* =========================
   Service Pages - Enhanced Styles
========================= */

/* Service Stats Bar */
.service-stats-bar {
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  padding: 25px 0;
  margin-top: -1px;
}

.service-stats-bar .stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.service-stats-bar .stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}

.service-stats-bar .stat-item i {
  font-size: 32px;
  color: #fbbf24;
}

.service-stats-bar .stat-text {
  display: flex;
  flex-direction: column;
}

.service-stats-bar .stat-number {
  font-size: 1.3rem;
  font-weight: 800;
}

.service-stats-bar .stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Service Intro Section */
.service-intro-section {
  padding: 80px 0;
  background: #f8fafc;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.service-intro-content h2 {
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 20px;
}

.service-intro-content .lead-text {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: #334155;
  font-size: 1rem;
}

.service-list li i {
  color: #22c55e;
  font-size: 1.1rem;
}

.service-cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.service-cta-buttons .btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.service-cta-buttons .btn-whatsapp {
  background: #25D366;
  color: #fff;
}

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

/* Service Intro Image */
.service-intro-image .image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.image-placeholder i {
  font-size: 80px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.image-placeholder span {
  font-size: 1.2rem;
  font-weight: 600;
}

.image-placeholder--blue {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.image-placeholder--purple {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
}

.image-placeholder--teal {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}

.image-placeholder--orange {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

.image-placeholder--green {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fbbf24;
  color: #0f172a;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.image-badge--blue {
  background: #3b82f6;
  color: #fff;
}

.image-badge--purple {
  background: #8b5cf6;
  color: #fff;
}

.image-badge--teal {
  background: #14b8a6;
  color: #fff;
}

.image-badge--orange {
  background: #f97316;
  color: #fff;
}

.image-badge--green {
  background: #22c55e;
  color: #fff;
}

/* Service Features Section */
.service-features-section {
  padding: 80px 0;
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 28px;
  color: #fff;
}

.feature-icon--blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.feature-icon--green {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.feature-icon--purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.feature-icon--orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.feature-icon--teal {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.feature-card h3 {
  font-size: 1.2rem;
  color: #0f172a;
  margin-bottom: 12px;
}

.feature-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Service Problems Section */
.service-problems-section {
  padding: 80px 0;
  background: #f8fafc;
}

.problems-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.problem-service-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.problem-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.problem-service-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-service-icon i {
  font-size: 22px;
  color: #fff;
}

.problem-service-icon--blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.problem-service-icon--green {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.problem-service-icon--purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.problem-service-icon--orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.problem-service-icon--teal {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.problem-service-icon--red {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.problem-service-icon--yellow {
  background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
}

.problem-service-content h4 {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 8px;
}

.problem-service-content p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Brands Repair Section */
.brands-repair-section {
  padding: 80px 0;
  background: #fff;
}

.brands-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.brand-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.brand-card:hover {
  border-color: #052c63;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(5, 44, 99, 0.1);
}

.brand-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 5px;
}

.brand-card span {
  font-size: 0.85rem;
  color: #64748b;
}

/* Service Process Section */
.service-process-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
}

.section-header--light {
  text-align: center;
  margin-bottom: 50px;
}

.section-header--light h2 {
  color: #fff;
}

.section-header--light p {
  color: rgba(255, 255, 255, 0.8);
}

.section-badge--light {
  background: rgba(255, 255, 255, 0.15);
  color: #fbbf24;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #fbbf24;
  color: #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step-content h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Service FAQ Section */
.service-faq-section {
  padding: 80px 0;
  background: #f8fafc;
}

.faq-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.faq-service-item {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.faq-service-question {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.faq-service-question i {
  color: #052c63;
  font-size: 1.2rem;
}

.faq-service-question h4 {
  color: #0f172a;
  font-size: 1rem;
  margin: 0;
}

.faq-service-item p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  padding-right: 32px;
}

/* Other Services Section */
.other-services-section {
  padding: 80px 0;
  background: #fff;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.other-service-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.other-service-card:hover {
  border-color: #052c63;
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(5, 44, 99, 0.1);
}

.other-service-card i {
  font-size: 40px;
  color: #052c63;
  margin-bottom: 15px;
}

.other-service-card h4 {
  color: #0f172a;
  font-size: 1rem;
  margin: 0;
}

/* Specialized Services Section */
.specialized-services-section {
  padding: 80px 0;
  background: #f8fafc;
}

.specialized-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.specialized-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.specialized-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.specialized-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.specialized-icon i {
  font-size: 28px;
  color: #fff;
}

.specialized-icon--blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.specialized-icon--green {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.specialized-icon--orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.specialized-card h3 {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 12px;
}

.specialized-card>p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.specialized-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specialized-card ul li {
  color: #475569;
  font-size: 0.9rem;
  padding: 6px 0;
  padding-right: 20px;
  position: relative;
}

.specialized-card ul li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: #22c55e;
  font-weight: bold;
}

/* Service Pages Responsive */
@media (max-width: 992px) {
  .service-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-intro-image {
    order: -1;
  }

  .image-placeholder {
    padding: 60px 30px;
  }

  .image-placeholder i {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .service-stats-bar .stats-row {
    flex-direction: column;
    gap: 25px;
  }

  .service-stats-bar .stat-item {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .service-intro-section,
  .service-features-section,
  .service-problems-section,
  .brands-repair-section,
  .service-process-section,
  .service-faq-section,
  .other-services-section,
  .specialized-services-section {
    padding: 50px 0;
  }

  .service-intro-content h2 {
    font-size: 1.6rem;
  }

  .service-cta-buttons {
    flex-direction: column;
  }

  .service-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .features-grid,
  .problems-service-grid,
  .faq-service-grid {
    grid-template-columns: 1fr;
  }

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

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

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

/* =========================
   Areas Page - Enhanced Styles
========================= */

/* Areas Stats Bar */
.areas-stats-bar {
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  padding: 25px 0;
  margin-top: -1px;
}

.areas-stats-bar .stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.areas-stats-bar .stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}

.areas-stats-bar .stat-item i {
  font-size: 32px;
  color: #22c55e;
}

.areas-stats-bar .stat-text {
  display: flex;
  flex-direction: column;
}

.areas-stats-bar .stat-number {
  font-size: 1.3rem;
  font-weight: 800;
}

.areas-stats-bar .stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: #f8fafc;
}

.map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

#service-map,
#riyadh-map {
  height: 450px;
  width: 100%;
  z-index: 1;
}

.map-legend {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  gap: 20px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #334155;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-dot--primary {
  background: #1e40af;
  opacity: 0.6;
}

.legend-dot--secondary {
  background: #ef4444;
}

/* Areas Main Section */
.areas-main-section {
  padding: 80px 0;
  background: #fff;
}

.areas-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.area-category-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.area-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.area-category-card--featured {
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  border-color: #14b8a6;
}

.area-category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f1f5f9;
}

.area-category-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-category-icon i {
  font-size: 20px;
  color: #fff;
}

.area-category-icon--blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.area-category-icon--green {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.area-category-icon--orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.area-category-icon--purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.area-category-icon--teal {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.area-category-header h3 {
  font-size: 1.25rem;
  color: #0f172a;
  margin: 0;
}

.area-list-enhanced {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.area-list-enhanced li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #475569;
  font-size: 0.95rem;
  border-bottom: 1px solid #f1f5f9;
}

.area-list-enhanced li:last-child {
  border-bottom: none;
}

.area-list-enhanced li i {
  color: #22c55e;
  font-size: 0.85rem;
}

.area-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.area-cta-link:hover {
  background: linear-gradient(135deg, #1e40af 0%, #052c63 100%);
  transform: translateY(-2px);
  color: #fff;
}

/* Areas Features Section */
.areas-features-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
}

.areas-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.area-feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.area-feature-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.area-feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.area-feature-icon i {
  font-size: 28px;
  color: #fbbf24;
}

.area-feature-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.area-feature-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Popular Areas Section */
.popular-areas-section {
  padding: 80px 0;
  background: #f8fafc;
}

.popular-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.popular-area-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-size: 0.95rem;
  color: #334155;
  transition: all 0.3s ease;
  cursor: pointer;
}

.popular-area-chip:hover {
  border-color: #052c63;
  background: #052c63;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 44, 99, 0.2);
}

.popular-area-chip i {
  color: #ef4444;
  font-size: 0.9rem;
}

.popular-area-chip:hover i {
  color: #fbbf24;
}

/* Not In List Section */
.not-in-list-section {
  padding: 60px 0;
  background: #fff;
}

.not-in-list-box {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 20px;
  border: 2px solid #fbbf24;
}

.not-in-list-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.not-in-list-icon i {
  font-size: 36px;
  color: #f59e0b;
}

.not-in-list-content {
  flex-grow: 1;
}

.not-in-list-content h3 {
  font-size: 1.4rem;
  color: #0f172a;
  margin-bottom: 8px;
}

.not-in-list-content p {
  color: #475569;
  font-size: 1rem;
  margin: 0;
}

.not-in-list-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.not-in-list-actions .btn {
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.not-in-list-actions .btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.not-in-list-actions .btn-whatsapp:hover {
  background: #128C7E;
}

/* Areas Page Responsive */
@media (max-width: 992px) {
  .not-in-list-box {
    flex-direction: column;
    text-align: center;
  }

  .not-in-list-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .areas-stats-bar .stats-row {
    flex-direction: column;
    gap: 25px;
  }

  .areas-stats-bar .stat-item {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .map-section,
  .areas-main-section,
  .areas-features-section,
  .popular-areas-section {
    padding: 50px 0;
  }

  #service-map,
  #riyadh-map {
    height: 300px;
  }

  .map-legend {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 15px;
    justify-content: center;
  }

  .areas-categories-grid {
    grid-template-columns: 1fr;
  }

  .areas-features-grid {
    grid-template-columns: 1fr;
  }

  .not-in-list-box {
    padding: 30px 20px;
  }

  .not-in-list-icon {
    width: 60px;
    height: 60px;
  }

  .not-in-list-icon i {
    font-size: 28px;
  }

  .not-in-list-actions {
    flex-direction: column;
  }

  .not-in-list-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .popular-areas-grid {
    gap: 10px;
  }

  .popular-area-chip {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* =========================
   Gallery Page - Enhanced Styles
========================= */

/* Gallery Stats Bar */
.gallery-stats-bar {
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  padding: 25px 0;
  margin-top: -1px;
}

.gallery-stats-bar .stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-stats-bar .stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}

.gallery-stats-bar .stat-item i {
  font-size: 32px;
  color: #fbbf24;
}

.gallery-stats-bar .stat-text {
  display: flex;
  flex-direction: column;
}

.gallery-stats-bar .stat-number {
  font-size: 1.3rem;
  font-weight: 800;
}

.gallery-stats-bar .stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Gallery Filter Section */
.gallery-filter-section {
  padding: 40px 0;
  background: #f8fafc;
}

.gallery-filter-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery-filter-btn {
  padding: 12px 24px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gallery-filter-btn:hover {
  border-color: #052c63;
  color: #052c63;
}

.gallery-filter-btn.active {
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  border-color: #052c63;
  color: #fff;
}

.gallery-filter-btn i {
  font-size: 0.9rem;
}

/* Gallery Main Section */
.gallery-main-section {
  padding: 60px 0 80px;
  background: #f8fafc;
}

/* Gallery Masonry Grid */
.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

.gallery-masonry-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-masonry-item--large {
  grid-row: span 2;
}

.gallery-masonry-item--wide {
  grid-column: span 2;
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-masonry-item:hover .gallery-image-wrapper img {
  transform: scale(1.1);
}

.gallery-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-masonry-item:hover .gallery-image-overlay {
  opacity: 1;
}

.gallery-image-content {
  color: #fff;
}

.gallery-category {
  display: inline-block;
  padding: 5px 12px;
  background: #fbbf24;
  color: #0f172a;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.gallery-image-content h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.gallery-image-content p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.gallery-zoom-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
}

.gallery-masonry-item:hover .gallery-zoom-btn {
  opacity: 1;
  transform: translateY(0);
}

.gallery-zoom-btn:hover {
  background: #052c63;
  color: #fff;
}

.gallery-zoom-btn i {
  font-size: 1rem;
  color: #052c63;
}

.gallery-zoom-btn:hover i {
  color: #fff;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #fbbf24;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

#lightbox-caption {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 20px;
  text-align: center;
}

/* Gallery Video Section */
.gallery-video-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
}

.video-placeholder {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 80px 40px;
  text-align: center;
  border: 2px dashed rgba(255, 255, 255, 0.3);
}

.video-placeholder-content i {
  font-size: 60px;
  color: #fbbf24;
  margin-bottom: 20px;
}

.video-placeholder-content h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.video-placeholder-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* Gallery Testimonials Section */
.gallery-testimonials-section {
  padding: 80px 0;
  background: #f8fafc;
}

.testimonials-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-gallery-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.testimonial-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  margin-bottom: 15px;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 1rem;
  margin-left: 2px;
}

.testimonial-text {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar i {
  color: #fff;
  font-size: 1.2rem;
}

.author-info h4 {
  color: #0f172a;
  font-size: 1rem;
  margin-bottom: 2px;
}

.author-info span {
  color: #64748b;
  font-size: 0.85rem;
}

/* Gallery CTA Section */
.gallery-cta-section {
  padding: 60px 0;
  background: #fff;
}

.gallery-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 50px;
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(5, 44, 99, 0.3);
}

.gallery-cta-content h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.gallery-cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin: 0;
}

.gallery-cta-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.gallery-cta-actions .btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.gallery-cta-actions .btn-primary {
  background: #fff;
  color: #052c63;
}

.gallery-cta-actions .btn-primary:hover {
  background: #f1f5f9;
}

.gallery-cta-actions .btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.gallery-cta-actions .btn-whatsapp:hover {
  background: #128C7E;
}

/* fadeIn animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery Page Responsive */
@media (max-width: 1200px) {
  .gallery-masonry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }

  .gallery-masonry-item--large {
    grid-row: span 1;
  }

  .gallery-cta-box {
    flex-direction: column;
    text-align: center;
  }

  .gallery-cta-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .gallery-stats-bar .stats-row {
    flex-direction: column;
    gap: 25px;
  }

  .gallery-stats-bar .stat-item {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .gallery-filter-section {
    padding: 30px 0;
  }

  .gallery-filter-wrapper {
    gap: 8px;
  }

  .gallery-filter-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .gallery-main-section,
  .gallery-video-section,
  .gallery-testimonials-section {
    padding: 50px 0;
  }

  .gallery-masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .gallery-masonry-item--wide {
    grid-column: span 1;
  }

  .video-placeholder {
    padding: 50px 25px;
  }

  .video-placeholder-content i {
    font-size: 45px;
  }

  .testimonials-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-cta-box {
    padding: 35px 25px;
  }

  .gallery-cta-content h2 {
    font-size: 1.4rem;
  }

  .gallery-cta-actions {
    flex-direction: column;
  }

  .gallery-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 30px;
  }
}

/* =========================
   FAQ Page - Enhanced Styles
========================= */

/* FAQ Stats Bar */
.faq-stats-bar {
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  padding: 25px 0;
  margin-top: -1px;
}

.faq-stats-bar .stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.faq-stats-bar .stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}

.faq-stats-bar .stat-item i {
  font-size: 32px;
  color: #fbbf24;
}

.faq-stats-bar .stat-text {
  display: flex;
  flex-direction: column;
}

.faq-stats-bar .stat-number {
  font-size: 1.3rem;
  font-weight: 800;
}

.faq-stats-bar .stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* FAQ Main Section */
.faq-main-section {
  padding: 80px 0;
  background: #f8fafc;
}

.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f5f9;
}

.faq-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: #475569;
  font-weight: 600;
  text-align: right;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-nav-btn i {
  width: 20px;
  color: #64748b;
}

.faq-nav-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.faq-nav-btn.active {
  background: #052c63;
  color: #fff;
  border-color: #052c63;
}

.faq-nav-btn.active i {
  color: #fbbf24;
}

.sidebar-cta {
  background: linear-gradient(135deg, #052c63 0%, #1e40af 100%);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  text-align: center;
}

.sidebar-cta i {
  font-size: 40px;
  color: #fbbf24;
  margin-bottom: 15px;
}

.sidebar-cta h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Content Area */
.faq-search-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-search-box i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #052c63;
}

.faq-search-box input {
  width: 100%;
  padding: 18px 50px 18px 20px;
  border: none;
  font-size: 1rem;
  outline: none;
}

.faq-group {
  display: none;
  animation: fadeIn 0.4s ease;
}

.faq-group.active {
  display: block;
}

.group-title {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 20px;
  padding-right: 15px;
  border-right: 4px solid #052c63;
}

/* Bootstrap Accordion Customization */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px !important;
  overflow: hidden;
}

.accordion-button {
  background: #fff;
  color: #0f172a;
  font-weight: 700;
  padding: 20px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: #052c63;
  color: #fff;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c63'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  background: #fff;
  color: #475569;
  line-height: 1.8;
  padding: 20px 25px 30px;
}

/* Care Section */
.faq-care-section {
  padding: 80px 0;
  background: #fff;
}

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

.care-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.care-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #334155;
}

.care-feature i {
  color: #22c55e;
}

.care-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.care-card .card-header {
  background: #0f172a;
  color: #fff;
  padding: 30px;
}

.care-card .card-header i {
  font-size: 40px;
  color: #fbbf24;
  margin-bottom: 10px;
}

.care-card .card-body {
  padding: 30px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  text-decoration: none;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-link:last-child {
  margin-bottom: 0;
}

.contact-link .icon {
  width: 50px;
  height: 50px;
  background: #052c63;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-link .text {
  display: flex;
  flex-direction: column;
}

.contact-link .text span {
  font-size: 0.85rem;
  color: #64748b;
}

.contact-link .text strong {
  font-size: 1.15rem;
  color: #0f172a;
}

.contact-link:hover {
  transform: translateX(-5px);
  border-color: #052c63;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-link.whatsapp .icon {
  background: #25D366;
}

.contact-link.whatsapp:hover {
  border-color: #25D366;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ Responsive */
@media (max-width: 992px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

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

@media (max-width: 768px) {
  .faq-stats-bar .stats-row {
    flex-direction: column;
    gap: 25px;
  }

  .faq-main-section,
  .faq-care-section {
    padding: 50px 0;
  }

  .group-title {
    font-size: 1.3rem;
  }

  .care-card {
    max-width: 100%;
  }
}