/* 
=============================================
   INFINITY BRIGHT - Main Stylesheet 
============================================= 
*/

:root {
  /* Dark Theme Variables (Default) */
  --bg-main: #080808;
  --bg-alt: #000000;
  --bg-card: #151515;
  --bg-card-hover: #1f1f1f;
  --bg-elevated: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #aaaaaa;
  --accent-gold: #f5b301;
  --accent-gold-hover: #e0a300;
  --accent-gold-soft: rgba(245, 179, 1, 0.12);

  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(245, 179, 1, 0.2);
  --glass-bg: rgba(0, 0, 0, 0.5);
  --marquee-gap: 50px;

  /* Layout & Spacing */
  --container-width: 1200px;
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Shadows */
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(245, 179, 1, 0.3);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --section-separator: 0 4px 30px rgba(0, 0, 0, 0.5);

  /* Footer */
  --footer-bg: #0a0a0a;
  --footer-text: #aaaaaa;
  --footer-heading: #ffffff;
  --footer-border: rgba(255, 255, 255, 0.04);
}

[data-theme="light"] {
  /* High-Contrast Light Mode */
  --bg-main: #fcfcfc;
  --bg-alt: #eaeaea;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --bg-elevated: #ffffff;
  --text-primary: #121212;
  --text-secondary: #4a4a4a;
  --accent-gold: #d49500;
  --accent-gold-hover: #b37e00;
  --accent-gold-soft: rgba(212, 149, 0, 0.1);

  --border-subtle: rgba(0, 0, 0, 0.1);
  --border-glow: rgba(212, 149, 0, 0.35);
  --glass-bg: rgba(0, 0, 0, 0.025);
  --input-bg: rgba(0, 0, 0, 0.03);
  --marquee-gap: 30px;

  /* Deep soft shadows for section depth */
  --shadow-subtle: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 20px rgba(212, 149, 0, 0.25);
  --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --section-separator: 0 4px 30px rgba(0, 0, 0, 0.08);

  /* Footer stays dark in light mode (premium pattern) */
  --footer-bg: #0a0a0a;
  --footer-text: #aaaaaa;
  --footer-heading: #ffffff;
  --footer-border: rgba(255, 255, 255, 0.06);
}

/* ================== Reset & Typography ================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    to bottom,
    var(--accent-gold),
    var(--accent-gold-hover)
  );
  border-radius: 10px;
  border: 2px solid var(--bg-main);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold-hover);
}

/* Firefox Support */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) var(--bg-main);
}

body.lightbox-open {
  overflow: hidden;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: "Cairo", "Montserrat", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast);
}

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

a:active, a:visited {
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

.skip-link {
  position: absolute;
  top: -50px;
  right: 20px;
  background: var(--accent-gold);
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  z-index: 2000;
  font-weight: 700;
}

.skip-link:focus {
  top: 20px;
}

/* ================== Utility Classes ================== */
.text-center {
  text-align: center;
}
.py-section {
  padding: 80px 0;
}
.bg-darker {
  background-color: var(--bg-alt);
}
.text-gradient {
  background: linear-gradient(45deg, var(--accent-gold), #ffdf70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.w-100 {
  width: 100%;
}
.mb-5 {
  margin-bottom: 3rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mt-4 {
  margin-top: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #000 !important;
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0) scale(0.96) !important;
  background-color: var(--accent-gold) !important;
  color: #000 !important;
  filter: brightness(1.1);
  box-shadow: 0 2px 10px rgba(245, 179, 1, 0.4);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: #000 !important;
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0) scale(0.96);
  filter: brightness(0.9);
}

.btn-large {
  padding: 15px 35px;
  font-size: 1.1rem;
}

/* ================== Header & Navigation ================== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: var(--container-width);
  z-index: 1000;
  background: rgba(8, 8, 8, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 10px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  padding: 8px 0;
  background: rgba(8, 8, 8, 0.95);
  border-bottom: 1px solid rgba(245, 179, 1, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.logo-img {
  height: 110px; /* Increased from 60px */
  width: auto;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 8px rgba(245, 179, 1, 0.15));
}

.navbar.scrolled .logo-img {
  height: 80px; /* Increased from 50px */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-gold);
  background: rgba(245, 179, 1, 0.05);
}

.nav-links a:active {
  transform: scale(0.95);
  color: var(--accent-gold);
  background: rgba(245, 179, 1, 0.1);
}

.nav-links a.highlight-link {
  color: var(--accent-gold);
  border: 1px solid rgba(245, 179, 1, 0.3);
}

