/* ==========================================================================
   Al-Riyadh Curtains & Majlis - Premium Luxury Design System
   Riyadh, Saudi Arabia | UI/UX Pro Max Edition
   ========================================================================== */

:root {
  /* Color Tokens - Dark / Luxury Gold (Default) */
  --bg-primary: #0a0c10;
  --bg-secondary: #12161f;
  --bg-card: rgba(20, 25, 35, 0.75);
  --bg-card-hover: rgba(26, 33, 46, 0.95);
  --bg-glass: rgba(14, 18, 25, 0.88);
  --border-color: rgba(212, 175, 55, 0.22);
  --border-glow: rgba(212, 175, 55, 0.55);

  --text-primary: #f8f9fa;
  --text-secondary: #b8c1cf;
  --text-muted: #7e889b;

  --gold-primary: #d4af37;
  --gold-light: #f7e7a9;
  --gold-dark: #aa7c11;
  --gold-gradient: linear-gradient(135deg, #f7e7a9 0%, #d4af37 50%, #aa7c11 100%);
  --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #f7e7a9 40%, #d4af37 100%);

  --whatsapp-green: #25d366;
  --whatsapp-hover: #1eb956;
  --phone-blue: #3b82f6;

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.22);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --font-arabic: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-latin: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
}

/* Light Theme Variables */
[data-theme="light"] {
  --bg-primary: #faf8f4;
  --bg-secondary: #f0ebe1;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.95);
  --border-color: rgba(180, 134, 11, 0.28);
  --border-glow: rgba(180, 134, 11, 0.6);

  --text-primary: #12151b;
  --text-secondary: #3d4655;
  --text-muted: #6b7588;

  --gold-primary: #b8860b;
  --gold-light: #8f6505;
  --gold-dark: #6e4e02;
  --gold-gradient: linear-gradient(135deg, #b8860b 0%, #8f6505 100%);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 36px rgba(184, 134, 11, 0.15);
  --shadow-gold: 0 8px 30px rgba(184, 134, 11, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-latin);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

html[dir="rtl"] body {
  font-family: var(--font-arabic);
}

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

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

button, input, textarea, select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}


/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

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

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 1rem;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0b0d11 !important;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(212, 175, 55, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

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

/* ==========================================================================
   Full-Width Luxury Header & Responsive Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.9rem 0;
  transition: all var(--transition-smooth);
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.site-header.scrolled {
  background: rgba(10, 12, 16, 0.95);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
}

[data-theme="light"] .site-header {
  background: rgba(251, 249, 245, 0.92);
  border-bottom: 1px solid rgba(180, 140, 50, 0.2);
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(251, 249, 245, 0.98);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Full Width Header Container */
.header-container {
  width: 100%;
  max-width: 100%;
  padding: 0 2.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Clean Brand Logo without redundant text */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
  transition: transform var(--transition-fast);
}

.brand-logo:hover img {
  transform: scale(1.05);
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.3px;
  line-height: 1.2;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Navigation Menu - Clean, Horizontal, No Wrapping */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0.2rem;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-smooth);
  border-radius: var(--radius-full);
}

html[dir="rtl"] .nav-link::after {
  left: auto;
  right: 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Controls Cluster */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Icon Buttons: Theme & Lang */
.control-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  height: 40px;
  padding: 0 0.9rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}

.control-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}

.theme-toggle-btn {
  width: 40px;
  padding: 0;
}

.lang-toggle-btn {
  font-size: 0.88rem;
}

.lang-toggle-btn i {
  color: var(--gold-primary);
  font-size: 1rem;
}

/* Hamburger Button */
.hamburger-btn {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  font-size: 1.25rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hamburger-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* Mobile & Tablet Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  padding: 2rem 1.5rem;
  z-index: 1100;
  transition: transform var(--transition-smooth), visibility var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
  overflow-y: auto;
  visibility: hidden;
}

html[dir="rtl"] .mobile-drawer {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid var(--border-color);
  transform: translateX(-100%);
}

.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

html[dir="rtl"] .mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
}


.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

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

.drawer-links a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

.drawer-links a:hover, .drawer-links a.active {
  color: var(--gold-primary);
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Hero Section - Luxury Cinematic Showcase
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 5rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.65) 45%, rgba(8, 10, 14, 0.25) 100%);
  z-index: 1;
}

html[dir="rtl"] .hero-overlay {
  background: linear-gradient(270deg, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.65) 45%, rgba(8, 10, 14, 0.25) 100%);
}

