/* ========== SERVICES GRID (مثل التصميم في الصور) ========== */

.services-section {
  background-color: #fbf6eb;
}

/* الشريط العلوي */
.services-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.services-top-info {
  text-align: right;
}

.services-top-title {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #3a2a16;
}

.services-top-text {
  margin: 0;
  font-size: 0.9rem;
  color: #6f6f6f;
}

.services-top-cta {
  background: #d4af37;
  color: #3a2a16;
  border-radius: 999px;
  padding-inline: 1.9rem;
  box-shadow: 0 14px 26px rgba(190, 140, 30, 0.35);
  white-space: nowrap;
}

.services-top-cta:hover {
  background: #e0b84b;
}

.services-top-arrow {
  font-size: 1.2rem;
  display: inline-block;
  transform: translateY(1px);
}

/* البوكس الكريمي الكبير */
.services-panel {
  background-color: #f6efe4;
  border-radius: 32px;
  padding: 3rem 2.5rem 2.4rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* الهيدر داخل البوكس */
.services-panel-header {
  text-align: center;
  margin-bottom: 2.6rem;
}

.services-main-title {
  margin: 0 0 0.4rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: #3a2a16;
}

.services-main-underline {
  display: inline-block;
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background-color: #d4af37;
  margin-bottom: 0.9rem;
}

.services-main-subtitle {
  margin: 0;
  color: #6f6f6f;
  line-height: 1.8;
}

/* كروت الخدمات */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.4rem 2rem;
}

.service-card-large {
  text-align: center;
}

/* الصورة الكبيرة لكل خدمة */
.service-img-wrapper {
  position: relative;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  display: block;
}

.service-img-large {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* أيقونة واتساب الخضراء على الصورة */
.service-img-wa {
  position: absolute;
  inset-inline-start: 1rem;
  inset-block-end: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background-color: #16c757;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-img-wa::before {
  content: "💬";
  font-size: 1.25rem;
}

/* نص الكرت */
.service-name {
  margin: 0.9rem 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #3a2a16;
}

.service-rating {
  color: #e2b220;
  letter-spacing: 1px;
  font-size: 1rem;
  margin-bottom: 0.65rem;
}

.service-text {
  margin: 0;
  font-size: 0.95rem;
  color: #6f6f6f;
  line-height: 1.9;
}

/* سطر الملاحظة أسفل الكروت */
.services-note-row {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
}

.services-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: #999;
}

.services-note-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #c7c7c7;
  position: relative;
}

.services-note-icon::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 2px;
  border: 1px solid #c7c7c7;
}

/* ريسبونسف */
@media (max-width: 960px) {
  .services-topbar {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .services-top-cta {
    align-self: stretch;
    justify-content: center;
  }

  .services-panel {
    padding: 2.2rem 1.5rem 2rem;
    border-radius: 26px;
  }
}

@media (max-width: 600px) {
  .services-main-title {
    font-size: 1.4rem;
  }

  .service-img-wrapper {
    border-radius: 24px;
  }
}
/* styles.css */

/* ========== RESET & VARIABLES ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  font-family: "Almarai", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: #fbf6eb;
  color: #20160f;
}

:root {
  --gold: #d4af37;
  --gold-soft: #f4d794;
  --gold-bg-top: #f8dc9a;
  --gold-bg-bottom: #d8a84b;
  --dark: #14161c;
  --dark-soft: #1c2028;
  --accent-green: #16c757;
  --accent-green-dark: #0e9b3e;
  --card-bg: rgba(255, 255, 255, 0.96);
  --card-soft: rgba(255, 255, 255, 0.9);
  --border-soft: rgba(255, 255, 255, 0.4);
  --shadow-soft: 0 25px 50px rgba(0, 0, 0, 0.25);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-pill: 999px;
}

/* ========== LAYOUT HELPERS ========== */

.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding-block: 5rem;
}