.nav-links a.highlight-link:hover {
  background: var(--accent-gold-soft);
  border-color: var(--accent-gold);
}

.nav-links a.btn-primary {
  margin-right: 10px;
  background-color: var(--accent-gold);
  color: #000 !important;
  border: none;
}

.nav-links a.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 179, 1, 0.3);
}

.nav-links a.btn-primary:active {
  transform: translateY(0) scale(0.96) !important;
  background-color: var(--accent-gold) !important;
  color: #000 !important;
  box-shadow: 0 2px 10px rgba(245, 179, 1, 0.2);
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  width: 45px;
  height: 45px;
  border-radius: 12px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-toggle:hover {
  background: rgba(245, 179, 1, 0.1);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 1001;
    border-left: 1px solid rgba(245, 179, 1, 0.2);
    padding: 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

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

  .mobile-toggle {
    display: flex;
    z-index: 1002;
  }

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

  .logo-img {
    height: 80px; /* Larger mobile logo */
  }
}


/* ================== Hero Section ================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: calc(132px + env(safe-area-inset-top));
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-content {
  width: 100%;
  max-width: 600px;
  margin-right: 5%; /* RTL layout */
}

.hero-logo {
  max-width: 250px;
  margin-bottom: 20px;
  mix-blend-mode: screen;
  filter: invert(1) brightness(2) sepia(1) saturate(5) hue-rotate(15deg);
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.hero-subtitle strong {
  color: var(--accent-gold);
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}

.hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 16px 30px;
  letter-spacing: 0;
}

.hero-buttons .btn i {
  font-size: 1rem;
}

.hero-cta-primary {
  box-shadow: 0 14px 34px rgba(245, 179, 1, 0.18);
}

.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-cta-secondary:hover {
  box-shadow: 0 12px 26px rgba(245, 179, 1, 0.16);
}

.hero-main {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 179, 1, 0.25);
  border-radius: 24px;
  padding: 46px 42px;
  box-shadow:
    0 25px 45px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(245, 179, 1, 0.2), transparent 58%);
  pointer-events: none;
}

.hero-main > * {
  position: relative;
  z-index: 1;
}

.hero-main h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.22;
}

.hero-kicker-home {
  color: #ffe3a0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.badge-inline {
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--accent-gold);
  display: inline-block;
  box-shadow: 0 0 10px rgba(245, 179, 1, 0.4);
}

.badge-inline i {
  color: var(--accent-gold);
}

/* ================== Stats Section ================== */
.stats-section {
  position: relative;
  margin-top: -40px;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.stat-card {
  background: linear-gradient(
    180deg,
    rgba(245, 179, 1, 0.12),
    rgba(21, 21, 21, 0.95)
  );
  border: 1px solid rgba(245, 179, 1, 0.2);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

.stat-value {
  display: block;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.stat-card p {
  color: var(--text-secondary);
}

/* ================== Services Section ================== */
.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
}

.section-title .line {
  width: 60px;
  height: 4px;
  background-color: var(--accent-gold);
  margin: 15px auto;
  border-radius: 2px;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-card);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
  transform-origin: right; /* For RTL */
}

.service-card:hover {
  transform: translateY(-10px);
  background-color: var(--bg-card-hover);
  box-shadow: 0 15px 40px rgba(245, 179, 1, 0.15);
  border-color: rgba(245, 179, 1, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 25px;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card h2,
.pricing-card h2,
.info-card h2,
.customer-details h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-secondary);
}

/* ================== Gallery Section ================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  width: 100%;
  border: none;
  padding: 0;
  background: none;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transform: translateY(100%);
  transition: transform var(--transition-fast);
}

.gallery-overlay span {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.gallery-item:hover {
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(245, 179, 1, 0.2);
  z-index: 1;
}

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

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* ================== CTA Section ================== */
.cta-band {
  padding: 0 0 80px;
}

.cta-band-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: linear-gradient(
    135deg,
    rgba(245, 179, 1, 0.16),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(245, 179, 1, 0.18);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-subtle);
}

.eyebrow {
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-band-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-band-content p:last-child {
  color: var(--text-secondary);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* ================== Testimonials Section ================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(245, 179, 1, 0.2);
}

.stars {
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.review-text {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.customer-avatar {
  font-size: 2.5rem;
  color: var(--text-secondary);
}

.customer-details h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.customer-details span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.review-btn {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 14px 32px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.review-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: 0.5s;
}

.review-btn:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #4285f4;
  box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
  color: #fff;
}

.review-btn:hover::before {
  left: 100%;
}

.review-btn i {
  color: #4285f4;
  font-size: 1.4rem;
  filter: drop-shadow(0 0 5px rgba(66, 133, 244, 0.5));
}

/* ================== FAQ ================== */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px 24px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text-primary);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 15px;
  color: var(--text-secondary);
}

