/* ==========================================================================
   Shirka Al Rehan Brand - Appliance Repair Kuwait
   Professional Modern CSS Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette - Malta (Orange) & White Theme */
  --primary-navy: #0F172A; /* Slate black for main headings & dark elements */
  --secondary-navy: #1E293B; /* Slightly lighter slate */
  --dark-accent: #0F172A;
  --primary-blue: #FF6600; /* Vibrant Malta Orange */
  --hover-blue: #E65800; /* Deep Malta Orange */
  --light-blue: #FFF0E6; /* Soft Malta Light Tint */
  --cyan-accent: #FF7700; /* Malta Accent Highlight */
  --whatsapp-green: #25D366;
  --whatsapp-hover: #1EBE57;
  
  /* Neutral Colors */
  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light: #64748B;
  --bg-light: #FFF9F5; /* Warm White-Orange Glow */
  --bg-white: #FFFFFF;
  --border-light: #FFD8BE; /* Soft Warm Orange Border */
  
  /* Elevation & Shadows */
  --shadow-sm: 0 2px 8px rgba(255, 102, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(255, 102, 0, 0.08);
  --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 25px rgba(255, 102, 0, 0.25);
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --max-width: 1280px;
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

html[dir="rtl"] body {
  font-family: 'Noto Nastaliq Urdu', serif;
  text-align: right;
  font-size: 1.1rem;
  line-height: 2.2;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-navy);
}

html[dir="rtl"] h1, 
html[dir="rtl"] h2, 
html[dir="rtl"] h3, 
html[dir="rtl"] h4, 
html[dir="rtl"] h5, 
html[dir="rtl"] h6,
html[dir="rtl"] .brand-title,
html[dir="rtl"] .section-title,
html[dir="rtl"] .btn,
html[dir="rtl"] .sub-badge,
html[dir="rtl"] .nav-link {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-weight: 700;
  line-height: 2;
}

html[dir="rtl"] .logo {
  margin-right: 0;
  margin-left: 1.5rem;
}

html[dir="rtl"] .footer-links a i.fa-chevron-right {
  transform: rotate(180deg);
  display: inline-block;
  margin-left: 5px;
}



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

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

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Common Styling */
.section {
  padding: 5rem 0;
  position: relative;
}

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

.section-bg-navy {
  background: linear-gradient(135deg, #FF6600, #E65800);
  color: #ffffff;
}

.section-bg-navy h2, .section-bg-navy h3 {
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--light-blue);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-header.light .sub-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

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

.section-header.light .section-description {
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), #E65800);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.45);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-outline {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--light-blue);
  transform: translateY(-2px);
}

/* Header & Navigation */
.topbar {
  background: linear-gradient(135deg, #FF6600, #E65800);
  color: #ffffff;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.topbar-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff !important;
}

.topbar-info-item i {
  color: #ffffff;
}

.header-main {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border-bottom: 1px solid var(--border-light);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.5rem;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-blue), #E65800);
  color: #ffffff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-glow);
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--primary-blue);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  box-shadow: none;
}

.nav-menu-header,
.nav-menu-footer {
  display: none;
}

/* Hide the mobile-only contact buttons on desktop */
.nav-menu-card > a[href^="tel:"],
.nav-menu-card > .btn-whatsapp-nav {
  display: none;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: transparent;
  transition: var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary-blue);
  background: var(--light-blue);
  border-color: rgba(255, 102, 0, 0.2);
}