.section-soft {
  padding-block: 5.5rem;
  background-color: #fbf6eb;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  margin: 0 0 0.75rem;
  color: #3a2a16;
}

.section-subtitle {
  margin: 0;
  color: #6f6f6f;
  line-height: 1.7;
}

/* ========== HEADER & NAVBAR ========== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    to bottom,
    rgba(248, 220, 154, 0.96),
    rgba(216, 168, 75, 0.96)
  );
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.6rem;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #fff7e3;
  padding: 6px;
}

.brand-text {
  font-weight: 700;
  font-size: 1rem;
  color: #3a2a16;
}

/* Nav */

.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #4a341c;
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  transform-origin: center;
  transform: scaleX(0);
  background-color: var(--gold);
  transition: transform 0.2s ease-out;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

/* burger */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* ========== HERO ========== */

.hero {
  position: relative;
  min-height: min(720px, 100vh);
  display: flex;
  align-items: stretch;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.18)),
    url("https://cdn.itqanmutamayiz.com/images/Home/home-hero-decoration-riyadh-itqan-tamyuz-01.webp")
      center center / cover no-repeat;

  position: relative;    
}

.hero-overlay {
  position: absolute; 
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.75)
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-block: 4.5rem;
}

.hero-text {
  max-width: 650px;
  animation: fade-up 0.8s ease-out 0.1s both;
}

.hero-title {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  margin: 0 0 1rem;
  line-height: 1.4;
}

