:root {
  --primary-color: #D4AF37; /* Premium Gold */
  --primary-dark: #B5952F;
  --secondary-color: #2A2A2A; /* Dark Gray */
  --dark-color: #1A1A1A; /* Near Black */
  --black-color: #000000;
  --white-color: #FFFFFF;
  --light-gray: #F5F5F5;
  --border-color: #333333;
  
  --font-main: 'Inter', 'Roboto', sans-serif;
  --font-heading: 'Outfit', 'Montserrat', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--white-color);
  color: var(--secondary-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-color);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

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

ul {
  list-style: none;
}

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

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

.section {
  padding: 80px 0;
}

.section-dark {
  background-color: var(--dark-color);
  color: var(--white-color);
}
.section-dark h2, .section-dark h3, .section-dark p {
  color: var(--white-color);
}

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

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}
.section-title.left-align::after {
  left: 0;
  transform: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: var(--shadow-gold);
}

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

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

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

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background-color: #1ebe57;
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1400px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border-radius: 50px;
}
.header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition);
}
.header.scrolled .header-container {
  height: 70px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 0.95rem;
  position: relative;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-link {
  font-weight: 700;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-link i {
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 80px;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  color: var(--white-color);
}

.hero-subtitle {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.hero-title {
  font-size: 4rem;
  color: var(--white-color);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--white-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 4px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: var(--transition);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.service-card:hover::after {
  transform: scaleX(1);
}

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .card-img {
  transform: scale(1.05);
}

.card-img-wrapper {
  overflow: hidden;
}

.card-content {
  padding: 30px;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Feature Cards */
.feature-card {
  background: var(--white-color);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}
.feature-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}
.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Counters */
.counters {
  background: var(--dark-color);
  color: var(--white-color);
  padding: 60px 0;
  position: relative;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.counter-item h3 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}
.counter-item p {
  color: var(--white-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Reviews */
.review-card {
  background: var(--white-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.review-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.reviewer-info h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}
.reviewer-info p {
  margin-bottom: 0;
  font-size: 0.8rem;
  color: #777;
}
.stars {
  color: #FFB900;
  margin-bottom: 15px;
}
.google-logo {
  width: 20px;
  margin-left: auto;
}

/* FAQ */
.faq-item {
  background: var(--white-color);
  border: 1px solid var(--light-gray);
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}
.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
  background: var(--light-gray);
  transition: var(--transition);
}
.faq-question:hover {
  background: #eaeaea;
}
.faq-question i {
  color: var(--primary-color);
  transition: var(--transition);
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: #aaa;
  padding: 80px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer h4 {
  color: var(--white-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.footer-logo {
  color: var(--white-color);
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-icons a {
  width: 40px;
  height: 40px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white-color);
}
.social-icons a:hover {
  background: var(--primary-color);
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Floating WhatsApp & Phone */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: var(--transition);
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
}

.floating-phone {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: var(--transition);
}
.floating-phone:hover {
  transform: scale(1.1);
  background-color: var(--primary-dark);
}

  /* Responsive */
  @media (max-width: 991px) {
    .header-actions .btn {
      display: none;
    }
    .nav-menu {
      position: fixed;
      top: 90px;
      left: -120%;
      width: 90%;
      height: auto;
      max-height: 80vh;
      background: var(--white-color);
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 30px 20px;
      border-radius: 30px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.2);
      transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      z-index: 999;
      gap: 15px;
    }
    .nav-menu.active {
      left: 5%;
    }
    .nav-menu .nav-link {
      display: block;
      width: 100%;
      background: #fcf9f2;
      padding: 18px 20px;
      border-radius: 50px;
      text-align: center;
      font-weight: 700;
      color: var(--secondary-color);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 1rem;
      border: 1px solid #f0eadb;
    }
    .nav-menu .nav-link:hover {
      background: var(--primary-color);
      color: var(--white-color);
      border-color: var(--primary-color);
    }
    .nav-menu .nav-link::after {
      display: none;
    }
    .mobile-menu-btn {
      display: block;
    }
  .hero-title {
    font-size: 3rem;
  }
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

  @media (max-width: 768px) {
    .logo {
      font-size: 1rem;
      gap: 5px;
      white-space: nowrap;
    }
    .header-actions {
      gap: 10px;
    }
    .hero-title {
      font-size: 2.5rem;
    }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .counter-grid {
    grid-template-columns: 1fr;
  }
}

/* Refined Marquee and Reviews CSS to exactly match screenshot */
.section-reviews {
    background-color: #f8f9fa; /* Light grey background for the whole section */
}
.write-review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  margin: 0 auto 50px auto; /* Centered with margin bottom */
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}
.write-review-btn:hover {
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.write-review-btn img {
  width: 22px;
  height: 22px;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 20px 0 40px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 30px; /* Space between cards */
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.review-card {
  background-color: #ffffff;
  padding: 35px 30px;
  border-radius: 25px; /* Large rounded corners */
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Space out top, text, bottom */
  gap: 20px;
  width: 320px; /* Specific width similar to screenshot */
  min-height: 280px; /* Ensure they are tall enough */
  flex-shrink: 0;
  margin: 0;
  border: none;
}
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stars {
  color: #fbbc05; /* Google yellow star color */
  font-size: 1.1rem;
  display: flex;
  gap: 3px;
}
.google-logo {
  width: 24px;
  height: 24px;
}
.review-text {
  font-size: 0.95rem;
  color: #5f6368; /* Google grey text color */
  line-height: 1.6;
  flex-grow: 1;
  margin: 0;
}
.review-bottom {
  display: flex;
  align-items: center;
  gap: 15px;
}
.review-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.reviewer-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reviewer-info h4 {
  font-size: 1rem;
  color: #202124;
  margin: 0 0 4px 0;
  font-weight: 700;
}
.reviewer-info p {
  font-size: 0.8rem;
  color: #70757a;
  margin: 0;
}

.card-content p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 48px;
  line-height: 24px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-350px * 6 - 30px * 6)); /* 350px width + 30px gap * 6 cards */ }
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
}
.lang-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-color);
    transition: var(--transition);
}
.lang-btn:hover, .lang-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

/* RTL Support */
body.rtl-mode {
    font-family: 'Amiri', 'Tajawal', 'Cairo', sans-serif !important;
    text-align: right !important;
}
body.rtl-mode h1, body.rtl-mode h2, body.rtl-mode h3, body.rtl-mode h4, body.rtl-mode h5, body.rtl-mode h6, body.rtl-mode p, body.rtl-mode span, body.rtl-mode a, body.rtl-mode div {
    text-align: right !important;
}
  body.rtl-mode .nav-menu {
      flex-direction: row-reverse;
  }
  body.rtl-mode .header-container {
      flex-direction: row-reverse;
  }
  body.rtl-mode .logo {
      flex-direction: row-reverse;
  }
  @media (max-width: 991px) {
      body.rtl-mode .nav-menu {
          left: auto;
          right: -120%;
          flex-direction: column;
      }
      body.rtl-mode .nav-menu.active {
          right: 5%;
          left: auto;
      }
  }
  body.rtl-mode .hero-content, body.rtl-mode .text-center {
    text-align: center !important; /* Keep center text centered */
}
body.rtl-mode .hero-content h1, body.rtl-mode .hero-content p, body.rtl-mode .text-center h2, body.rtl-mode .text-center p {
    text-align: center !important; 
}
body.rtl-mode .hero-buttons {
    flex-direction: row-reverse;
}
body.rtl-mode .card-content {
    text-align: right;
}
body.rtl-mode .faq-question {
    flex-direction: row-reverse;
}
body.rtl-mode .review-card {
    text-align: right;
}
body.rtl-mode .review-bottom {
    flex-direction: row-reverse;
    justify-content: flex-end;
}
body.rtl-mode .reviewer-info {
    text-align: right;
    margin-right: 15px;
    margin-left: 0;
}
body.rtl-mode .google-logo-container {
    margin-left: 0;
    margin-right: auto;
}
body.rtl-mode .footer-container {
    flex-direction: row-reverse;
}
body.rtl-mode .footer-col {
    text-align: right;
}
body.rtl-mode .footer-links li a {
    justify-content: flex-end;
    flex-direction: row-reverse;
}
body.rtl-mode .footer-links li a i {
    margin-right: 0;
    margin-left: 10px;
}
