/* ==========================================================================
   شركة ليلاك ديزاين | Lilac Design - Luxury Design System & Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Brand Luxury Palette */
  --primary: #a13004;
  --primary-hover: #BF572F;
  --primary-dark: #8E3A1C;
  --primary-light: #FCEFE9;
  --primary-glow: rgba(212, 107, 67, 0.35);

  /* Gold & Warm Accents */
  --gold: #C5A880;
  --gold-light: #F5EFEB;
  --gold-gradient: linear-gradient(135deg, #D46B43 0%, #DF8862 50%, #C5A880 100%);
  --gold-foil: linear-gradient(135deg, #ECC895 0%, #D4AF37 50%, #B8924B 100%);

  /* Neutrals & Surfaces */
  --surface-white: #FFFFFF;
  --surface-cream: #FAF8F5;
  --surface-card: #FFFFFF;
  --surface-alt: #F4EFEB;
  --surface-dark: #121316;
  --surface-dark-card: #1B1D22;
  --surface-dark-border: rgba(255, 255, 255, 0.1);

  /* Text Colors */
  --text-main: #18191E;
  --text-muted: #5E6370;
  --text-light: #9096A5;
  --text-white: #FFFFFF;

  /* Borders & Dividers */
  --border-light: #EBE5DC;
  --border-glass: rgba(255, 255, 255, 0.15);

  /* Elevation & Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(24, 25, 30, 0.06);
  --shadow-lg: 0 20px 45px rgba(24, 25, 30, 0.1);
  --shadow-primary: 0 10px 25px rgba(212, 107, 67, 0.28);
  --shadow-glow: 0 0 30px rgba(212, 107, 67, 0.3);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Typography */
  --font-primary: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-heading: 'Alexandria', 'Cairo', system-ui, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-tap-highlight-color: transparent;
  scrollbar-width: thin;
  scrollbar-color: #D46B43 #F5F2EB;
}

/* Custom Luxury Scrollbar (Webkit / Chrome / Edge / Safari) */
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

::-webkit-scrollbar-track {
  background: #F5F2EB;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #D46B43 0%, #C4984F 50%, #D46B43 100%);
  border-radius: 10px;
  border: 2px solid #F5F2EB;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #C4984F 0%, #F7BE46 50%, #C4984F 100%);
  box-shadow: 0 0 8px rgba(212, 107, 67, 0.4);
}

::-webkit-scrollbar-corner {
  background: #F5F2EB;
}

body {
  font-family: var(--font-primary);
  background-color: var(--surface-cream);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

.container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   3. Typography & Utility Classes
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.35;
  font-weight: 700;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only:focus {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 0.8rem 1.6rem;
  background: var(--primary);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  clip: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  font-weight: 700;
  text-decoration: none;
}

.gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.highlight-text {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(212, 107, 67, 0.2);
}

.section-tag i {
  font-size: 0.95rem;
  color: var(--primary);
}

.section-heading {
  font-size: 2.35rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }
}

.section-subtext {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

/* --------------------------------------------------------------------------
   4. Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .btn {
    padding: 0.5rem 1.4rem;
    font-size: 0.8rem;
  }
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .btn-lg {
    padding: 0.75rem 1.4rem;
    font-size: 0.85rem;
  }
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--text-white);
  box-shadow: var(--shadow-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(212, 107, 67, 0.4);
  filter: brightness(1.05);
}

.btn-luxury-cta {
  background: var(--gold-gradient);
  color: var(--text-white);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: var(--shadow-primary);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-luxury-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 107, 67, 0.4);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--text-white);
  transform: translateY(-3px);
  border-color: var(--text-white);
}

.btn-whatsapp-direct {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-direct:hover {
  background: #20BA5A;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-light);
}

.btn-outline-dark:hover {
  background: var(--text-main);
  color: var(--text-white);
  border-color: var(--text-main);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--text-white);
}

/* --------------------------------------------------------------------------
   5. Top Bar & Announcement
   -------------------------------------------------------------------------- */
.top-bar {
  background: linear-gradient(90deg, #0b0c0f 0%, #15171e 50%, #0b0c0f 100%);
  color: #D3CECA;
  font-size: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(212, 107, 67, 0.22);
  position: relative;
  z-index: 1001;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 107, 67, 0.12);
  border: 1px solid rgba(212, 107, 67, 0.3);
  padding: 0.22rem 0.75rem;
  border-radius: var(--radius-full);
}

.top-badge-text {
  font-size: 0.82rem;
  color: #F8E7D8;
}

.top-badge-text strong {
  color: #E5C378;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 10px #25D366;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.35);
    opacity: 0.7;
  }
}

.top-info-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #BCB6AF;
  font-size: 0.82rem;
}