.hero-subtitle {
  margin: 0 0 1.8rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #f6f3ec;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
  color: #fff;
  box-shadow: 0 12px 25px rgba(15, 160, 67, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(15, 160, 67, 0.45);
}

.btn-outline {
  background-color: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.btn-soft {
  background-color: rgba(255, 255, 255, 0.9);
  color: #3a2a16;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-soft:hover {
  background-color: #fff;
}

.btn-sm {
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
}

/* hero extra */

.hero-phone {
  min-width: 180px;
  justify-content: space-between;
}

.hero-phone .phone-number {
  font-family: "Almarai", system-ui, sans-serif;
}

/* scroll button */

.hero-scroll {
  font-size: 0.9rem;
}

/* ========== BOOKING SECTION ========== */

.booking {
  background: radial-gradient(circle at top right, #f8e6b9 0, #f3c874 35%, #d8a84b 100%);
  padding-block: 4.5rem 5.5rem;
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: 3.5rem;
  padding: 2.5rem;
  border-radius: 52px;
  background: linear-gradient(135deg, #f6e6c8, #f3d79c);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(145deg, #f4e2c4, #f1d39a);
  opacity: 0.93;
  pointer-events: none;
}

.booking-image-wrapper,
.booking-text {
  position: relative;
  z-index: 1;
}

.booking-image-wrapper {
  border-radius: 40px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: stretch;
}

.booking-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.booking-logo {
  position: absolute;
  inset-inline-end: 1.8rem;
  inset-block-end: 1.8rem;
  width: 120px;
  opacity: 0.95;
}

.booking-text {
  padding-inline: 0.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-badge {
  align-self: flex-start;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  color: #b18111;
  margin-bottom: 0.75rem;
}

.booking-subtitle {
  margin-top: 0.8rem;
  margin-bottom: 1.3rem;
  color: #5c4528;
  line-height: 1.8;
}

.booking-list {
  list-style: none;
  margin: 0 0 1.9rem;
  padding: 0;
  color: #4a341c;
}

.booking-list li {
  position: relative;
  padding-inline-start: 1.4rem;
  margin-bottom: 0.5rem;
}

.booking-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0.15rem;
  color: var(--gold);
  font-weight: 700;
}

.booking-cta {
  align-self: flex-start;
}

/* ========== SERVICES GRID ========== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.service-card {
  background-color: var(--card-bg);
  border-radius: 24px;
  padding: 1.7rem 1.5rem 1.6rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.service-image {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background-color: #fff9ea;
  padding: 0.35rem;
}

.service-title {
  margin: 0;
  font-size: 1.05rem;
  color: #3a2a16;
}

.service-desc {
  margin: 0;
  color: #6f6f6f;
  line-height: 1.8;
}

/* ========== GALLERY SLIDER ========== */

.gallery-section {
  background-color: #fdf8ef;
}

.gallery-slider {
  position: relative;
  border-radius: 28px;
  background: #fffaf1;
  padding: 2rem 1.5rem 2.6rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 100%);
  transition: transform 0.45s ease-out;
}

.gallery-card {
  padding-inline: 1rem;
  text-align: center;
  opacity: 0.4;
  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-card.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-image {
  width: 240px;
  height: 150px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.gallery-title {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  color: #3a2a16;
}

.gallery-desc {
  margin: 0;
  color: #6f6f6f;
  line-height: 1.7;
}

.gallery-dots {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background-color: rgba(0, 0, 0, 0.14);
}

.dot.is-active {
  width: 26px;
  background-color: var(--gold);
}

/* ========== WHY US ========== */

/* ========== WHY US (مطابق للصورة) ========== */

.why-section {
  background-color: #fbf6eb;
}

.why-header {
  text-align: right;
  margin-bottom: 1.8rem;
}

.why-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  color: #b28e34;
}

.why-title {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #3a2a16;
}

/* البانيل المستطيل */

.why-panel {
  background-color: #f7f1e4;
  border-radius: 24px;
  border: 1px solid #eee0ca;
  padding: 2.2rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 2rem;
}

/* جزء الصورة */

.why-image-box {
  border-radius: 18px;
  overflow: hidden;
  background-color: #000;
  position: relative;
}

.why-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-image-cta {
  position: absolute;
  inset-inline-start: 1rem;
  inset-block-end: 1rem;
  padding: 0.45rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-decoration: none;
}

/* كروت الأسباب */

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.why-card {
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid #f0e4cf;
  padding: 1.1rem 1.2rem;
}

.why-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background-color: #fff7e3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.why-card-title {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  color: #3a2a16;
}

.why-card-text {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  line-height: 1.9;
  color: #6f6f6f;
}

.why-card-link {
  font-size: 0.85rem;
  color: #1a8f3f;
  text-decoration: none;
}

.why-card-link:hover {
  text-decoration: underline;
}

/* ========== FAQ SECTION (أكورديون) ========== */

.faq-section {
  background-color: #fbf6eb;
}

.faq-header {
  text-align: right;
  margin-bottom: 2.2rem;
}

.faq-list {
  border-radius: 18px;
  background-color: #fdfaf5;
  padding: 0.3rem 0.2rem;
}

.faq-item + .faq-item {
  border-top: 1px solid #eee3d2;
}

/* رأس السؤال */

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.3rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: right;
}

.faq-question:hover {
  background-color: #f6f3ed;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: #d4af37;
  border-radius: 999px;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  opacity: 0; /* تتحول من + إلى - */
}

.faq-question-text {
  font-size: 0.98rem;
  color: #3a2a16;
}

/* جواب السؤال */

.faq-answer {
  padding: 0 3.2rem 1.1rem 1.3rem;
  font-size: 0.93rem;
  color: #6f6f6f;
  line-height: 1.9;
}

/* ريسبونسف FAQ */

@media (max-width: 600px) {
  .faq-answer {
    padding-inline-start: 2.5rem;
  }
}

/* زر "اضغط على الخدمة لعرض الصور" (زيادة تأكيد) */

.service-cta {
  margin-top: 1rem;
  align-self: center;
  padding: 0.55rem 1.6rem;
  font-size: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #f4d794);
  color: #3a2a16;
  border: none;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(190, 140, 30, 0.35);
}

.service-cta:hover {
  background: linear-gradient(135deg, #f4d794, #d4af37);
  color: #25180b;
}
/* ========== GALLERY SLIDER (تصميم احترافي) ========== */

/* =========================================================
   GALLERY SLIDER — FIX VERSION (NO EMPTY SPACE)
   ========================================================= */

   .gallery-section {
    background-color: #fdf8ef;
    padding-block: 5rem;
  }
  
  .gallery-slider {
    position: relative;
    border-radius: 30px;
    background: radial-gradient(circle at top right, #fff7e0 0, #fffaf3 32%, #ffffff 100%);
    padding: 2.4rem 2.1rem 2.7rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden; /* يمنع ظهور أي فراغ */
  }
  
  /* ====== TRACK (مسار السلايدر أفقي flex) ====== */
  .gallery-track {
    display: flex;
    transition: transform 0.45s ease-out;
  }
  
  /* ====== CARD (كل كرت = 100% عرض السلايدر) ====== */
  .gallery-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding-inline: 0.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.25fr);
    gap: 1.8rem;
    align-items: center;
  
    opacity: 0.45;
    transform: translateY(10px) scale(0.98);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  
  .gallery-card.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
  /* ====== IMAGE WRAPPER ====== */
  .gallery-media {
    position: relative;
  }
  
  .gallery-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-color: #111518;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  }
  
  .gallery-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
  }
  
  .gallery-label {
    position: absolute;
    inset-inline-start: 1rem;
    inset-block-start: 1rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 0.8rem;
  }
  
  /* ====== TEXT INFO ====== */
  .gallery-info {
    align-self: center;
    text-align: right;
  }
  
  .gallery-title {
    margin: 0 0 0.4rem;
    font-size: 1.2rem;
    color: #3a2a16;
  }
  
  .gallery-desc {
    margin: 0 0 0.9rem;
    color: #6f6f6f;
    line-height: 1.9;
  }
  
  .gallery-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background-color: #f7f1e4;
    font-size: 0.83rem;
    color: #7a6b4e;
  }
  
  .gallery-meta .gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: #d4af37;
  }
  
  /* ====== DOTS ====== */
  .gallery-dots {
    margin-top: 1.9rem;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
  }
  
  .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background-color: rgba(0, 0, 0, 0.18);
    cursor: pointer;
  }
  
  .dot.is-active {
    width: 26px;
    background-color: #d4af37;
  }
  
  /* =========================================================
     RESPONSIVE
     ========================================================= */
  
  @media (max-width: 960px) {
    .gallery-slider {
      padding: 1.9rem 1.2rem 2.3rem;
      border-radius: 24px;
    }
  
    .gallery-card {
      grid-template-columns: minmax(0, 1fr);
      gap: 1.2rem;
    }
  
    .gallery-info {
      text-align: right;
    }
  
    .gallery-title {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 600px) {
    .gallery-desc {
      font-size: 0.9rem;
    }
  }
  
/* ========== CONTACT CTA ========== */

.contact-cta {
  position: relative;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.75)),
    url("https://cdn.itqanmutamayiz.com/images/weddign/wedding-stage-decoration-riyadh-itqan-tamyuz-05.webp")
      center center / cover no-repeat;
  color: #fff;
  padding-block: 5rem;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.2), transparent);
}

