/* ==========================================
   درة التاج للتقييم — Landing Page CSS
   Theme: Dark Navy + Gold — RTL Arabic
   ========================================== */

:root {
  --navy: #0a1628;
  --navy-mid: #0f2044;
  --navy-light: #162952;
  --gold: #c8a84b;
  --gold-light: #e0c068;
  --gold-dark: #a8883b;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --gray: #8899aa;
  --gray-light: #eef2f7;
  --text: #1a2a3a;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(10, 22, 40, 0.12);
  --shadow-gold: 0 4px 20px rgba(200, 168, 75, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: "Cairo", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  direction: rtl;
  
  line-height: 1.7;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* UTILITIES */
.container {
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.gold {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 168, 75, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mt-1 {
  margin-top: 24px;
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  padding: 12px 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo-text-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-gem {
  font-size: 1.6rem;
}

.logo-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin-right: auto;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(200, 168, 75, 0.1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-right: auto;
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 992px) {
  .nav-container {
    justify-content: space-between;
    gap: 0;
  }

  .burger {
    display: flex;
    order: 3; /* keep it on the right (RTL) */
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* hidden off‑canvas (RTL) */
 width: 100%;
    height: 100vh;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 2rem;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    margin-left: auto;
    order: 2;
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  /* Optionally hide CTA on very small screens – you can move it inside the mobile menu if desired */
  .nav-cta {
    display: none;
  }
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    #050e1f 0%,
    #0a1628 40%,
    #0f2044 70%,
    #0a1628 100%
  );
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(5, 14, 31, 0.92) 0%,
      rgba(10, 22, 40, 0.85) 50%,
      rgba(15, 32, 68, 0.9) 100%
    ),
    radial-gradient(
      ellipse at 30% 50%,
      rgba(200, 168, 75, 0.1) 0%,
      transparent 70%
    );
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-10vh) scale(1.5);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 168, 75, 0.15);
  border: 1px solid rgba(200, 168, 75, 0.3);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-subtitle-line {
  display: block;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--gold);
  margin-top: 8px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 24px 0 36px;
  line-height: 1.9;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

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

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}

.stat-plus {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
}
.statsGroup{
  display: flex ;
   align-items: center; 
   width: fit-content;
    justify-items: center;
     justify-self: center;
   gap: 10px;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.trust-ticker {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
}

.trust-track {
  padding:0 60px ;
  display: inline-flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
}

.trust-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

@keyframes ticker {
  0% {
    transform: translateX(100%); /* يبدأ من خارج الشاشة يمين */
  }
  100% {
    transform: translateX(-100%); /* يخرج من يسار الشاشة */
  }
}


/* ==================== ABOUT ==================== */
.about-section {
  background: var(--off-white);
}

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

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-img-wrap {
  position: relative;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius);
  padding: 60px;
  text-align: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-img-wrap::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(200, 168, 75, 0.08);
}

.about-icon-visual {
  font-size: 5rem;
  color: var(--gold);
}

.about-badge-float {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.accred-logos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border-right: 4px solid var(--gold);
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.accred-item i {
  color: var(--gold);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.about-text {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 12px;
  line-height: 1.9;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.highlight-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.hi-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  font-size: 0.9rem;
  margin-top: 2px;
}

.highlight-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.highlight-item p {
  font-size: 0.88rem;
  color: var(--gray);
}

/* ==================== SERVICES ==================== */
.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid #eef2f7;
  /* box-shadow: var(--shadow); */
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  /* box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12); */
  border-color: rgba(200, 168, 75, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  border-color: var(--gold);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .sc-list li {
  color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .sc-list li i {
  color: var(--gold);
}

.sc-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
}

.sc-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--ic, #c8a84b) 15%, white),
    color-mix(in srgb, var(--ic, #c8a84b) 8%, white)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(200, 168, 75, 0.2);
}

.service-card.featured .sc-icon {
  background: rgba(200, 168, 75, 0.15);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.sc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.sc-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
}

.sc-list li i {
  color: var(--gold);
  font-size: 0.7rem;
}

.sc-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ==================== WHY US ==================== */
.why-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 75, 0.06), transparent);
}

.why-section .section-title {
  color: var(--white);
}
.why-section .section-tag {
  background: rgba(200, 168, 75, 0.2);
  color: var(--gold);
  border: 1px solid rgba(200, 168, 75, 0.3);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 168, 75, 0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.why-card:hover {
  background: rgba(200, 168, 75, 0.08);
  border-color: rgba(200, 168, 75, 0.4);
  transform: translateY(-4px);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(200, 168, 75, 0.2),
    rgba(200, 168, 75, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 20px;
  border: 1px solid rgba(200, 168, 75, 0.3);
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

/* ==================== STEPS ==================== */
.steps-section {
  background: var(--off-white);
}

.steps-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  padding: 20px 0;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.step-connector {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 168, 75, 0.2));
  margin-top: 32px;
  flex-shrink: 0;
  border-radius: 2px;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ==================== STATS ==================== */
.stats-section {
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--gold-light) 50%,
    var(--gold) 100%
  );
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stats-card {
  text-align: center;
  padding: 20px;
}

.stats-icon {
  font-size: 2rem;
  color: var(--navy);
  opacity: 0.5;
  margin-bottom: 12px;
}

.stats-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stats-plus {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
}

.stats-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(10, 22, 40, 0.7);
  margin-top: 8px;
}

/* ==================== REVIEWS ==================== */
/* Reviews Section */
.reviews-section {
  background: var(--white);
  padding: 100px 16px;
}

.reviews-slider {
  position: relative;
  overflow: hidden;      /* Clip overflowing cards */
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-card {
  flex-shrink: 0;
  width: calc(33.333% - 16px);  /* 3 cards per view – subtract gap */
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid #eef2f7;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
}

/* Tablet: 2 cards */
@media (max-width: 1024px) {
  .review-card {
    width: calc(50% - 12px);
  }
}

/* Mobile: 1 card */
@media (max-width: 768px) {
  .review-card {
    width: calc(100% - 0px);
  }
}

/* Rest of your review-card styles remain unchanged */
.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.9;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.review-author span {
  font-size: 0.82rem;
  color: var(--gray);
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.rev-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.rev-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.rev-dots {
  display: flex;
  gap: 8px;
}

.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.rev-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ==================== CONTACT ==================== */
.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3,
.contact-form-wrap h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.ci-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(-4px);
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.whatsapp-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.ci-item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 2px;
}

.ci-item a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.ci-item a:hover {
  color: var(--gold);
}

.work-hours {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 8px;
}

.work-hours h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.work-hours h4 i {
  color: var(--gold);
}

.wh-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wh-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #4a5568;
  padding-bottom: 8px;
  border-bottom: 1px solid #eef2f7;
}

.wh-row:last-child {
  border-bottom: none;
}

.wh-time {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
}

.map-embed {
  margin-top: 20px;
}

.map-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.95rem;
}

.map-link-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}

/* FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #eef2f7;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200, 168, 75, 0.08);
}

.form-group textarea {
  resize: vertical;
}

/* ==================== FAQ ==================== */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid #eef2f7;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: right;
  transition: var(--transition);
  gap: 16px;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-q i {
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-item.open .faq-q {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a p {
  padding: 20px 24px;
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.9;
  border-top: 1px solid #eef2f7;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--navy);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-logo-text span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.footer-logo-text span.gold {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.9;
  margin-bottom: 20px;
}

.footer-accred {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-accred span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-accred span i {
  color: var(--gold);
}

.footer-links-col h5 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-links-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links-col ul li a::before {
  content: "‹";
  color: var(--gold);
  font-size: 1rem;
}

.footer-links-col ul li a:hover {
  color: var(--gold);
}

.footer-contact-col h5 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 14px;
  transition: var(--transition);
}

.fc-item i {
  color: var(--gold);
  width: 16px;
}
.fc-item:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
}

/* ==================== FLOATING ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(200, 168, 75, 0.3);
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}
.scroll-top:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-cta {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.99);
    align-items: center;
    justify-content: center;
    gap: 24px;
    backdrop-filter: blur(12px);
    z-index: 999;
  }

  .nav-links.open a {
    font-size: 1.2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps-timeline {
    flex-direction: column;
    align-items: center;
  }
  .step-connector {
    width: 3px;
    height: 40px;
    margin: 0;
    background: linear-gradient(180deg, var(--gold), rgba(200, 168, 75, 0.2));
  }

  .reviews-track .review-card {
    min-width: 100%;
  }

  .hero-stats {
    gap: 20px;
  }
  .stat-divider {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-form-wrap {
    padding: 24px;
  }
}