/* ================== Masterpiece Footer (Centered) ================== */
.masterpiece-footer {
  position: relative;
  background-color: #080808;
  border-top: 1px solid transparent;
  background-image:
    linear-gradient(#080808, #080808),
    linear-gradient(to right, #d4af37, #f2994a, #d4af37);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 -10px 40px rgba(0, 0, 0, 0.8),
    0 -2px 15px rgba(212, 175, 55, 0.15);
  overflow: hidden;
  padding-top: 80px;
  color: #e0e0e0;
  text-align: center;
}

.footer-glass-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 8, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 0;
}

.footer-content-centered {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

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

.footer-logo {
  height: 150px;
  width: auto;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

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

.premium-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #bbb;
  max-width: 700px;
}

.footer-horizontal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.02);
  padding: 15px 30px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.footer-horizontal-links .separator {
  color: rgba(255, 255, 255, 0.2);
}

.footer-horizontal-links a {
  color: #e0e0e0;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.dashboard-link {
  color: #d4af37 !important;
}

.footer-contact-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1),
    rgba(242, 153, 74, 0.05)
  );
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 30px;
  color: #fff;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.contact-pill i {
  color: #d4af37;
  font-size: 1.2rem;
}

.contact-pill:hover {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2),
    rgba(242, 153, 74, 0.15)
  );
  border-color: #d4af37;
  transform: translateY(-5px);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(212, 175, 55, 0.3);
}

.contact-pill a {
  color: #fff;
}

.social-links-center {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.glow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #d4af37;
  font-size: 1.4rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glow-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.4s ease,
    height 0.4s ease;
}

.glow-icon:hover {
  color: #fff;
  border-color: #f2994a;
  box-shadow: 0 0 25px rgba(242, 153, 74, 0.6);
  transform: scale(1.15);
}

.glow-icon:hover::before {
  width: 100%;
  height: 100%;
}

.glow-icon i {
  position: relative;
  z-index: 1;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
}

.centered-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-brands {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.95rem;
  color: #ccc;
  transition: all 0.3s ease;
}

.brand-badge:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
  color: #d4af37;
  transform: translateY(-3px);
}

.brand-badge i {
  color: #d4af37;
}

.hover-float {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    color 0.3s ease;
}

.hover-float:hover {
  transform: translateY(-3px);
  color: #f2994a !important;
}

@media (max-width: 768px) {
  .footer-horizontal-links {
    flex-direction: column;
    gap: 15px;
    border-radius: 25px;
    padding: 20px;
    width: 100%;
  }
  .footer-horizontal-links .separator {
    display: none;
  }
  .footer-contact-pills {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .contact-pill {
    justify-content: center;
  }
  .footer-logo {
    height: 100px;
  }
  .masterpiece-footer {
    padding-top: 60px;
  }
}
\n\n/* ================== Products Page Specific ================== */
.page-header {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 150px 0 80px;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 1) 0%,
    rgba(21, 21, 21, 1) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--accent-gold);
}

.page-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

/* Products hero heading rhythm across mobile + large displays */
.products-page .product-hero .container {
  max-width: 980px;
}

.products-page .product-hero {
  padding-top: calc(190px + env(safe-area-inset-top));
}

.products-page .product-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.9rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 14ch;
  margin-right: auto;
  margin-left: auto;
  text-wrap: balance;
}

.products-page .product-hero .hero-kicker {
  font-size: clamp(0.92rem, 1.4vw, 1.1rem);
}

.products-page .product-hero p.fade-in-up:not(.hero-kicker) {
  max-width: 52ch;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.9;
}

@media (max-width: 768px) {
  .products-page .product-hero {
    padding: calc(155px + env(safe-area-inset-top)) 0 64px;
  }

  .products-page .product-hero h1 {
    max-width: 11ch;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .products-page .product-hero {
    padding: calc(145px + env(safe-area-inset-top)) 0 56px;
  }

  .products-page .product-hero h1 {
    max-width: 10ch;
    letter-spacing: 0;
  }
}

.product-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -140px;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 179, 1, 0.2), transparent 65%);
  z-index: -1;
}

.product-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  bottom: -180px;
  left: -120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06),
    transparent 68%
  );
  z-index: -1;
}

.hero-kicker {
  margin-bottom: 10px;
  color: #f5d372;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.floating-service-cloud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.service-float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.95rem;
  backdrop-filter: blur(12px);
  animation: floatService 7s ease-in-out infinite;
}