.contact-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}

.contact-title {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 2.6vw, 2.3rem);
}

.contact-subtitle {
  margin: 0 auto 1.8rem;
  line-height: 1.9;
  color: #f4f1ea;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
}

.btn-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

/* ========== LOCATION & SOCIAL ========== */

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.location-map-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background-color: #111518;
  box-shadow: var(--shadow-card);
}

.location-map {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.map-button {
  position: absolute;
  inset-inline-start: 1.2rem;
  inset-block-end: 1.2rem;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
}

.location-info .section-title {
  margin-bottom: 0.6rem;
}

.location-social-title {
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  font-size: 1.02rem;
  color: #3a2a16;
}

.social-icons {
  display: flex;
  gap: 0.6rem;
}

.icon-svg {
  width: 34px;
  height: 34px;
  fill: #fff;
  background-color: #111518;
  border-radius: 999px;
  padding: 7px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

/* ========== FOOTER ========== */

.site-footer {
  background: radial-gradient(circle at top, #202635, #0c0f17);
  color: #f5f5f5;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #fff7e3;
  padding: 6px;
  margin-bottom: 0.8rem;
}

.footer-brand-text {
  margin: 0;
  color: #dedede;
  line-height: 1.9;
}

.footer-links h3,
.footer-contact h3,
.footer-dev h3 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  text-decoration: none;
  color: #cccccc;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact p {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
}

.footer-contact a {
  color: #f0d88c;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-social {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.4rem;
}

.footer-social a {
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  border-radius: var(--radius-pill);
  background-color: rgba(255, 255, 255, 0.06);
  color: #f5f5f5;
  text-decoration: none;
}

.footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.14);
}