.top-info-pill i {
  color: #D46B43;
  font-size: 0.85rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #EAE6E1;
  font-weight: 700;
  font-size: 0.84rem;
  transition: var(--transition-fast);
}

.top-action-link i {
  color: #D46B43;
  font-size: 0.85rem;
}

.top-action-link:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.top-whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.35);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.82rem;
  transition: var(--transition-fast);
}

.top-whatsapp-pill:hover {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   6. Header & Floating Glass Navbar
   -------------------------------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 0.75rem 0;
  transition: var(--transition-normal);
  border-bottom: 1px solid rgba(212, 107, 67, 0.1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 0.55rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-main);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 700;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.35rem 0;
}

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

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

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

.mobile-menu-btn {
  display: none;
  background: transparent;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  padding: 0.4rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   7. Hero Section (Dynamic Height = Viewport - Navbar)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  min-height: calc(100dvh - 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url('../images/services/صالات الاستقبال.jpeg') center center / cover no-repeat;
  color: var(--text-white);
  padding: 2.5rem 0 2rem 0;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 7, 9, 0.88) 0%, rgba(11, 12, 16, 0.82) 40%, rgba(14, 15, 20, 0.80) 60%, rgba(6, 7, 9, 0.94) 100%);
  z-index: 1;
}


.hero-glow {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 820px;
  max-width: 95vw;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(247, 190, 70, 0.22) 0%, rgba(212, 107, 67, 0.16) 38%, rgba(14, 15, 20, 0.02) 70%, transparent 100%);
  filter: blur(70px);
  z-index: 2;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}



.hero-title {
  font-size: clamp(1.65rem, 2.35vw, 2.3rem);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.9);
  animation: fadeInUp 0.9s ease;
  margin-bottom: 20px;
}

.hero-title .gradient-text {
  color: #F7BE46;
  -webkit-text-fill-color: #F7BE46;
  background: none;
  display: inline;
  font-weight: 900;
  text-shadow: 0 0 25px rgba(247, 190, 70, 0.45), 0 3px 12px rgba(0, 0, 0, 0.95);
}

.hero-description {
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  color: #EDE8E1;
  max-width: 660px;
  margin: 0 auto 1.4rem auto;
  line-height: 1.75;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  animation: fadeInUp 1s ease;
  margin-bottom: 50px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1.1s ease;
}