.badge-one {
  top: 34%;
  right: 10%;
  animation-delay: 0s;
}

.badge-two {
  top: 18%;
  right: 24%;
  animation-delay: 1.2s;
}

.badge-three {
  top: 54%;
  right: 20%;
  animation-delay: 2.1s;
}

.badge-four {
  top: 24%;
  left: 16%;
  animation-delay: 0.8s;
}

.badge-five {
  top: 58%;
  left: 12%;
  animation-delay: 1.7s;
}

@keyframes floatService {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(-1.2deg);
  }
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}

.info-card i {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.info-card p,
.info-card span {
  color: var(--text-secondary);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  transition: all var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #000;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pricing-card {
  background-color: var(--bg-card);
  border-radius: 15px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.pricing-card.premium {
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  border-color: rgba(245, 179, 1, 0.3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transform: scale(1.05);
  z-index: 1;
}

.pricing-card.premium:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: var(--shadow-glow);
}

.card-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.premium-badge {
  background: var(--accent-gold);
  color: #000;
  font-weight: 700;
}

.card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.package-tier {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(245, 179, 1, 0.12);
  border: 1px solid rgba(245, 179, 1, 0.28);
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.currency {
  font-size: 1.2rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.car-size {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.card-body {
  flex-grow: 1;
  margin-bottom: 30px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.features-list li i {
  color: var(--accent-gold);
  margin-top: 5px;
}

.card-footer {
  margin-top: auto;
}

.branch-img {
  width: calc(100% + 60px);
  margin: -40px -30px 25px -30px;
  max-width: none;
  height: 220px;
  object-fit: contain;
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
  padding: 30px 40px;
  border-bottom: 2px solid var(--accent-gold);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.service-card:hover .branch-img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.branch-actions {
  display: grid;
  gap: 12px;
  margin-top: 25px;
}

.map-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.map-frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-subtle);
}

.map-frame iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* ================== CSS Animations ================== */

/* Scroll Reveal Classes */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Specific delays for sequential appearances */
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}

/* Entry Animations for Hero/Header */
.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

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

/* Typing & Pulse Animations for Hero */
.animated-title {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-left: 3px solid var(--accent-gold); /* Caret for Arabic (LTR uses border-right) */
  animation:
    typing 2.5s steps(40, end),
    blink-caret 0.75s step-end infinite;
  max-width: fit-content;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: var(--accent-gold);
  }
}

.pulse-glow {
  animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 10px rgba(245, 179, 1, 0.2);
  }
  100% {
    text-shadow: 0 0 25px rgba(245, 179, 1, 0.8);
  }
}

/* ================== Contact Page ================== */
.contact-page {
  min-height: 50vh;
}

.contact-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.tab-btn {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-width: 150px;
}

.tab-btn:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-gold);
}

.contact-form {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  animation: fadeInForm 0.5s ease forwards;
}

.contact-form.active {
  display: grid;
}

@keyframes fadeInForm {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 14px 15px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(245, 179, 1, 0.1);
  background: var(--bg-alt);
}

.contact-form .btn {
  grid-column: 1 / -1;
  margin-top: 15px;
}

.error-message {
  color: #ff8e8e;
  font-size: 0.85rem;
}

/* ================== Thank You / Privacy ================== */
.page-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: var(--shadow-subtle);
}

.page-card h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.page-card p,
.page-card li {
  color: var(--text-secondary);
}

.page-card ul {
  list-style: disc;
  padding-right: 20px;
}

.page-card .cta-actions {
  margin-top: 25px;
}