.footer-dev p {
  margin: 0;
  font-size: 0.86rem;
  color: #c4c4c4;
  white-space: pre-line;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  margin-top: 2rem;
  padding-block: 1rem;
  font-size: 0.8rem;
  color: #b0b0b0;
}

/* ========== ANIMATIONS ========== */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE ========== */

@media (max-width: 960px) {
  .header-inner {
    padding-block: 0.4rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: linear-gradient(
      to bottom,
      rgba(248, 220, 154, 0.98),
      rgba(216, 168, 75, 0.98)
    );
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
  }

  .main-nav.open {
    max-height: 260px;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.5rem 1.2rem;
    gap: 0.5rem;
  }

  .hero {
    align-items: flex-end;
    min-height: 100vh;
  }

  .hero-content {
    padding-block: 4rem 3.2rem;
  }

  .hero-text {
    text-align: center;
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-phone {
    min-width: 0;
  }

  .booking-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.1rem;
    padding: 1.8rem;
    border-radius: 40px;
  }

  .booking-card::before {
    inset: 14px;
    border-radius: 32px;
  }

  .booking-logo {
    width: 100px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .location-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-image {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 2rem, 100%);
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .booking {
    padding-block: 3.5rem 4.2rem;
  }

  .section {
    padding-block: 4rem;
  }

  .gallery-slider {
    padding-inline: 1.1rem;
  }
}
/* ========== SERVICES PAGE – HERO ========== */

/* ========== SERVICES PAGE – HERO ========== */

.services-hero {
  position: relative;
  padding-block: 4.5rem 4.8rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.03), transparent),
    #14161c;
  color: #fff;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent);
  pointer-events: none;
}

.services-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
}

.services-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  background: #d4af37;
  color: #3a2a16;
  font-size: 0.86rem;
  margin-bottom: 1rem;
}

.services-hero-title {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 2.7vw, 2.4rem);
}

.services-hero-subtitle {
  margin: 0;
  color: #e4e0d6;
  line-height: 1.9;
  font-size: 0.98rem;
}

/* ========== SERVICES INTRO PANEL ========== */

.services-intro {
  background-color: #fbf6eb;
}

.services-intro-panel {
  background: #f6efe4;
  border-radius: 32px;
  padding: 2.4rem 2.2rem;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
}

.services-intro-title {
  margin: 0 0 0.9rem;
  font-size: 1.4rem;
  color: #3a2a16;
}

.services-intro-text {
  margin: 0 0 0.7rem;
  color: #6f6f6f;
  line-height: 1.9;
}

/* ========== SERVICES GRID FULL CARDS ========== */

.services-grid-section {
  background-color: #fbf6eb;
}

.services-grid-header {
  margin-bottom: 2.4rem;
}

.services-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.2rem;
}