[data-theme="light"] .hero-overlay {
  background: linear-gradient(90deg, rgba(15, 18, 25, 0.82) 0%, rgba(15, 18, 25, 0.55) 45%, rgba(15, 18, 25, 0.2) 100%);
}

html[dir="rtl"][data-theme="light"] .hero-overlay {
  background: linear-gradient(270deg, rgba(15, 18, 25, 0.82) 0%, rgba(15, 18, 25, 0.55) 45%, rgba(15, 18, 25, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-content .gold-badge {
  background: rgba(10, 12, 16, 0.65);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.hero-desc {
  font-size: 1.22rem;
  color: #f1f5f9;
  margin-bottom: 2.25rem;
  line-height: 1.75;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 0.92rem;
  color: #e2e8f0;
  font-weight: 600;
}

/* ==========================================================================
   Stats & Trust Highlights Bar directly following Hero
   ========================================================================== */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3.5rem 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .stats-bar {
  background: #ffffff;
  border-color: rgba(180, 130, 50, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.stat-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.trust-badges-row {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.trust-badge-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.trust-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-badge-text h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.trust-badge-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* Resilient service card aliases */
.service-img-wrap,
.service-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #151922;
}

.service-img-wrap img,
.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.service-desc,
.service-text {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

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

/* ==========================================================================
   Services Section with Photos on Every Card
   ========================================================================== */
.services-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.25rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
}

.service-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #151922;
}

.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.service-card-img-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(10, 12, 16, 0.85);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

html[dir="rtl"] .service-card-img-badge {
  right: auto;
  left: 1rem;
}

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

.service-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.service-title {
  font-size: 1.38rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

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

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-features li i {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

/* ==========================================================================
   Service Card Actions - Luxury Dual-Button Stack
   ========================================================================== */
.service-actions-row {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  margin-top: auto !important;
  padding-top: 1.35rem !important;
  border-top: 1px solid var(--border-color) !important;
  width: 100% !important;
}

.service-actions-row .btn {
  width: 100% !important;
  padding: 0.88rem 1.25rem !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.65rem !important;
  text-align: center !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
  transition: all var(--transition-smooth) !important;
}

.service-actions-row .btn i {
  font-size: 1.15rem !important;
  flex-shrink: 0 !important;
}

.service-actions-row .btn:hover {
  transform: translateY(-2px) !important;
}

.service-actions-row .btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1ea952 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25) !important;
}

.service-actions-row .btn-whatsapp:hover {
  background: linear-gradient(135deg, #2beb75 0%, #22bb5b 100%) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45) !important;
}

.service-actions-row .btn-gold {
  background: var(--gold-gradient) !important;
  color: #0b0d11 !important;
  font-weight: 800 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.28) !important;
}

.service-actions-row .btn-gold:hover {
  background: var(--gold-gradient-hover) !important;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5) !important;
}

[data-theme="light"] .service-actions-row {
  border-color: rgba(180, 134, 11, 0.2) !important;
}

[data-theme="light"] .service-actions-row .btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.25) !important;
}

[data-theme="light"] .service-actions-row .btn-gold:hover {
  background: linear-gradient(135deg, #e0bc45 0%, #c49212 100%) !important;
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4) !important;
}

/* ==========================================================================
   Why Choose Us & Feature Cards
   ========================================================================== */
.why-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(12px);
}

.feature-box:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   Fabrics Showcase Section
   ========================================================================== */
.fabrics-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.fabrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.75rem;
}

.fabric-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(12px);
}

.fabric-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.fabric-img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.fabric-body {
  padding: 1.5rem;
}

.fabric-name {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.fabric-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
}

.testi-stars {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testi-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}

.testi-author {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--gold-primary);
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

/* ==========================================================================
   Interactive FAQ Accordion
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 1.75rem;
  text-align: inherit;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question i {
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  display: none;
  padding: 0 1.75rem 1.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 1rem;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   Riyadh Districts Coverage Banner
   ========================================================================== */
.districts-section {
  padding: 5rem 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.districts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.district-tag {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.district-tag i {
  color: var(--gold-primary);
}

/* ==========================================================================
   Portfolio Gallery & Lightbox
   ========================================================================== */
.portfolio-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-gradient);
  color: #0b0d11;
  border-color: transparent;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 12, 16, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--transition-smooth);
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-tag {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.portfolio-caption {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 10, 0.95);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  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: var(--radius-sm);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--text-primary);
  font-size: 1.05rem;
  text-align: center;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--gold-primary);
  color: #000;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-nav:hover {
  background: var(--gold-primary);
  color: #000;
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.team-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.team-photo-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #141720;
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.team-card:hover .team-photo-wrap img {
  transform: scale(1.05);
}

