/* ==========================================================================
   Arabian Kennels - Luxury Warm Arabian Sunset Design System
   Multi-Page Enterprise Portal Stylesheet
   ========================================================================== */

:root {
  /* Color Palette - Warm Arabian Sunset & Royal Gold */
  --bg-deep: #080302;
  --bg-dusk: #130704;
  --bg-sand: #1f0d06;
  --bg-card: rgba(26, 12, 7, 0.78);
  --bg-card-hover: rgba(38, 18, 10, 0.92);
  --bg-card-elevated: rgba(45, 20, 12, 0.88);

  --gold-pure: #e5a84b;
  --gold-light: #fbe2a7;
  --gold-bright: #fff2d1;
  --gold-dark: #9e6524;
  --gold-gradient: linear-gradient(135deg, #e5a84b 0%, #fbe2a7 50%, #c68936 100%);
  --gold-glow: rgba(229, 168, 75, 0.35);

  --amber-sunset: #e07a2e;
  --copper: #a85223;
  --bronze-dark: #3a150a;
  --terracotta: #c95f2a;

  --text-main: #fcf6ef;
  --text-muted: #cbb09e;
  --text-dim: #8b6b58;

  --border-gold: rgba(229, 168, 75, 0.22);
  --border-gold-hover: rgba(229, 168, 75, 0.65);
  --border-gold-solid: #e5a84b;
  --glass-blur: blur(18px);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-arabic: 'Cairo', 'Amiri', Tahoma, sans-serif;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: var(--bg-deep);
  color: var(--text-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.65;
  background-color: var(--bg-deep);
}

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

a, a:link, a:visited, a:hover, a:active {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   Ambient Sunset Backdrop & Desert Dunes (Fixed Atmosphere)
   ========================================================================== */
.sunset-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, #271006 0%, #120603 50%, #080302 100%);
}

.sky-glow {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 140vw;
  height: 70vh;
  background: radial-gradient(ellipse at center, rgba(224, 122, 46, 0.22) 0%, rgba(168, 82, 35, 0.1) 45%, transparent 70%);
  filter: blur(60px);
  animation: sunsetBreathe 9s ease-in-out infinite alternate;
}

.sun-orb {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 232, 181, 0.22) 0%, rgba(229, 168, 75, 0.1) 40%, rgba(224, 122, 46, 0) 70%);
  filter: blur(32px);
  animation: orbShimmer 7s ease-in-out infinite alternate;
}

.dunes {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  background-repeat: no-repeat;
  background-size: cover;
}

.dune-layer-back {
  height: 36vh;
  background: linear-gradient(175deg, transparent 40%, rgba(35, 15, 8, 0.35) 60%, rgba(18, 7, 3, 0.75) 100%);
  clip-path: ellipse(65% 55% at 50% 100%);
}

.dune-layer-mid {
  height: 26vh;
  background: linear-gradient(165deg, transparent 35%, rgba(48, 20, 10, 0.45) 55%, rgba(14, 5, 2, 0.85) 100%);
  clip-path: ellipse(75% 65% at 42% 100%);
}

.dune-layer-front {
  height: 16vh;
  background: linear-gradient(180deg, transparent 25%, rgba(40, 15, 7, 0.55) 50%, #080302 100%);
  clip-path: ellipse(85% 75% at 55% 100%);
}

.ambient-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@keyframes sunsetBreathe {
  0% { opacity: 0.65; transform: translateX(-50%) scale(0.98); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.04); }
}

@keyframes orbShimmer {
  0% { transform: translateX(-50%) scale(0.95); opacity: 0.5; }
  100% { transform: translateX(-50%) scale(1.05); opacity: 0.8; }
}