/* ================== Floating WhatsApp ================== */
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 20px 35px rgba(37, 211, 102, 0.35);
  z-index: 1200;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* ================== Lightbox ================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 1600;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: var(--shadow-subtle);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.25rem;
  cursor: pointer;
  margin-right: 15px;
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.theme-toggle:hover {
  color: var(--accent-gold);
  transform: rotate(15deg) scale(1.1);
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .pricing-card.premium {
    transform: scale(1);
  }
  .pricing-card.premium:hover {
    transform: translateY(-10px);
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .footer-intro,
  .footer-content {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-intro {
    align-items: flex-start;
    padding: 24px 20px;
  }

  .footer-intro-copy h2 {
    font-size: 1.55rem;
  }

  .footer-intro-actions {
    width: 100%;
  }

  .footer-intro-actions .btn {
    width: 100%;
  }

  .footer-col {
    padding: 22px 20px;
  }

  .floating-service-cloud {
    opacity: 0.7;
  }

  .service-float-badge {
    min-width: auto;
    font-size: 0.82rem;
    padding: 8px 14px;
  }

  .badge-one {
    top: 20%;
    right: 6%;
  }

  .badge-two {
    top: 12%;
    right: 42%;
  }

  .badge-three {
    top: 66%;
    right: 10%;
  }

  .badge-four {
    top: 46%;
    left: 6%;
  }

  .badge-five {
    top: 72%;
    left: 16%;
  }

  .stats-section {
    margin-top: 0;
  }

  .cta-band-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
  }

  .cta-band-content h2 {
    font-size: 1.6rem;
  }

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

  .contact-form-container {
    padding: 25px 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--bg-main);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition-fast);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }

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

  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

  /* Toggle Icon Animation (Bars to X) */
  .mobile-toggle i {
    transition: transform 0.3s ease;
  }
  .mobile-toggle.active i::before {
    content: "\f00d"; /* FontAwesome X icon */
  }
  .mobile-toggle.active i {
    transform: rotate(90deg);
    color: var(--accent-gold);
  }

  .hero-content {
    margin-right: 0;
    text-align: center;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.7); /* Darker overlay for mobile readability */
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions,
  .hero-buttons .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-buttons .btn {
    max-width: 300px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

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

  .whatsapp-float {
    left: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .footer-trust-row span {
    font-size: 0.82rem;
  }

  .floating-service-cloud {
    display: none;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .py-section {
    padding: 60px 0;
  }

  .logo-img {
    height: 54px;
  }

  .page-card {
    padding: 30px 20px;
  }

  .lightbox {
    padding: 16px;
  }
}

/* Floating Animations */
@keyframes subtleFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.float-anim {
  animation: subtleFloat 3s ease-in-out infinite;
}

/* Extra Theme & Footer Additions */
.theme-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.25rem;
  cursor: pointer;
  margin-right: 15px; /* RTL */
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.theme-toggle:hover {
  color: var(--accent-gold);
  transform: rotate(15deg) scale(1.1);
}

.trusted-brands {
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--glass-bg);
}

.brands-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.brand-item {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 600;
  opacity: 0.7;
  transition: all var(--transition-fast);
}

.brand-item:hover {
  opacity: 1;
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* ================== Light Mode Specific Fixes ================== */
[data-theme="light"] .logo-img {
  mix-blend-mode: multiply;
  filter: brightness(0);
}

[data-theme="light"] .hero-subtitle,
[data-theme="light"] .hero h1 {
  color: #fff;
}

[data-theme="light"] .badge-inline {
  color: #fff;
}

[data-theme="light"] .navbar {
  background-color: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav-links a {
  color: var(--text-primary);
}

[data-theme="light"] .stat-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--card-shadow);
}

[data-theme="light"] .service-card {
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .testimonial-card {
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .review-btn {
  background: rgba(0, 0, 0, 0.03);
  color: #121212;
  border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .review-btn:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: #4285f4;
  color: #121212;
}

[data-theme="light"] .faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .cta-band-content {
  background: linear-gradient(
    135deg,
    rgba(212, 149, 0, 0.08),
    rgba(0, 0, 0, 0.02)
  );
  border: 1px solid rgba(212, 149, 0, 0.15);
  box-shadow: var(--card-shadow);
}

[data-theme="light"] .pricing-card {
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .btn-primary {
  color: #fff !important;
}

[data-theme="light"] .btn-primary:hover {
  color: #fff !important;
}

[data-theme="light"] .btn-outline {
  border-color: var(--accent-gold);
  color: var(--text-primary);
}

[data-theme="light"] .btn-outline:hover {
  background-color: var(--accent-gold);
  color: #fff !important;
}

[data-theme="light"] .contact-form-container {
  box-shadow: var(--card-shadow);
}

[data-theme="light"] .hero-main {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(212, 149, 0, 0.25);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .hero-main::before {
  background: radial-gradient(circle at top right, rgba(212, 149, 0, 0.18), transparent 58%);
}

[data-theme="light"] .hero-kicker-home {
  color: #7f5700;
}

[data-theme="light"] .hero-main h1 {
  color: var(--text-primary);
}

[data-theme="light"] .hero-main .hero-subtitle {
  color: var(--text-secondary);
  text-shadow: none;
}

/* ================== Always-Dark Footer ================== */
.footer {
  position: relative;
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
  padding-top: 0;
  overflow: visible;
  color: var(--footer-text);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center top,
    rgba(245, 179, 1, 0.05),
    transparent 60%
  );
  pointer-events: none;
}

.footer-logo {
  height: 150px;
  margin-bottom: 25px;
  display: inline-block;
  transition: transform var(--transition-fast);
}

.footer-logo:hover {
  transform: scale(1.02);
}

.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
  padding: 60px 20px 0;
}

.footer-col {
  min-width: 0;
}

.brand-col p {
  color: var(--footer-text);
  margin-bottom: 25px;
  line-height: 1.8;
}

.footer-col h2,
.footer-col h3 {
  font-size: 1.25rem;
  margin-bottom: 25px;
  color: var(--footer-heading);
  position: relative;
  padding-bottom: 12px;
  font-weight: 700;
}

.footer-col h2::after,
.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-gold);
  border-radius: 2px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #aaaaaa;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--accent-gold);
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(245, 179, 1, 0.2);
}

.contact-actions a:first-child:hover {
  background-color: #25d366;
  color: #fff;
  border-color: #25d366;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

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

.links-col ul li a {
  color: var(--footer-text);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.links-col ul li a::before {
  content: "•";
  color: var(--accent-gold);
  margin-left: 8px;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
}

.links-col ul li a:hover {
  color: var(--accent-gold);
  padding-right: 5px;
}

.links-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.contact-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--footer-text);
  line-height: 1.6;
}

.contact-col ul li i {
  color: var(--accent-gold);
  margin-top: 4px;
}

.contact-col ul li a {
  color: var(--footer-text);
  transition: color var(--transition-fast);
}

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

.newsletter-col p {
  color: var(--footer-text);
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: all var(--transition-fast);
}

.newsletter-form input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(245, 179, 1, 0.15);
}