.hero-cta-group .btn {
  padding: 0.7rem 1.4rem;
  font-size: 0.92rem;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: rgba(14, 15, 19, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  animation: fadeInUp 1.2s ease;
  margin-top: 25px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: right;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.trust-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 107, 67, 0.18);
  border: 1px solid rgba(247, 190, 70, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon-box i {
  font-size: 1.1rem;
  color: #FFC44D;
}

.trust-text strong {
  display: block;
  font-size: 0.88rem;
  color: #FFFFFF;
  margin-bottom: 0.1rem;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.trust-text span {
  font-size: 0.75rem;
  color: #C8C2BA;
  line-height: 1.35;
}

/* Luxury Hero Scroll Down Indicator (Mouse Capsule) */
.hero-scroll-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  z-index: 10;
  transition: var(--transition-normal);
  cursor: pointer;
}

.hero-scroll-indicator:hover {
  transform: translateX(-50%) translateY(3px);
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border-radius: 12px;
  border: 2px solid rgba(229, 195, 120, 0.65);
  background: rgba(18, 19, 22, 0.45);
  backdrop-filter: blur(8px);
  position: relative;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  transition: var(--transition-fast);
}

.hero-scroll-indicator:hover .scroll-mouse {
  border-color: #FFC44D;
  box-shadow: 0 0 15px rgba(247, 190, 70, 0.4);
}

.scroll-wheel {
  width: 3.5px;
  height: 7px;
  background: var(--gold-gradient);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  animation: scrollWheel 2s infinite ease-in-out;
}

.scroll-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #D5CECA;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
  transition: var(--transition-fast);
}

.hero-scroll-indicator:hover .scroll-text {
  color: #FFFFFF;
}

.scroll-arrow {
  font-size: 0.70rem;
  color: #FFC44D;
  animation: scrollArrow 1.8s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(11px);
    opacity: 0.15;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scrollArrow {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(4px);
    opacity: 1;
  }
}

/* --------------------------------------------------------------------------
   8. About Section
   -------------------------------------------------------------------------- */
.about-section {
  padding: 6.5rem 0;
  background: var(--surface-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
}

.about-lead-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-secondary-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--surface-white);
  padding: 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.highlight-box:hover {
  transform: translateX(-5px);
  border-color: rgba(212, 107, 67, 0.4);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.highlight-box h3,
.highlight-box h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.highlight-box p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.about-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

/* About Visual Card Stacking */
.about-visual {
  position: relative;
  padding: 1rem;
}

.visual-card-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--surface-white);
  position: relative;
}

.visual-card-main img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.visual-card-main:hover img {
  transform: scale(1.04);
}

.visual-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: rgba(18, 19, 22, 0.85);
  backdrop-filter: blur(12px);
  color: var(--text-white);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md);
}

.visual-badge i {
  font-size: 1.8rem;
  color: #E5C378;
}

.visual-badge strong {
  display: block;
  font-size: 1.05rem;
}

.visual-badge span {
  font-size: 0.8rem;
  color: #CFC8BD;
}

.visual-card-sub {
  position: absolute;
  top: -25px;
  left: -20px;
  width: 190px;
  height: 190px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--surface-white);
  box-shadow: var(--shadow-lg);
  display: none;
}

@media (min-width: 992px) {
  .visual-card-sub {
    display: block;
  }
}

.visual-card-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   9. Pillars Section (Why Choose Us)
   -------------------------------------------------------------------------- */
.pillars-section {
  padding: 6.5rem 0;
  background: var(--surface-white);
  position: relative;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
  background: var(--surface-cream);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition-normal);
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 4px;
  background: var(--gold-gradient);
  transition: var(--transition-normal);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--surface-white);
  border-color: rgba(212, 107, 67, 0.3);
}

.pillar-card:hover::before {
  width: 100%;
}

.pillar-number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(212, 107, 67, 0.12);
  line-height: 1;
}

.pillar-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--surface-white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.pillar-card:hover .pillar-icon {
  background: var(--gold-gradient);
  color: var(--text-white);
  transform: rotate(-8deg);
}

.pillar-card h3 {
  font-size: 1.28rem;
  margin-bottom: 0.85rem;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   10. Services Section
   -------------------------------------------------------------------------- */
.services-section {
  padding: 6.5rem 0;
  background: var(--surface-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.service-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 107, 67, 0.35);
}

.service-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

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

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

.service-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(18, 19, 22, 0.85);
  backdrop-filter: blur(8px);
  color: #F8E7D8;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}

.service-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-features {
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

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

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

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.service-link:hover {
  color: var(--primary-dark);
  padding-left: 5px;
}

.service-link i {
  transition: var(--transition-fast);
}

.service-link:hover i {
  transform: translateX(-4px);
}

/* --------------------------------------------------------------------------
   11. Interactive Portfolio / Gallery Section
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 6.5rem 0;
  background: var(--surface-white);
}

.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--surface-cream);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-normal);
}

.filter-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: rgba(212, 107, 67, 0.3);
}

.filter-btn.active {
  background: var(--gold-gradient);
  color: var(--text-white);
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}

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

.portfolio-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--surface-cream);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.portfolio-card.hide {
  display: none;
}

.portfolio-card.show {
  animation: fadeIn 0.5s ease;
}

.portfolio-img-wrap {
  position: relative;
  height: 310px;
  overflow: hidden;
}

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

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 15, 18, 0.95) 0%, rgba(14, 15, 18, 0.6) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  color: var(--text-white);
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-normal);
}

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

.portfolio-tag {
  display: inline-block;
  color: #E5C378;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.portfolio-title {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.portfolio-desc {
  font-size: 0.85rem;
  color: #D6D0C5;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.portfolio-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-lightbox {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-lightbox:hover {
  background: var(--text-white);
  color: var(--text-main);
  transform: scale(1.1);
}

.btn-inquire {
  background: #25D366;
  color: #FFFFFF;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.btn-inquire:hover {
  background: #20BA5A;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   12. Process Section (5 Steps)
   -------------------------------------------------------------------------- */
.process-section {
  padding: 6.5rem 0;
  background: var(--surface-cream);
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-step-card {
  background: var(--surface-white);
  padding: 2.2rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  text-align: center;
  position: relative;
  transition: var(--transition-normal);
}

.process-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 107, 67, 0.4);
}

.step-badge {
  position: absolute;
  top: -16px;
  right: 50%;
  transform: translateX(50%);
  width: 34px;
  height: 34px;
  background: var(--gold-gradient);
  color: var(--text-white);
  border-radius: 50%;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--surface-white);
}