/* ==========================================================================
   Global Header & Navigation Bar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.85rem 2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(8, 3, 2, 0.88);
  border-bottom: 1px solid rgba(229, 168, 75, 0.18);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  max-width: 44px;
  max-height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 0 16px rgba(229, 168, 75, 0.25);
  transition: transform 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
  display: block;
}

.header-brand:hover .brand-logo-img {
  transform: scale(1.05);
  border-color: var(--gold-pure);
}

.brand-text-group {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffffff;
  line-height: 1.1;
}

.brand-arabic {
  font-family: var(--font-arabic);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-pure);
  line-height: 1.1;
}

/* Desktop Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.4rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all 0.22s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--gold-light);
  background: rgba(229, 168, 75, 0.08);
}

.nav-link.active {
  color: var(--gold-pure);
  background: rgba(229, 168, 75, 0.12);
  font-weight: 600;
  border: 1px solid rgba(229, 168, 75, 0.3);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--gold-pure);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--gold-pure);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.contact-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.48rem 1.1rem;
  background: rgba(229, 168, 75, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 9999px;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--ease-in-out);
  box-shadow: 0 0 12px rgba(229, 168, 75, 0.1);
}

.contact-pill-btn:hover {
  background: rgba(229, 168, 75, 0.25);
  border-color: var(--gold-pure);
  box-shadow: 0 0 20px var(--gold-glow);
  color: #ffffff;
  transform: translateY(-1px);
}

.icon-small {
  width: 16px;
  height: 16px;
}

/* Mobile Hamburger Toggle */
.mobile-nav-toggle {
  display: none;
  background: rgba(229, 168, 75, 0.08);
  border: 1px solid rgba(229, 168, 75, 0.3);
  padding: 0.45rem;
  border-radius: 8px;
  color: var(--gold-pure);
  cursor: pointer;
  transition: all 0.2s ease;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-nav-toggle:hover {
  background: rgba(229, 168, 75, 0.2);
  border-color: var(--gold-pure);
}

.hamburger-icon {
  width: 24px;
  height: 24px;
  display: block;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: rgba(14, 6, 3, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  padding: 1.5rem;
  z-index: 999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
  flex-direction: column;
  gap: 0.8rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s var(--ease-out-expo), opacity 0.3s ease, visibility 0.35s ease;
}

.mobile-drawer.open {
  display: flex;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  color: var(--text-main);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(229, 168, 75, 0.1);
  transition: all 0.2s ease;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  background: rgba(229, 168, 75, 0.15);
  border-color: var(--gold-pure);
  color: var(--gold-light);
}

.mobile-drawer-footer {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* ==========================================================================
   Hero Multi-Slide Carousel (Homepage Showcase)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 1.2rem auto 3.5rem;
  padding: 0 1.2rem;
}

.hero-slider-frame {
  position: relative;
  width: 100%;
  min-height: 580px;
  height: 68vh;
  max-height: 760px;
  border-radius: 22px;
  overflow: hidden;
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.85), 0 0 45px rgba(229, 168, 75, 0.22);
  background: #000000;
}

.slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s var(--ease-out-expo);
  transform: scale(1.02);
  z-index: 1;
}

.slider-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.slide-media-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) contrast(1.05);
}

.slide-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.slide-overlay-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(14, 5, 2, 0.35) 0%, rgba(8, 3, 2, 0.85) 90%),
              linear-gradient(180deg, rgba(8, 3, 2, 0.4) 0%, rgba(8, 3, 2, 0.92) 100%);
  z-index: 2;
}

.slide-content-box {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.slide-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 1rem;
  background: rgba(229, 168, 75, 0.16);
  border: 1px solid var(--gold-pure);
  border-radius: 9999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(8px);
}

.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5.2vw, 4.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 0.8rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.slide-title-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 0 25px rgba(229, 168, 75, 0.5);
}

.slide-description {
  font-size: clamp(0.98rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 760px;
  line-height: 1.65;
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(14, 5, 2, 0.65);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.slider-btn:hover {
  background: rgba(229, 168, 75, 0.3);
  border-color: var(--gold-pure);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-50%) scale(1.08);
}

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

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

.slider-dots-container {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  background: rgba(8, 3, 2, 0.65);
  border: 1px solid rgba(229, 168, 75, 0.25);
  border-radius: 9999px;
  backdrop-filter: blur(10px);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(229, 168, 75, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 28px;
  border-radius: 8px;
  background: var(--gold-gradient);
  box-shadow: 0 0 10px var(--gold-glow);
}

/* ==========================================================================
   Page Sub-Hero Header (For subpages: farm, training, clinic, services, contact)
   ========================================================================== */
.page-hero {
  position: relative;
  width: 100%;
  padding: 4.5rem 1.5rem 3.8rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
  background-color: #0d0503;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) contrast(1.1);
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 3, 2, 0.7) 0%, rgba(8, 3, 2, 0.94) 100%),
              radial-gradient(ellipse at 50% 30%, rgba(224, 122, 46, 0.2) 0%, transparent 70%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.page-breadcrumb a {
  color: var(--gold-light);
  transition: color 0.2s ease;
}

.page-breadcrumb a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.page-hero-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--amber-sunset);
  margin-bottom: 1.2rem;
}