.newsletter-form button {
  padding: 12px;
  font-size: 1rem;
}

.newsletter-success {
  color: #4caf50;
  font-size: 0.9rem;
  margin-top: 8px;
  display: none;
}

.newsletter-success.show {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.footer-guarantee-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 25px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
}

.footer-guarantee-row span {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid rgba(245, 179, 1, 0.15);
  background: rgba(245, 179, 1, 0.05);
  color: #f5d372;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.footer-guarantee-row span:hover {
  background: rgba(245, 179, 1, 0.12);
  border-color: rgba(245, 179, 1, 0.3);
  transform: translateY(-2px);
}

.footer-guarantee-row span i {
  color: var(--accent-gold);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
  text-align: center;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.footer-bottom-links a {
  color: #888;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--accent-gold);
}

/* ================== Guarantee Section ================== */
.guarantee-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.guarantee-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 35px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.guarantee-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), #ffdf70);
}

.guarantee-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(245, 179, 1, 0.12);
  border-color: var(--border-glow);
}

.guarantee-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.guarantee-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

/* ================== Enhanced Trusted Partners ================== */
.trusted-brands {
  padding: 50px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--glass-bg);
  overflow: hidden;
}

.brands-marquee-wrap {
  overflow: hidden;
  margin-top: 40px;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
  position: relative;
  padding: 20px 0;
}

.brands-marquee {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: var(--marquee-gap);
  padding-right: var(--marquee-gap);
}

.brands-marquee:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-30%);
  }
}

.brand-logo-item {
  flex-shrink: 0;
  height: 70px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(0.5) brightness(0.9) contrast(1.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 15px;
}

.brand-logo-item:hover {
  filter: grayscale(0) brightness(1.2) contrast(1.2);
  transform: scale(1.08);
}

.brand-logo-item img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.brand-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all var(--transition-fast);
  min-width: 160px;
}

.brand-card:hover {
  color: var(--text-primary);
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.brand-card .brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================== WhatsApp Pulse Animation ================== */
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  z-index: 1200;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 35px rgba(37, 211, 102, 0.4);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ================== Scroll To Top ================== */
.scroll-top-btn {
  position: fixed;
  left: 24px;
  bottom: 100px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold);
  color: #000;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-fast);
  box-shadow: 0 8px 20px rgba(245, 179, 1, 0.3);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(245, 179, 1, 0.4);
}

/* ================== Responsive Design (Media Queries) ================== */