.step-icon {
  width: 52px;
  height: 52px;
  margin: 0.8rem auto 1.2rem auto;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.process-step-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.65rem;
}

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

/* --------------------------------------------------------------------------
   13. CTA Consultation Banner (index.html)
   -------------------------------------------------------------------------- */
.cta-banner-section {
  padding: 5rem 0;
  background: var(--surface-cream);
}

.cta-banner-card {
  background: var(--surface-dark-card);
  border-radius: var(--radius-lg);
  padding: 4rem;
  color: var(--text-white);
  border: 1px solid var(--surface-dark-border);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 107, 67, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.cta-banner-content .section-tag {
  background: rgba(212, 107, 67, 0.15);
  color: #F8E7D8;
  border-color: rgba(212, 107, 67, 0.4);
}

.cta-banner-content h2 {
  font-size: 2.3rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.cta-banner-content p {
  font-size: 1.15rem;
  color: #B5BAC8;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-banner-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.cta-banner-decor {
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  left: 40px;
  bottom: -20px;
  transform: rotate(-15deg);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   14. Dedicated Contact Page Styles (contact.html)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  background: url('../images/services/صالات الاستقبال.jpeg') center center / cover no-repeat;
  color: var(--text-white);
  padding: 5.5rem 0 4.5rem 0;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 15, 18, 0.92) 0%, rgba(20, 21, 26, 0.82) 60%, rgba(212, 107, 67, 0.45) 100%);
  z-index: 1;
}

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

.page-hero-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.page-hero-desc {
  font-size: 1.15rem;
  color: #EDE8E1;
  margin-bottom: 1.8rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 0.45rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb a {
  color: #E2DFD9;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span.current {
  color: #E5C378;
  font-weight: 700;
}

/* Main Contact Grid */
.contact-main-section {
  padding: 6rem 0;
  background: var(--surface-cream);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-form-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.form-card-header {
  margin-bottom: 2.5rem;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-card-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.form-card-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.required {
  color: #E53935;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.form-group label i {
  color: var(--primary);
  margin-left: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface-cream);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--surface-white);
  box-shadow: 0 0 0 3px rgba(212, 107, 67, 0.15);
}

.form-submit-wrapper {
  margin-top: 2rem;
}

.form-success-msg {
  margin-top: 1.5rem;
  padding: 1.1rem 1.5rem;
  background: #E8F8EE;
  border: 1px solid #25D366;
  border-radius: var(--radius-sm);
  color: #128C44;
  text-align: center;
  font-weight: 700;
  animation: fadeIn 0.4s ease;
}

/* Sidebar Cards */
.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-main);
}

.info-card h3 i {
  color: var(--primary);
}