.nav-link.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--primary-blue), #E65800);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section with Background Slider */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 6rem 0 7rem;
  overflow: hidden;
  color: #ffffff;
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 7s ease-out;
  transform: scale(1.08);
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(255, 102, 0, 0.45) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.hero-text {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.hero-text h1 span {
  color: #FF7700;
  background: linear-gradient(135deg, #FF9900, #FF5500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.25rem;
  max-width: 680px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-feature-item i {
  color: #FF7700;
}

.hero-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.hero-card h3 {
  color: var(--text-dark);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.hero-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(0, 102, 255, 0.3);
}

.service-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

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

.service-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(8px);
  color: var(--cyan-accent);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.service-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

/* Experience Counters */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  backdrop-filter: blur(10px);
  transition: var(--transition-normal);
}

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

.stat-icon {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 1rem;
}

/* Client Satisfaction Section */
.satisfaction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.satisfaction-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.sat-feature-item {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.sat-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--light-blue);
  color: var(--primary-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.sat-feature-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.sat-feature-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.satisfaction-box {
  background: linear-gradient(135deg, #FF6600, #E65800);
  color: #ffffff;
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.sat-badge-large {
  font-size: 5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--primary-blue);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.4);
}

.step-icon {
  font-size: 2.25rem;
  color: var(--primary-blue);
  margin: 1rem 0;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-navy);
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--primary-blue);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.active .faq-body {
  padding: 0 1.5rem 1.25rem 1.5rem;
  max-height: 500px;
}

/* Google Reviews Slider */
.reviews-slider-container {
  overflow: hidden;
  padding: 1rem 0 2rem;
  position: relative;
  direction: ltr !important;
}

.reviews-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  direction: ltr !important;
  animation: scrollReviews 35s linear infinite;
}

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

@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  width: 380px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right !important;
}

.review-top {
  display: flex !important;
  direction: ltr !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 1.25rem;
}

.review-stars {
  color: #FFB800;
  font-size: 1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  direction: rtl !important;
  text-align: right !important;
}

.review-user-info {
  display: flex !important;
  direction: ltr !important;
  align-items: center !important;
  gap: 1rem;
  justify-content: flex-start !important;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-user-text {
  display: flex;
  flex-direction: column;
  direction: rtl !important;
  text-align: right !important;
}

.review-user-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 0 0 0.15rem 0;
}

.review-user-title {
  font-size: 0.8rem;
  color: var(--text-light);
}