/* Tablets & Small Laptops */
@media (max-width: 992px) {
  .hero {
    padding-top: calc(120px + env(safe-area-inset-top));
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .pricing-card.premium {
    transform: scale(1);
    margin: 10px 0;
  }
  .pricing-card.premium:hover {
    transform: translateY(-10px);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .hero-main {
    max-width: 100%;
    margin-right: 0;
    padding: 40px 30px;
  }

  .guarantee-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .hero {
    padding-top: calc(108px + env(safe-area-inset-top));
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px 0;
  }

  .footer-col {
    padding: 0;
  }

  .footer-guarantee-row {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-guarantee-row span {
    justify-content: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .floating-service-cloud {
    opacity: 0.7;
  }

  .service-float-badge {
    min-width: auto;
    font-size: 0.82rem;
    padding: 8px 14px;
  }

  .badge-one {
    top: 20%;
    right: 6%;
  }
  .badge-two {
    top: 12%;
    right: 42%;
  }
  .badge-three {
    top: 66%;
    right: 10%;
  }
  .badge-four {
    top: 46%;
    left: 6%;
  }
  .badge-five {
    top: 72%;
    left: 16%;
  }

  .stats-section {
    margin-top: 0;
  }

  .cta-band-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
  }

  .cta-band-content h2 {
    font-size: 1.6rem;
  }

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

  .contact-form-container {
    padding: 25px 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: var(--bg-main);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition-fast);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  [data-theme="light"] .nav-links {
    background-color: #ffffff;
  }

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

  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .mobile-toggle i {
    transition: transform 0.3s ease;
  }
  .mobile-toggle.active i {
    transform: rotate(90deg);
    color: var(--accent-gold);
  }

  .hero-main {
    margin-right: auto;
    margin-left: auto;
    padding: 34px 22px;
    border-radius: 18px;
    text-align: center;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.75);
  }

  .hero-main h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions,
  .hero-buttons .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-buttons .btn {
    max-width: 300px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

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

  .footer-bottom {
    padding: 30px 0 100px;
  }

  .whatsapp-float {
    left: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
  }

  .scroll-top-btn {
    left: 20px;
    bottom: 85px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

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

  .brands-marquee {
    --marquee-gap: 20px;
  }

  .brand-card {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: 130px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .hero {
    padding-top: calc(96px + env(safe-area-inset-top));
  }

  .floating-service-cloud {
    display: none;
  }

  .hero-main h1 {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-main {
    padding: 24px 16px;
  }

  .py-section {
    padding: 60px 0;
  }

  .logo-img {
    height: 54px;
  }

  .page-card {
    padding: 30px 20px;
  }

  .lightbox {
    padding: 16px;
  }

  .section-title h2 {
    font-size: 1.7rem;
  }

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

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .stat-value {
    font-size: 2.2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .pricing-card {
    padding: 30px 20px;
  }
  .amount {
    font-size: 2.8rem;
  }

  .contact-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .tab-btn {
    min-width: auto;
  }

  .footer-content {
    gap: 25px;
    padding: 30px 16px 0;
  }

  .footer-brands {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .footer-guarantee-row span {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .nav-links {
    width: 85%;
  }

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

  .gallery-item {
    height: 200px;
  }
}

/* ================== Legal & Info Pages ================== */
.page-card {
  background-color: var(--bg-card);
  padding: 60px 80px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-subtle);
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.page-card h2 {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 800;
  border-bottom: 2px solid rgba(245, 179, 1, 0.2);
  padding-bottom: 10px;
  display: inline-block;
}

.page-card h2:first-child {
  margin-top: 0;
}

.page-card p {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.page-card ul {
  margin-bottom: 30px;
  padding-right: 20px; /* RTL */
}

.page-card ul li {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
  position: relative;
  line-height: 1.8;
  list-style-type: none;
}

.page-card ul li::before {
  content: "•";
  color: var(--accent-gold);
  font-size: 1.5rem;
  position: absolute;
  right: -20px;
  top: -4px;
}

@media (max-width: 768px) {
  .page-card {
    padding: 30px 20px;
  }
  .page-card h2 {
    font-size: 1.5rem;
  }
}

/* =====================================================================
   SERVICES PAGE - Luxury Premium Layout
   ===================================================================== */

/* ---- Services Hero ---- */
.services-hero {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 40%, #080808 100%);
  overflow: hidden;
}

.services-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 179, 1, 0.12), transparent 65%);
  z-index: 0;
}

.services-hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04),
    transparent 70%
  );
  z-index: 0;
}

.services-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.services-hero-subtitle {
  font-size: 1.2rem;
  color: #bbb;
  line-height: 2;
  margin-bottom: 30px;
}

.services-hero-subtitle strong {
  color: var(--accent-gold);
}

.services-hero-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ---- Luxury Service Cards ---- */
.services-showcase {
  background: var(--bg-main);
}

.luxury-service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 60px;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease;
  /* Layered box-shadows */
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 20px 60px rgba(0, 0, 0, 0.15);
}

.luxury-service-card:hover {
  transform: scale(1.02);
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.15),
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 30px 80px rgba(245, 179, 1, 0.08);
  border-color: rgba(245, 179, 1, 0.15);
}

.luxury-service-card:last-child {
  margin-bottom: 0;
}

/* Alternating layout */
.luxury-service-card.reverse {
  direction: ltr;
}

.luxury-service-card.reverse .luxury-card-body {
  direction: rtl;
}

/* Card Image */
.luxury-card-image {
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.luxury-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.luxury-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 20px;
  border-radius: 30px;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(245, 179, 1, 0.3);
  z-index: 2;
}

.luxury-service-card.reverse .luxury-card-badge {
  right: auto;
  left: 20px;
}

/* Card Body */
.luxury-card-body {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.luxury-card-header {
  margin-bottom: 25px;
}

.service-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(245, 179, 1, 0.15),
    rgba(245, 179, 1, 0.05)
  );
  border: 1px solid rgba(245, 179, 1, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.luxury-service-card:hover .service-icon-circle {
  background: linear-gradient(
    135deg,
    rgba(245, 179, 1, 0.25),
    rgba(245, 179, 1, 0.1)
  );
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(245, 179, 1, 0.2);
}

.luxury-card-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(245, 179, 1, 0.08);
  border: 1px solid rgba(245, 179, 1, 0.15);
  border-radius: 20px;
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 700;
}

.luxury-card-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 25px;
}

.luxury-card-desc strong {
  color: var(--accent-gold);
}

/* Features List */
.luxury-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
}