.service-card-full {
  background-color: #f6efe4;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

.service-card-full .service-img-wrapper {
  position: relative;
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.service-card-full .service-img-large {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.service-card-full .service-img-wa {
  position: absolute;
  inset-inline-start: 1rem;
  inset-block-end: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background-color: #16c757;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.service-card-full .service-img-wa::before {
  content: "💬";
  font-size: 1.2rem;
}

.service-card-body {
  padding: 1.5rem 1.5rem 1.35rem;
  text-align: center;
}

.service-card-title {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #3a2a16;
}

.service-card-rating {
  color: #e2b220;
  letter-spacing: 1px;
  font-size: 1rem;
  margin-bottom: 0.65rem;
}

.service-card-text {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: #6f6f6f;
  line-height: 1.85;
}

.service-card-note {
  margin: 0;
  font-size: 0.82rem;
  color: #aaa;
}

/* ========== SERVICES TAGS PANEL ========== */

.services-tags-section {
  background-color: #fbf6eb;
  padding-top: 0;
}

.services-tags-panel {
  background: #fffaf2;
  border-radius: 30px;
  padding: 2.2rem 2.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.services-tags-title {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  color: #3a2a16;
}

.services-tags-subtitle {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: #6f6f6f;
}

.services-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid #f0e0c3;
  background-color: #fff;
  font-size: 0.86rem;
  color: #5a4631;
}

/* ========== SERVICES WHY SECTION ========== */

.services-why-section {
  background-color: #fbf6eb;
}

.services-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.services-why-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.services-why-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.services-why-cta {
  position: absolute;
  inset-inline-start: 1.4rem;
  inset-block-end: 1.4rem;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.78);
  color: #fff;
  font-size: 0.85rem;
  text-decoration: none;
}

.services-why-content .section-title {
  margin-bottom: 0.6rem;
}

.services-why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.4rem;
}

/* ========== FAQ STYLES ========== */

.services-faq-section {
  background-color: #fbf6eb;
}

.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-item-header {
  width: 100%;
  padding: 0.85rem 1.3rem;
  border: none;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: right;
}

.faq-icon {
  font-size: 1.1rem;
  color: #d4af37;
  margin-inline-start: 0.8rem;
}

.faq-item-body {
  max-height: 0;
  overflow: hidden;
  padding-inline: 1.3rem;
  background-color: #fcfaf4;
  transition: max-height 0.22s ease-out, padding-bottom 0.18s ease-out;
}

.faq-item-body p {
  margin: 0.2rem 0 1rem;
  font-size: 0.9rem;
  color: #6f6f6f;
  line-height: 1.9;
}

.faq-item.open .faq-item-body {
  max-height: 300px;
  padding-bottom: 0.9rem;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-extra-note {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.88rem;
  color: #9b8d7a;
}

/* ========== CTA BANNER ========== */

.services-cta {
  background: radial-gradient(circle at top, #202635, #0d1017);
  color: #fff;
  padding-block: 3.4rem 3.6rem;
}

.services-cta-inner {
  text-align: center;
  max-width: 720px;
}

.services-cta-title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.7rem, 2.2vw, 2rem);
}

.services-cta-text {
  margin: 0 0 1.4rem;
  color: #e4e0d6;
  line-height: 1.8;
  font-size: 0.95rem;
}

.services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

/* ========== RESPONSIVE FOR SERVICES PAGE ========== */

@media (max-width: 960px) {
  .services-intro-panel {
    padding: 1.8rem 1.4rem;
    border-radius: 26px;
  }

  .services-tags-panel {
    padding-inline: 1.4rem;
  }

  .services-why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-why-cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .services-hero {
    padding-block: 3.3rem 3.6rem;
  }

  .services-hero-badge {
    font-size: 0.8rem;
  }

  .services-intro-panel {
    padding-inline: 1.1rem;
  }

  .services-cta-inner {
    padding-inline: 0.8rem;
  }
}
/* ========== SERVICE CARD MAIN ========== */
.service-card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 22px;
  box-shadow: 0 6px 35px rgba(210, 175, 55, 0.18);
  overflow: hidden;
  padding-bottom: 18px;
  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 45px rgba(212, 175, 55, 0.28);
}