.team-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.team-role {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.team-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.team-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.team-pill {
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
}

/* ==========================================================================
   Contact & Quote Form
   ========================================================================== */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-color);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.info-content p, .info-content a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.75rem;
  backdrop-filter: blur(12px);
}

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

.form-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.2rem;
  color: var(--text-primary);
  font-size: 0.98rem;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

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

/* ==========================================================================
   Floating Action Buttons (WhatsApp & Call)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 999;
}

html[dir="rtl"] .floating-actions {
  right: auto;
  left: 2rem;
}

.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-fast);
  position: relative;
}

.floating-btn.whatsapp-float {
  background: var(--whatsapp-green);
}

.floating-btn.phone-float {
  background: var(--phone-blue);
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.floating-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid currentColor;
  opacity: 0.4;
  animation: pulse 2s infinite ease-out;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #080a0e;
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  padding: 5rem 0 2rem;
  color: #e2e8f0;
}

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

.footer-brand p {
  color: #e2e8f0 !important;
  font-size: 0.98rem;
  margin-top: 1.2rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--gold-light) !important;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-gradient);
}

html[dir="rtl"] .footer-col h4::after {
  left: auto;
  right: 0;
}

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

.footer-links a {
  color: #cbd5e1 !important;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light) !important;
  padding-inline-start: 4px;
}

.footer-links li {
  color: #cbd5e1 !important;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-links li i {
  color: var(--gold-primary) !important;
  font-size: 1rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: #cbd5e1 !important;
}

.footer-bottom span:last-child {
  color: var(--gold-light) !important;
  font-weight: 700;
}

/* Light Theme Footer Contrast */
[data-theme="light"] .site-footer {
  background: #f7f3eb;
  border-top: 1px solid rgba(180, 134, 11, 0.3);
  color: #1a202c;
}

[data-theme="light"] .footer-brand p {
  color: #2d3748 !important;
}

[data-theme="light"] .footer-col h4 {
  color: #8f6505 !important;
}

[data-theme="light"] .footer-links a {
  color: #2d3748 !important;
}

[data-theme="light"] .footer-links a:hover {
  color: #8f6505 !important;
}

[data-theme="light"] .footer-links li {
  color: #2d3748 !important;
}

[data-theme="light"] .footer-bottom {
  border-top: 1px solid rgba(180, 134, 11, 0.2);
  color: #4a5568 !important;
}

[data-theme="light"] .footer-bottom span:last-child {
  color: #8f6505 !important;
}

/* ==========================================================================
   Responsive Breakpoints - Optimized for PC, Tablet & Mobile
   ========================================================================== */
@media (max-width: 992px) {
  .header-container {
    padding: 0 1.25rem;
    gap: 0.75rem;
  }

  .nav-links, .nav-controls .btn-gold {
    display: none;
  }

  .hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-title {
    font-size: 2.6rem;
  }

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

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

@media (max-width: 640px) {
  .header-container {
    padding: 0 0.85rem;
    gap: 0.4rem;
  }

  .brand-logo {
    gap: 0.45rem;
    min-width: 0;
    flex-shrink: 1;
  }

  .brand-logo img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .brand-title {
    font-size: 1.02rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-controls {
    gap: 0.35rem;
    flex-shrink: 0;
  }

  .control-btn {
    height: 36px;
    padding: 0 0.65rem;
    font-size: 0.82rem;
  }

  .theme-toggle-btn {
    width: 36px;
    padding: 0;
  }

  .hamburger-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .hero-title {
    font-size: 2.05rem;
  }

  .hero-desc {
    font-size: 1.02rem;
  }

  .services-grid, .portfolio-grid, .team-grid, .features-grid, .fabrics-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .floating-actions {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  html[dir="rtl"] .floating-actions {
    left: 1.25rem;
  }
}

@media (max-width: 380px) {
  .brand-title {
    font-size: 0.92rem;
  }

  .lang-toggle-btn {
    padding: 0 0.5rem;
  }

  .lang-toggle-btn .lang-label {
    font-size: 0.76rem;
  }
}

/* ==========================================================================
   Form Controls & Interactive Fields
   ========================================================================== */
.contact-form-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}

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

.form-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.15rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
  background: var(--bg-card);
}

.form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.75;
}