.info-card-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.info-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-contact-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--surface-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.info-contact-box:hover {
  background: var(--surface-white);
  border-color: rgba(212, 107, 67, 0.4);
  transform: translateX(-4px);
  box-shadow: var(--shadow-sm);
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.whatsapp-box .icon-circle {
  background: #E8F8EE;
  color: #25D366;
}

.info-contact-box .label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.info-contact-box strong {
  font-size: 0.98rem;
  color: var(--text-main);
}

.address-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.92rem;
}

.address-item i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.address-item strong {
  display: block;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.address-item span {
  color: var(--text-muted);
}

.map-link-btn-wrap {
  margin-top: 1rem;
}

.trust-mini-card {
  background: var(--surface-dark-card);
  border-color: var(--surface-dark-border);
  color: var(--text-white);
}

.trust-mini-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.trust-mini-icon {
  font-size: 2.2rem;
  color: #E5C378;
}

.trust-mini-card h4 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 0.3rem;
}

.trust-mini-card p {
  font-size: 0.88rem;
  color: #B5BAC8;
  line-height: 1.6;
  margin: 0;
}

.trust-mini-card strong {
  color: #F8E7D8;
}

/* FAQ Section */
.faq-section {
  padding: 6.5rem 0;
  background: var(--surface-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.faq-card {
  background: var(--surface-cream);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 107, 67, 0.3);
  background: var(--surface-white);
}

.faq-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.45;
}

.faq-card h4 i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.faq-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-right: 1.7rem;
}

/* --------------------------------------------------------------------------
   15. Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 6.5rem 0;
  background: var(--surface-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--surface-cream);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--surface-white);
  border-color: rgba(212, 107, 67, 0.35);
}

.testimonial-rating {
  color: #F5A623;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.3rem;
}

.testimonial-text {
  font-size: 1.02rem;
  color: var(--text-main);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.2rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.testimonial-author h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   16. Trust & Accreditation Bar
   -------------------------------------------------------------------------- */