.service-img-wrapper {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.service-img-large {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

/* WhatsApp Floating Icon */
.service-whatsapp-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.25);
}

/* Titles */
.service-card-title {
  font-family: 'Almarai';
  font-weight: 700;
  font-size: 20px;
  color: #3A2A16; /* primaryDark */
  margin-top: 14px;
  text-align: center;
}

/* Stars */
.service-card-rating {
  text-align: center;
  color: #D4AF37;
  margin: 6px 0;
  letter-spacing: 2px;
}

/* Description */
.service-card-text {
  font-family: 'Almarai';
  color: #504A45;
  text-align: center;
  padding: 0 16px;
  font-size: 15px;
  line-height: 1.7;
}

/* Note */
.service-card-note {
  margin-top: 12px;
  text-align: center;
  color: #6f6f6f;
  font-size: 13px;
}

/* ========== SERVICE CARD MAIN – SERVICES PAGE ONLY ========== */

.services-grid-full .service-card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 22px;
  box-shadow: 0 6px 35px rgba(210, 175, 55, 0.18);
  overflow: hidden;
  padding-bottom: 18px;
  transition: all 0.25s ease;
}

.services-grid-full .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 45px rgba(212, 175, 55, 0.28);
}

.services-grid-full .service-img-wrapper {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.services-grid-full .service-img-large {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

/* WhatsApp Floating Icon */
.services-grid-full .service-whatsapp-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.25);
}

/* Titles */
.services-grid-full .service-card-title {
  font-family: 'Almarai';
  font-weight: 700;
  font-size: 20px;
  color: #3A2A16; /* primaryDark */
  margin-top: 14px;
  text-align: center;
}

/* Stars */
.services-grid-full .service-card-rating {
  text-align: center;
  color: #D4AF37;
  margin: 6px 0;
  letter-spacing: 2px;
}

/* Description */
.services-grid-full .service-card-text {
  font-family: 'Almarai';
  color: #504A45;
  text-align: center;
  padding: 0 16px;
  font-size: 15px;
  line-height: 1.7;
}

/* Note */
.services-grid-full .service-card-note {
  margin-top: 12px;
  text-align: center;
  color: #6f6f6f;
  font-size: 13px;
}

/* Grid Responsive Control – فقط لسكشن صفحة الخدمات */
.services-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
/* ========== WHY SECTION GRID (لماذا نحن) ========== */

.why-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: stretch;
}

.why-image-box {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.why-main-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.why-image-cta {
  position: absolute;
  inset-inline-start: 1.2rem;
  inset-block-end: 1.2rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.82);
  color: #fff;
  font-size: 0.86rem;
  text-decoration: none;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.4rem;
}

/* تكيّف الترتيب مع الأجهزة المتوسطة */
@media (max-width: 960px) {
  .why-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-image-box {
    max-width: 520px;
    margin: 0 auto 1.8rem;
  }

  .why-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* تكيّف كامل للجوال */
@media (max-width: 640px) {
  .why-cards {
    grid-template-columns: 1fr;
  }
}
/* أزرار داخل كروت الخدمات */
.service-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.service-card-actions .btn {
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
}

/* زر صغير لمعرض الأعمال */
.btn-small {
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
}

@media (max-width: 600px) {
  .service-card-actions {
    flex-direction: row;
    justify-content: flex-start;
  }
}
.service-title-wrap {
  text-align: center;
  margin-bottom: 0.8rem;
}

.service-title-wrap .service-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin-bottom: 0.4rem;
  display: block;
  margin-left: auto;
}
.site-footer a {
  color: inherit !important;
  text-decoration: none !important;
}

.site-footer a:hover {
  color: #d4af37 !important; /* لون ذهبي عند المرور (اختياري) */
}

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}

img {
  height: auto;
}

.skip-link:focus {
  top: 12px;
}

.gallery-image {
  width: 100%;
  height: auto;
}