select.form-control {
  cursor: pointer;
  appearance: auto;
}

select.form-control option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

/* ==========================================================================
   Light Mode Complete Overhaul (Crystal Clear & Ultra Readable)
   ========================================================================== */
[data-theme="light"] {
  --bg-primary: #fcfbf9;
  --bg-secondary: #f4efe6;
  --bg-card: #ffffff;
  --bg-card-hover: #fcfbf7;
  --bg-glass: rgba(255, 255, 255, 0.96);
  --border-color: rgba(180, 140, 50, 0.25);
  --border-glow: rgba(180, 140, 50, 0.6);

  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;

  --gold-primary: #a16207;
  --gold-light: #854d0e;
  --gold-dark: #713f12;
  --gold-gradient: linear-gradient(135deg, #a16207 0%, #b45309 60%, #78350f 100%);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 32px rgba(161, 98, 7, 0.08);
  --shadow-gold: 0 8px 30px rgba(161, 98, 7, 0.14);
}

[data-theme="light"] body {
  background-color: #fcfbf9;
  color: #0f172a;
}

[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(180, 140, 50, 0.22);
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .nav-link {
  color: #334155;
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active {
  color: #a16207;
}

[data-theme="light"] .control-btn {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(180, 140, 50, 0.3);
}

[data-theme="light"] .mobile-drawer {
  background: #ffffff;
  border-color: rgba(180, 140, 50, 0.25);
}

[data-theme="light"] .drawer-links a {
  color: #0f172a;
}

[data-theme="light"] .hero-title {
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95);
}

[data-theme="light"] .hero-desc {
  color: #f8fafc;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
}

[data-theme="light"] .hero-content .gold-badge {
  background: rgba(15, 23, 42, 0.7);
  color: #fde047;
  border-color: #facc15;
}

/* ==========================================================================
   Form Controls, Inputs, and Contact Card Design System
   ========================================================================== */
.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: inherit;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-primary);
  background: rgba(18, 22, 31, 0.75);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
  box-sizing: border-box;
}

.form-control:focus {
  border-color: var(--gold-primary);
  background: rgba(22, 28, 40, 0.95);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.22);
}

.form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  padding-left: 2.5rem;
}

html[dir="rtl"] select.form-control {
  background-position: left 1rem center;
}

html[dir="ltr"] select.form-control {
  background-position: right 1rem center;
  padding-left: 1.25rem;
  padding-right: 2.5rem;
}

select.form-control option {
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 0.75rem;
}

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

/* ==========================================================================
   Team Members Grid & Luxury Profile Cards
   ========================================================================== */
.team-section {
  position: relative;
  overflow: hidden;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.team-card-banner {
  height: 120px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.45) 0%, rgba(10, 12, 16, 0.85) 100%),
              url('../images/hero-bg.jpg') center/cover no-repeat;
  position: relative;
}

.team-card-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(18, 22, 31, 0.8) 100%);
}

.team-avatar-wrap {
  width: 130px;
  height: 130px;
  margin: -65px auto 1rem;
  border-radius: 50%;
  border: 4px solid var(--gold-primary);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  background: var(--bg-secondary);
  z-index: 2;
}

.team-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.team-card:hover .team-avatar {
  transform: scale(1.08);
}

.team-body {
  padding: 1.5rem 2rem 2rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.team-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  display: inline-block;
  letter-spacing: 0.5px;
}

.team-bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex: 1;
}

.team-contact-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

/* ==========================================================================
   Portfolio Lightbox Modal System
   ========================================================================== */
.lightbox,
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active,
.lightbox-modal.active,
.lightbox.show,
.lightbox-modal.show {
  display: flex;
}

.lightbox-content,
.lightbox-modal-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--shadow-gold);
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleUp {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-img,
.lightbox-modal-img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #000;
  display: block;
}

.lightbox-caption,
.lightbox-modal-caption {
  padding: 1.25rem 1.75rem;
  color: var(--text-primary);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
}

.lightbox-close,
.lightbox-modal-close {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: 1px solid var(--gold-primary);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
}

.lightbox-close:hover,
.lightbox-modal-close:hover {
  background: var(--gold-primary);
  color: #000;
  transform: rotate(90deg);
}

/* ==========================================================================
   Comprehensive Light Mode Overrides for 100% Contrast & Elegance
   ========================================================================== */