.page-hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn-gold-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  background: var(--gold-gradient);
  color: #0a0302;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px var(--gold-glow);
  transition: all 0.3s var(--ease-out-expo);
}

.btn-gold-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(229, 168, 75, 0.5);
  filter: brightness(1.06);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.9rem;
  border-radius: 9999px;
  background: rgba(229, 168, 75, 0.06);
  border: 1.5px solid var(--gold-pure);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-out-expo);
}

.btn-gold-outline:hover {
  background: rgba(229, 168, 75, 0.2);
  color: #ffffff;
  border-color: var(--gold-bright);
  box-shadow: 0 4px 20px var(--gold-glow);
  transform: translateY(-2px);
}

.prestige-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.tag-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pure));
}

.prestige-tag .tag-line:last-child {
  background: linear-gradient(90deg, var(--gold-pure), transparent);
}

.tag-text {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--amber-sunset);
  text-transform: uppercase;
}

/* ==========================================================================
   Section Layouts & General Components
   ========================================================================== */
.section-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

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

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.section-title-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--gold-pure);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease-out-expo);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-pure);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px var(--gold-glow);
  background: var(--bg-card-hover);
}

.service-card-media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

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

.service-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  background: rgba(14, 5, 2, 0.85);
  border: 1px solid var(--border-gold);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-bright);
  backdrop-filter: blur(8px);
}

.service-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

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

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-pure);
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-card:hover .service-card-link {
  gap: 0.8rem;
  color: var(--gold-bright);
}

/* Feature Two-Column Content Block */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.feature-split.reverse {
  direction: rtl;
}

.feature-split.reverse > * {
  direction: ltr;
}

.feature-media-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(229, 168, 75, 0.15);
}

.feature-media-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.feature-content h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.feature-content h4.arabic-sub {
  font-family: var(--font-arabic);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-pure);
  margin-bottom: 1.2rem;
}

.feature-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.feature-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.96rem;
  color: var(--text-main);
}

.bullet-icon {
  color: var(--gold-pure);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Trust Pillars Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 2.4rem 1.8rem;
  text-align: center;
  backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s var(--ease-out-expo);
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-pure);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px var(--gold-glow);
}

.trust-icon-badge {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(229, 168, 75, 0.12);
  border: 1px solid rgba(229, 168, 75, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-pure);
  margin-bottom: 1.4rem;
}

.trust-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.trust-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   Family of Brands Ecosystem Showcase
   ========================================================================== */
.brands-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.brand-badge-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.brand-badge-card:hover {
  border-color: var(--gold-pure);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.brand-domain {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 0.4rem;
}

.brand-status-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  background: rgba(229, 168, 75, 0.15);
  color: var(--gold-pure);
  margin-bottom: 0.8rem;
}

.brand-summary-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Photo Gallery Grid & Interactive Lightbox
   ========================================================================== */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.gallery-tab-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 9999px;
  background: rgba(229, 168, 75, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-tab-btn:hover {
  color: var(--gold-light);
  border-color: var(--gold-pure);
}

.gallery-tab-btn.active {
  background: var(--gold-gradient);
  color: #0c0402;
  font-weight: 700;
  border-color: transparent;
  box-shadow: 0 2px 14px var(--gold-glow);
}

.media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  border: 1px solid var(--border-gold);
  background: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: all 0.3s var(--ease-out-expo);
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--gold-pure);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 25px var(--gold-glow);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 3, 2, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-caption {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.gallery-item-category {
  font-size: 0.72rem;
  color: var(--gold-pure);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 1, 1, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.open {
  display: flex;
  opacity: 1;
}

.lightbox-content-box {
  position: relative;
  max-width: 1000px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px var(--gold-glow);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--gold-light);
  text-align: center;
  font-weight: 500;
}

.lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: -10px;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.lightbox-close-btn:hover {
  color: #ffffff;
  transform: scale(1.2);
}

/* ==========================================================================
   5-Step Adoption Process & Guarantee
   ========================================================================== */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.process-step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 18px;
  padding: 1.8rem 2rem;
  backdrop-filter: var(--glass-blur);
  transition: all 0.3s ease;
}