.btn-google-review:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* CTA Section */
.cta-banner {
  background: linear-gradient(135deg, #FF6600, #E65800);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background-color: #0F172A;
  color: #94A3B8;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h3, .footer-col h4 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-about p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.contact-info-item i {
  color: var(--primary-blue);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Floating Action Bar */
.floating-actions {
  position: static;
  z-index: 999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.75rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: var(--transition-normal);
  position: fixed;
  bottom: 2rem;
  z-index: 999;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp {
  background-color: var(--whatsapp-green);
  right: 2rem;
}

.float-call {
  background-color: var(--primary-blue);
  left: 2rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--bg-white);
  width: 100%;
  max-width: 550px;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* ==========================================================================
   Comprehensive Multi-Device Responsive System (Desktops, Laptops, Tablets, Phones)
   ========================================================================== */

/* 1. Desktops & Large Laptops (1200px and up) */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 2. Standard Laptops & Landscape Tablets (992px to 1199px) */
@media (max-width: 1199px) {
  .container {
    padding: 0 2rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-text h1 {
    font-size: 2.75rem;
  }
}

/* 3. Tablets & Large Phones (768px to 991px) */
@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .satisfaction-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
  }
}

/* 4. Mobile Devices (Portrait Tablets & Smartphones - up to 767px) */
@media (max-width: 767px) {
  .topbar {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 0.5rem 0;
  }
  
  .topbar-content {
    display: inline-flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: scrollLeft 15s linear infinite;
  }
  
  .topbar-info {
    flex-wrap: nowrap;
  }

  @keyframes scrollLeft {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
  }

  .container {
    padding: 0 1.25rem !important;
  }

  .header-container {
    padding: 0.75rem 1rem;
  }

  .logo {
    margin-right: 0;
    margin-left: 0;
  }
  
  .brand-title {
    font-size: 1.15rem;
  }

  .brand-subtitle {
    font-size: 0.75rem;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 1.5rem !important;
    right: 1.5rem !important;
    width: calc(100% - 3rem);
    height: auto;
    max-height: calc(100vh - 100px);
    background: transparent;
    z-index: 1001;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    display: block !important;
  }

  html[dir="rtl"] .nav-menu {
    left: 1.5rem !important;
    right: 1.5rem !important;
  }
  
  .nav-menu.active, html[dir="rtl"] .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu-card {
    background: #FFFFFF;
    border-radius: 25px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  }
  
  .nav-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .nav-close {
    background: #f0f0f0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 1.2rem;
  }
  
  .nav-lang {
    background: #FFC107;
    color: #fff;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
  }
  
  .nav-menu-logo {
    height: 40px !important;
    width: auto !important;
    max-width: 120px !important;
    object-fit: contain;
  }
  
  .nav-menu-footer {
    display: block;
    text-align: center;
    color: #fff;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
  }

  /* Make sure contact buttons are visible in mobile menu */
  .nav-menu-card > a[href^="tel:"],
  .nav-menu-card > .btn-whatsapp-nav {
    display: inline-block;
  }

  .nav-link {
    color: var(--primary-blue);
    font-size: 1rem;
    padding: 0.6rem 1.25rem;
    width: 100%;
    text-align: center;
    border: 1px solid var(--primary-blue);
    border-radius: 25px;
    background: transparent;
    margin-bottom: 0.25rem;
  }

  .mobile-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .hero {
    padding: 3.5rem 0 3.5rem !important;
    min-height: auto !important;
  }

  .hero-content {
    text-align: center !important;
    justify-content: center !important;
  }

  .hero-text {
    width: 100% !important;
    max-width: 100% !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 0.5rem !important;
  }

  .hero-text h1 {
    font-size: 1.85rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    word-break: normal !important;
  }

  .hero-description {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    width: 100% !important;
    align-items: center !important;
    gap: 0.85rem !important;
    margin-bottom: 1.75rem !important;
  }

  .hero-buttons .btn {
    width: 100% !important;
    max-width: 320px !important;
    padding: 0.85rem 1.25rem !important;
    font-size: 0.95rem !important;
    justify-content: center !important;
  }

  .hero-features {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 0.6rem !important;
  }

  .hero-feature-item {
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
    font-size: 0.85rem !important;
    padding: 0.5rem 1rem !important;
  }

  .sub-badge {
    font-size: 0.8rem !important;
    padding: 0.4rem 0.85rem !important;
    margin-bottom: 0.75rem !important;
  }

  /* Override inline multi-column grids on mobile to single column */
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .services-grid,
  .process-grid,
  .footer-grid,
  .satisfaction-features {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .experience-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }

  /* Make inline styled images responsive on mobile */
  img[style*="height"] {
    height: auto !important;
    max-height: 280px !important;
  }

  .section {
    padding: 2.5rem 0 !important;
  }

  .section-title {
    font-size: 1.65rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }

  .section-description {
    font-size: 0.95rem !important;
    text-align: center !important;
  }

  /* Responsive Floating Action Buttons */
  .float-btn {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.35rem !important;
    bottom: 1.25rem !important;
  }

  .float-whatsapp {
    right: 1.25rem !important;
  }

  .float-call {
    left: 1.25rem !important;
  }
}

/* 5. Extra Small Phones (Compact iPhones & Androids - up to 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem !important;
  }
  .brand-title {
    font-size: 1.05rem !important;
  }
  .brand-subtitle {
    font-size: 0.65rem !important;
  }
  .hero-text h1 {
    font-size: 1.6rem !important;
  }
  .experience-grid {
    grid-template-columns: 1fr !important;
  }
  .float-btn {
    width: 46px !important;
    height: 46px !important;
    font-size: 1.2rem !important;
    bottom: 1rem !important;
  }
  .float-whatsapp {
    right: 1rem !important;
  }
  .float-call {
    left: 1rem !important;
  }
}

.hero-service {
  background-size: cover;
  background-position: center;
  min-height: 380px !important;
  padding: 3.5rem 0 !important;
}