.accreditation-section {
  background: #0E0F12;
  color: var(--text-white);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.accreditation-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.accreditation-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.accreditation-item i {
  font-size: 2.2rem;
  color: #E5C378;
}

.accreditation-item h4 {
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.accreditation-item p {
  font-size: 0.85rem;
  color: #B5AEA4;
  margin: 0;
}

/* --------------------------------------------------------------------------
   17. Footer Section
   -------------------------------------------------------------------------- */
.footer {
  background: #111215;
  color: #D6D1C7;
  padding-top: 5rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.footer-logo {
  height: 52px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
}

.footer-brand-sub {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #D46B43;
  font-weight: 700;
}

.footer-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #A39D92;
  margin-bottom: 1.8rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-links a:hover {
  background: var(--gold-gradient);
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 107, 67, 0.4);
}

.footer-title {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.65rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 2.5px;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: #B5AEA4;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a i {
  font-size: 0.7rem;
  color: #D46B43;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-white);
  padding-right: 5px;
}

.footer-links a:hover i {
  transform: translateX(-3px);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  font-size: 0.92rem;
  color: #B5AEA4;
}

.footer-contact-list i {
  color: #D46B43;
  font-size: 1.1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-contact-list a:hover {
  color: var(--primary);
}

.footer-bottom {
  background: #08090B;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.88rem;
  color: #a09a8e;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom strong {
  color: #CFC8BD;
}

/* --------------------------------------------------------------------------
   18. Lightbox Modal
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 14, 0.92);
  backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  background: var(--surface-dark-card);
  border: 1px solid var(--surface-dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  transition: var(--transition-normal);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 42px;
  height: 42px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--primary);
}

.lightbox-img-wrapper {
  max-height: 65vh;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrapper img {
  max-height: 65vh;
  width: 100%;
  object-fit: contain;
}

.lightbox-footer {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: #16181D;
  flex-wrap: wrap;
}

.lightbox-footer h3 {
  color: var(--text-white);
  font-size: 1.25rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   19. Floating Action Bar
   -------------------------------------------------------------------------- */
.floating-action-bar {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text-white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  position: relative;
  transition: var(--transition-normal);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-whatsapp {
  background: #25D366;
}

.floating-whatsapp:hover {
  background: #20BA5A;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.floating-phone,
.floating-call {
  background: linear-gradient(135deg, #D46B43 0%, #A13004 100%);
  color: #FFFFFF;
}

.floating-phone:hover,
.floating-call:hover {
  background: linear-gradient(135deg, #E07B55 0%, #BF572F 100%);
  box-shadow: 0 10px 28px rgba(212, 107, 67, 0.45);
}

.pulsing-aura {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.floating-tooltip {
  position: absolute;
  right: 65px;
  background: rgba(18, 19, 22, 0.9);
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition-fast);
  pointer-events: none;
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.floating-scroll {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: var(--surface-dark-card);
  color: #D46B43;
  border: 1px solid var(--surface-dark-border);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  padding: 0;
  overflow: hidden;
}

.floating-scroll.visible {
  opacity: 1;
  visibility: visible;
}

.progress-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  transform-origin: center;
  pointer-events: none;
}

.progress-ring-circle {
  transition: stroke-dashoffset 0.1s linear;
}

/* --------------------------------------------------------------------------
   20. Animations
   -------------------------------------------------------------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   21. Comprehensive Responsive Media Queries (Mobile-First & All Screen Sizes)
   -------------------------------------------------------------------------- */

/* Large Tablets & Small Laptops (993px to 1200px) */
@media (max-width: 1200px) {

  /* Navbar Optimization for 993px - 1200px Viewports */
  .nav-container {
    gap: 0.85rem;
    flex-wrap: nowrap;
  }

  .logo {
    gap: 0.65rem;
  }

  .logo img {
    height: 42px;
  }

  .brand-title {
    font-size: 1.12rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
    letter-spacing: 1.2px;
  }

  .nav-menu ul {
    gap: 0.95rem;
  }

  .nav-link {
    font-size: 0.88rem;
    white-space: nowrap;
    padding: 0.3rem 0;
  }

  .btn-luxury-cta {
    padding: 0.52rem 1.05rem;
    font-size: 0.84rem;
    gap: 0.4rem;
    white-space: nowrap;
  }

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

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .process-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .footer-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
  }
}

/* Tablets & iPad Pro (max-width: 992px) */
@media (max-width: 992px) {
  .top-info-pill {
    display: none;
  }

  .top-bar-container {
    justify-content: center;
    gap: 0.75rem;
  }

  .top-bar-left,
  .top-bar-right {
    gap: 0.75rem;
    justify-content: center;
  }

  .navbar {
    padding: 0.75rem 0;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    right: 0;
    width: 100%;
    background: rgba(14, 15, 18, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-bottom: 2px solid var(--primary);
    padding: 2rem 1.5rem;
    transform: translateY(-150%);
    transition: var(--transition-normal);
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    width: 100%;
  }

  .nav-menu .nav-link {
    font-size: 1.05rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.4rem 0;
  }

  .nav-actions {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 4rem 0 2.5rem 0;
  }

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

  .hero-trust-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 95%;
    margin: auto;
  }

  .hero-scroll-indicator {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 1.8rem auto 0 auto;
    display: flex;
  }

  .hero-scroll-indicator:hover {
    transform: translateY(3px);
  }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .cta-banner-card {
    padding: 3rem 2rem;
    flex-direction: column;
    text-align: center;
    gap: 1.8rem;
  }

  .cta-banner-decor {
    display: none;
  }

  .cta-banner-buttons {
    justify-content: center;
    width: 100%;
  }

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

/* Mobile Devices & iPad Mini (max-width: 768px) */
@media (max-width: 768px) {
  .section-padding {
    padding: 3.5rem 0;
  }

  .section-heading {
    font-size: 1.65rem;
    line-height: 1.4;
  }

  .section-subtext {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  /* Hide Top Announcement Bar on Mobile */
  .top-bar,
  .top-announcement-bar {
    display: none !important;
  }

  .navbar {
    top: 0;
  }

  .nav-actions {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 3.5rem 0 2.5rem 0;
  }

  .hero-title {
    font-size: 1.55rem;
    line-height: 1.35;
  }

  .hero-description {
    font-size: 0.90rem;
    line-height: 1.65;
    width: 100%;
    max-width: 520px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 0.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.4rem;
  }

  .hero-trust-bar {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.85rem;
    max-width: 90%;
    margin: auto;
  }

  .hero-scroll-indicator {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 1.6rem auto 0 auto;
    display: flex;
  }

  .hero-scroll-indicator:hover {
    transform: translateY(3px);
  }

  .about-section {
    padding: 3.5rem 0;
  }

  .about-lead-text {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .about-secondary-text {
    font-size: 0.90rem;
    line-height: 1.7;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .services-section {
    padding: 3.5rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-img img {
    height: 220px;
    object-fit: cover;
  }

  .portfolio-section {
    padding: 3.5rem 0;
  }

  .portfolio-filter {
    gap: 0.45rem;
    margin-bottom: 2rem;
  }

  .filter-btn {
    padding: 0.45rem 0.95rem;
    font-size: 0.82rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-section {
    padding: 3.5rem 0;
  }

  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .cta-banner-section {
    padding: 3.5rem 0;
  }

  .cta-banner-card {
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
  }

  .cta-banner-card h2 {
    font-size: 1.45rem;
    line-height: 1.4;
  }

  .cta-banner-card p {
    font-size: 0.90rem;
    line-height: 1.7;
  }

  .cta-banner-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 0.75rem;
  }

  .cta-banner-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Mobile Footer */
  .footer {
    padding-top: 3.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    margin-bottom: 2.5rem;
  }

  .footer-about {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo-wrap {
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
  }

  .footer-desc {
    max-width: 460px;
    margin: 0 auto 1.4rem auto;
    font-size: 0.88rem;
    line-height: 1.75;
    text-align: center;
  }

  .social-links {
    justify-content: center;
    gap: 0.75rem;
  }

  .social-links a {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }

  .footer-title {
    font-size: 1.08rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }

  .footer-title::after {
    width: 30px;
    height: 2px;
  }

  .footer-links li {
    margin-bottom: 0.4rem;
  }

  .footer-links a {
    font-size: 0.88rem;
    padding: 0.35rem 0;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
  }

  .footer-contact-list li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.88rem;
  }

  .footer-contact-list i {
    margin-top: 0;
    font-size: 1.05rem;
  }

  .footer-bottom {
    padding: 1.5rem 0 calc(1.5rem + 70px) 0;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-bottom p {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .floating-action-bar {
    bottom: 18px;
    left: 18px;
    z-index: 999;
  }

  .floating-scroll {
    bottom: 18px;
    right: 18px;
    z-index: 999;
  }
}

/* Small Tablets & Large Phones Grid Bridge (480px - 768px) */
@media (min-width: 480px) and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .footer-about {
    grid-column: span 2;
  }

  .footer-col:last-child {
    grid-column: span 2;
  }
}

/* Compact Smartphones (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .brand-title {
    font-size: 1.15rem;
  }

  .brand-subtitle {
    font-size: 0.65rem;
  }

  .hero-badge {
    font-size: 0.76rem;
    padding: 0.3rem 0.9rem;
  }

  .hero-title {
    font-size: 1.42rem;
    line-height: 1.35;
  }

  .hero-description {
    font-size: 0.85rem;
    line-height: 1.65;
  }

  .section-heading {
    font-size: 1.45rem;
  }

  .visual-badge {
    padding: 0.5rem 0.85rem;
    font-size: 0.75rem;
    bottom: 10px;
    right: 10px;
  }

  .filter-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.78rem;
  }

  .cta-banner-card {
    padding: 2rem 1.2rem;
  }

  .footer-logo {
    height: 44px;
  }

  .footer-brand-title {
    font-size: 1.12rem;
  }

  .footer-contact-list li {
    padding: 0.75rem 0.85rem;
    font-size: 0.82rem;
  }

  .footer-bottom p {
    font-size: 0.78rem;
  }

  .floating-btn {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }

  .floating-action-bar {
    bottom: 14px;
    left: 14px;
  }

  .floating-scroll {
    bottom: 14px;
    right: 14px;
  }
}

/* Ultra-Small Screens (max-width: 360px) */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.30rem;
  }

  .section-heading {
    font-size: 1.35rem;
  }

  .btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.82rem;
  }

  .filter-btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.72rem;
  }
}