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

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

body {
  font-family: "Tajawal", "Poppins", sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f9fafb;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.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;
}

/* =========================
   Top Bar
========================= */
.top-bar {
  background: #052c63;
  color: #fff;
  font-size: 14px;
  padding: 0;
  line-height: 1;
  min-height: 16px;
  margin: 0;
  position: relative;
  top: 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 0 3px;
  border-radius: 3px;
  line-height: 1;
}

.top-bar a:hover {
  color: #16a34a;
  transform: translateY(-1px);
  background: rgba(255,255,255,0.1);
}

.top-bar a i {
  font-size: 12px;
  width: 14px;
  text-align: center;
}

/* WhatsApp icon specific styling */
.top-bar a .fab.fa-whatsapp {
  color: #25D366;
}

.top-bar a:hover .fab.fa-whatsapp {
  color: #16a34a;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0 3px;
  transition: all 0.3s ease;
  font-size: 12px;
  font-weight: 500;
  border-radius: 3px;
  line-height: 1;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #16a34a;
}

.lang-btn.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.separator {
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* =========================
   Header / Navigation
========================= */
.main-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: #052c63;
  background: rgba(5, 44, 99, 0.05);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: #052c63;
  border-radius: 2px;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #333;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.3s;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: #f8f9fa;
  color: #052c63;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  z-index: 1002;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* =========================
   Hero Section
========================= */
.hero-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
}

.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(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  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(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 30px;
  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: 15px;
  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: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  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(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

.slider-control:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

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

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

/* 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;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* =========================
   Trust Cards
========================= */
.trust-section {
  padding: 60px 0;
  background: #fff;
}

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

.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;
}

/* =========================
   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;
}

/* =========================
   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;
}

.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;
}

/* =========================
   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;
}

.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: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #052c63;
}

.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: 60px 0 20px;
  font-family: "Tajawal", sans-serif;
}

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

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #f8f9fa;
  font-weight: 600;
}

.footer-col p,
.footer-col li a {
  font-size: 15px;
  line-height: 1.8;
  color: #e2e8f0;
}

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

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  transition: color .3s;
}
.footer-col ul li a:hover {
  color: #25D366;
}

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

.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;
}

/* 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;
  }
  
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
}