[data-theme="light"] {
  --bg-primary: #fbf9f5;
  --bg-secondary: #f2eee6;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.95);
  --border-color: rgba(180, 130, 50, 0.25);
  --border-glow: rgba(180, 130, 50, 0.6);

  --text-primary: #111827 !important;
  --text-secondary: #374151 !important;
  --text-muted: #6b7280 !important;

  --gold-primary: #a16207;
  --gold-light: #854d0e;
  --gold-dark: #713f12;
  --gold-gradient: linear-gradient(135deg, #ca8a04 0%, #a16207 100%);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 36px rgba(161, 98, 7, 0.12);
  --shadow-gold: 0 8px 30px rgba(161, 98, 7, 0.18);
}

[data-theme="light"] body {
  background-color: #fbf9f5;
  color: #111827;
}

[data-theme="light"] .service-card,
[data-theme="light"] .contact-form-card,
[data-theme="light"] .team-card,
[data-theme="light"] .feature-box,
[data-theme="light"] .step-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .fabric-card,
[data-theme="light"] .portfolio-card,
[data-theme="light"] .stat-card,
[data-theme="light"] .faq-item {
  background: #ffffff !important;
  border-color: rgba(161, 98, 7, 0.22) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .form-label {
  color: #111827 !important;
  font-weight: 700;
}

[data-theme="light"] .form-control {
  background: #ffffff !important;
  border-color: #cbd5e1 !important;
  color: #111827 !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .form-control:focus {
  background: #ffffff !important;
  border-color: #a16207 !important;
  box-shadow: 0 0 0 4px rgba(161, 98, 7, 0.18) !important;
}

[data-theme="light"] .form-control::placeholder {
  color: #94a3b8 !important;
}

[data-theme="light"] select.form-control option {
  background: #ffffff !important;
  color: #111827 !important;
}

[data-theme="light"] .team-name {
  color: #111827 !important;
}

[data-theme="light"] .team-role {
  color: #a16207 !important;
}

[data-theme="light"] .team-bio {
  color: #4b5563 !important;
}

[data-theme="light"] .team-avatar-wrap {
  border-color: #a16207 !important;
  background: #ffffff !important;
}

[data-theme="light"] .site-header {
  background: rgba(251, 249, 245, 0.94) !important;
  border-bottom-color: rgba(161, 98, 7, 0.18) !important;
}

[data-theme="light"] .nav-link {
  color: #1f2937 !important;
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active {
  color: #a16207 !important;
}

[data-theme="light"] .site-footer {
  background: #0f1218 !important;
  color: #f8fafc !important;
}

[data-theme="light"] .site-footer .footer-links a {
  color: #cbd5e1 !important;
}

[data-theme="light"] .site-footer .footer-links a:hover {
  color: #fde047 !important;
}

[data-theme="light"] .btn-outline {
  color: #111827 !important;
  border-color: rgba(161, 98, 7, 0.45) !important;
}

[data-theme="light"] .btn-outline:hover {
  background: rgba(161, 98, 7, 0.12) !important;
  color: #854d0e !important;
}

[data-theme="light"] .faq-question {
  color: #111827 !important;
}

[data-theme="light"] .faq-answer p {
  color: #4b5563 !important;
}

[data-theme="light"] .section-title {
  color: #111827 !important;
}

[data-theme="light"] .section-subtitle {
  color: #4b5563 !important;
}

[data-theme="light"] .gold-badge {
  background: rgba(161, 98, 7, 0.1) !important;
  color: #854d0e !important;
  border-color: rgba(161, 98, 7, 0.3) !important;
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */
@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .team-avatar-wrap {
    width: 110px;
    height: 110px;
    margin: -55px auto 1rem;
  }
  
  .team-card-banner {
    height: 100px;
  }
  
  .team-body {
    padding: 1.25rem 1.25rem 1.5rem;
  }
  
  .team-name {
    font-size: 1.2rem;
  }
  
  .form-control {
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
  }
  
  .contact-form-card {
    padding: 1.75rem 1.25rem !important;
  }
}

/* ==========================================================================
   Stats Bar & Trust Highlights Bar (Section Directly After Hero)
   ========================================================================== */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 4rem 0 3.5rem;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', 'Cairo', sans-serif;
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.stat-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.trust-badges-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.trust-badge-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.trust-badge-text h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.trust-badge-text p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   Services Grid & Service Cards
   ========================================================================== */
.services-section {
  padding: 5.5rem 0;
  background: var(--bg-primary);
}

.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-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.service-card-img-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: var(--bg-secondary);
}

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

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

.service-card-img-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(11, 15, 23, 0.85);
  color: var(--gold-primary);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

[dir="ltr"] .service-card-img-badge {
  right: auto;
  left: 15px;
}

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

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.service-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.service-features li i {
  color: var(--gold-primary);
  margin-top: 0.25rem;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* (service-actions-row styling defined above with luxury dual-button stack) */

/* ==========================================================================
   Fabric & Material Comparison Guide Table (Services Page)
   ========================================================================== */
.fabric-guide-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

.fabric-guide-table {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
  min-width: 680px;
}

[dir="ltr"] .fabric-guide-table {
  text-align: left;
}

.fabric-guide-table th {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  font-weight: 800;
  padding: 1.1rem 1.4rem;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--border-color);
}

.fabric-guide-table td {
  padding: 1.1rem 1.4rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  line-height: 1.6;
}

.fabric-guide-table tr:last-child td {
  border-bottom: none;
}

.fabric-guide-table tr:hover td {
  background: rgba(212, 175, 55, 0.04);
}

.fabric-pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
}

/* ==========================================================================
   Pillars & Standards Grids (About Page)
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Metrics Row on About Page */
.about-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.about-metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.about-metric-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-primary);
  font-family: 'Outfit', 'Cairo', sans-serif;
  margin-bottom: 0.35rem;
}