.process-step-card:hover {
  border-color: var(--gold-pure);
  background: var(--bg-card-hover);
  transform: translateX(6px);
}

.process-step-num {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-gradient);
  color: #0c0402;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px var(--gold-glow);
}

.process-step-content h4 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.process-step-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Guarantee Card */
.guarantee-box {
  background: linear-gradient(135deg, rgba(38, 16, 8, 0.85) 0%, rgba(20, 8, 4, 0.95) 100%);
  border: 2px solid var(--gold-pure);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px var(--gold-glow);
  position: relative;
  overflow: hidden;
}

.guarantee-seal-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}

.guarantee-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 0.8rem;
}

.guarantee-desc {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 1.8rem;
}

/* ==========================================================================
   Hours Schedule Table & Location Cards
   ========================================================================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.location-card:hover {
  border-color: var(--gold-pure);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px var(--gold-glow);
}

.location-badge {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--amber-sunset);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.location-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.location-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Schedule Table */
.schedule-table-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 2.2rem;
  max-width: 820px;
  margin: 0 auto 4rem;
  backdrop-filter: var(--glass-blur);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.2rem;
}

.schedule-table th,
.schedule-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(229, 168, 75, 0.15);
  font-size: 0.95rem;
}

.schedule-table th {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  border-bottom: 1.5px solid var(--border-gold);
}

.schedule-table td:first-child {
  font-weight: 600;
  color: #ffffff;
}

.schedule-table td:last-child {
  color: var(--gold-pure);
  font-weight: 500;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: var(--glass-blur);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item:hover,
.faq-item.open {
  border-color: var(--gold-pure);
  background: var(--bg-card-hover);
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-icon-cross {
  font-size: 1.4rem;
  color: var(--gold-pure);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon-cross {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out-expo), padding 0.35s ease;
}

.faq-answer-inner {
  padding: 0 1.6rem 1.4rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 350px;
}

/* ==========================================================================
   Interactive Contact Form
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.contact-form-box {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

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

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 0.45rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(14, 5, 2, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-pure);
  box-shadow: 0 0 15px var(--gold-glow);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* ==========================================================================
   Global Footer
   ========================================================================== */
.site-footer {
  background: rgba(6, 2, 1, 0.95);
  border-top: 1px solid rgba(229, 168, 75, 0.2);
  padding: 4.5rem 1.5rem 2.5rem;
  margin-top: 5rem;
  position: relative;
  z-index: 10;
}

.footer-top {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  border: 1.5px solid var(--border-gold);
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.12em;
}

.footer-arabic {
  font-family: var(--font-arabic);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-pure);
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 360px;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold-pure);
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.footer-contact-item a {
  color: var(--gold-light);
}

.footer-contact-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(229, 168, 75, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* Floating WhatsApp Quick Action Button */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 15px rgba(229, 168, 75, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-menu {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .feature-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-split.reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.65rem 1rem;
  }

  .header-container {
    gap: 0.6rem;
  }

  .brand-name {
    font-size: 1.05rem;
    letter-spacing: 0.1em;
  }

  .brand-arabic {
    font-size: 0.82rem;
  }

  /* Compact WhatsApp chat button on mobile to guarantee hamburger menu stays visible */
  .contact-pill-btn {
    padding: 0.45rem 0.65rem;
    gap: 0;
  }

  .contact-pill-btn span {
    display: none;
  }

  .contact-pill-btn .icon-small {
    width: 18px;
    height: 18px;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .hero-slider-frame {
    min-height: 500px;
    height: 75vh;
  }

  .slide-content-box {
    padding: 2rem 1rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .slider-btn-prev {
    left: 10px;
  }

  .slider-btn-next {
    right: 10px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section-wrapper {
    padding: 3.5rem 1rem;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 0.55rem 0.75rem;
  }

  .header-brand {
    gap: 0.6rem;
  }

  .brand-logo-img {
    width: 38px;
    height: 38px;
    max-width: 38px;
    max-height: 38px;
  }

  .brand-name {
    font-size: 0.92rem;
    letter-spacing: 0.06em;
  }

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

  .mobile-nav-toggle {
    width: 38px;
    height: 38px;
    padding: 0.35rem;
  }
}