.luxury-card-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  transition: all 0.3s ease;
}

.luxury-card-features li:hover {
  color: var(--text-primary);
  transform: translateX(-5px);
}

.luxury-card-features li i {
  color: var(--accent-gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Card Actions */
.luxury-card-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ---- Why Choose Us Section ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 35px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 8px 30px rgba(0, 0, 0, 0.1);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-gold),
    #ffdf70,
    var(--accent-gold)
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.2),
    0 16px 50px rgba(245, 179, 1, 0.1);
  border-color: rgba(245, 179, 1, 0.2);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(245, 179, 1, 0.12),
    rgba(245, 179, 1, 0.04)
  );
  border: 1px solid rgba(245, 179, 1, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(245, 179, 1, 0.25);
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

/* ---- Light Mode Adjustments ---- */
[data-theme="light"] .services-hero {
  background: linear-gradient(180deg, #f0f0f0 0%, #e8e8e8 40%, #fcfcfc 100%);
}

[data-theme="light"] .services-hero-content h1 {
  color: var(--text-primary);
}

[data-theme="light"] .services-hero-subtitle {
  color: var(--text-secondary);
}

[data-theme="light"] .luxury-service-card {
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .luxury-service-card:hover {
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.12),
    0 30px 80px rgba(212, 149, 0, 0.06);
}

[data-theme="light"] .why-card {
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 8px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .why-card:hover {
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.08),
    0 16px 50px rgba(212, 149, 0, 0.08);
}

[data-theme="light"] .luxury-card-badge {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(212, 149, 0, 0.3);
}

[data-theme="light"] .services-hero::before {
  background: radial-gradient(circle, rgba(212, 149, 0, 0.08), transparent 65%);
}

/* ---- Responsive Services Page ---- */
@media (max-width: 992px) {
  .luxury-service-card {
    grid-template-columns: 1fr;
  }

  .luxury-service-card.reverse {
    direction: rtl;
  }

  .luxury-card-image {
    min-height: 300px;
  }

  .luxury-card-body {
    padding: 35px 30px;
  }

  .services-hero-content h1 {
    font-size: 2.8rem;
  }

  .luxury-card-badge {
    right: 15px;
  }

  .luxury-service-card.reverse .luxury-card-badge {
    right: 15px;
    left: auto;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 140px 0 60px;
  }

  .services-hero-content h1 {
    font-size: 2.2rem;
  }

  .services-hero-subtitle {
    font-size: 1.05rem;
  }

  .luxury-card-image {
    min-height: 250px;
  }

  .luxury-card-body {
    padding: 30px 24px;
  }

  .luxury-card-header h3 {
    font-size: 1.5rem;
  }

  .luxury-card-actions {
    flex-direction: column;
  }

  .luxury-card-actions .btn {
    width: 100%;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .services-hero {
    padding: 130px 0 50px;
  }

  .services-hero-content h1 {
    font-size: 1.8rem;
  }

  .luxury-card-image {
    min-height: 200px;
  }

  .luxury-card-body {
    padding: 24px 20px;
  }

  .luxury-card-header h3 {
    font-size: 1.3rem;
  }

  .luxury-service-card {
    margin-bottom: 30px;
    border-radius: 18px;
  }

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

  .services-hero-badges {
    flex-direction: column;
    align-items: center;
  }
}