.about-metric-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ==========================================================================
   Luxury Site Footer & Widgets
   ========================================================================== */
.site-footer {
  background: #080a0e;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 2rem;
  color: var(--text-secondary);
  margin-top: auto;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
}

[data-theme="light"] .site-footer {
  background: #14171f;
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  color: #c5cbd8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

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

.footer-brand .brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand .brand-logo img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 360px;
}

.footer-col h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.65rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
}

html[dir="rtl"] .footer-col h4::after {
  left: auto;
  right: 0;
}

.footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.93rem;
  list-style: none !important;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

html[dir="rtl"] .footer-links a:hover {
  transform: translateX(-4px);
}

.footer-links i {
  color: var(--gold-primary);
  font-size: 1rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

[data-theme="light"] .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Floating Sticky Quick Actions (WhatsApp & Call)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

html[dir="rtl"] .floating-actions {
  right: auto;
  left: 24px;
}

.float-btn, .floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: all var(--transition-smooth);
  color: #fff !important;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.float-call, .phone-float {
  background: linear-gradient(135deg, #d4af37, #aa7c11);
}

.float-btn:hover, .floating-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Mobile Drawer & Navigation Overlay
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  padding: 2rem 1.5rem;
  z-index: 1100;
  transition: transform var(--transition-smooth), visibility var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
  overflow-y: auto;
  visibility: hidden;
}

html[dir="rtl"] .mobile-drawer {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid var(--border-color);
  transform: translateX(-100%);
}

.mobile-drawer.open {
  transform: translateX(0) !important;
  visibility: visible !important;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.drawer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.drawer-links a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

.drawer-links a:hover, .drawer-links a.active {
  color: var(--gold-primary);
}

.drawer-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.drawer-backdrop, .drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.drawer-backdrop.active, .drawer-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.close-drawer-btn, .drawer-close {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.close-drawer-btn:hover, .drawer-close:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: rotate(90deg);
}

/* ==========================================================================
   Responsive Breakpoints & Layout Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 1.5rem;
  }
  .nav-links {
    gap: 1.2rem;
  }
  .nav-link {
    font-size: 0.9rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-badges-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 992px) {
  .header-container {
    padding: 0 1.25rem;
  }
  
  .nav-links {
    display: none !important;
  }
  
  .nav-cta-btn {
    display: none !important;
  }
  
  .hamburger-btn {
    display: flex !important;
  }
  
  .brand-title {
    font-size: 1.1rem;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .trust-badges-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about-metrics-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card-img-wrap {
    height: 220px;
  }
  .service-card-body {
    padding: 1.5rem;
  }
  .service-actions-row {
    flex-direction: column;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .floating-actions {
    bottom: 18px;
    right: 18px;
  }
  html[dir="rtl"] .floating-actions {
    right: auto;
    left: 18px;
  }
  .float-btn, .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .brand-title {
    font-size: 0.95rem;
    max-width: 150px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .section-title {
    font-size: 1.85rem !important;
  }
  .hero-content h1 {
    font-size: 2rem !important;
  }
}




