/* ==========================================================
   مركز النعيم الطبي - Dark Luxury Design System
   ========================================================== */

:root {
  /* Dark luxury palette with elegant gold (HSL) */
  --background: 220 25% 6%;
  --foreground: 40 30% 95%;

  --card: 220 25% 9%;
  --card-foreground: 40 30% 95%;

  --primary: 42 65% 58%;
  --primary-foreground: 220 30% 8%;
  --primary-glow: 45 90% 70%;
  --primary-deep: 38 55% 42%;

  --secondary: 220 20% 14%;
  --muted: 220 18% 13%;
  --muted-foreground: 40 12% 68%;

  --border: 220 20% 18%;

  --radius: 1rem;

  --gradient-gold: linear-gradient(135deg, hsl(42 70% 65%) 0%, hsl(38 55% 45%) 50%, hsl(45 80% 70%) 100%);
  --gradient-dark: linear-gradient(180deg, hsl(220 25% 6%) 0%, hsl(220 30% 4%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(220 25% 11%) 0%, hsl(220 25% 8%) 100%);
  --gradient-glow: radial-gradient(circle at 50% 0%, hsla(42, 65%, 58%, 0.18) 0%, transparent 60%);

  --shadow-gold: 0 10px 40px -10px hsla(42, 65%, 58%, 0.4);
  --shadow-soft: 0 8px 32px -8px hsla(220, 50%, 0%, 0.6);
  --shadow-glow: 0 0 60px hsla(42, 80%, 60%, 0.25);

  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Tajawal', system-ui, -apple-system, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  background-image: var(--gradient-glow);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea { font: inherit; }

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Accessibility ===== */
.skip-nav {
  position: absolute;
  top: -100%;
  right: 0;
  padding: 0.75rem 1.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 700;
  border-radius: 0 0 0.5rem 0.5rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-nav:focus { top: 0; }

.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;
}

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

.glass {
  background: hsla(220, 25%, 8%, 0.6);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid hsla(42, 60%, 55%, 0.12);
}

.glass-card {
  background: var(--gradient-card);
  border: 1px solid hsla(42, 50%, 50%, 0.1);
  transition: all 0.4s var(--transition-smooth);
  border-radius: 1.5rem;
}
.glass-card:hover {
  border-color: hsla(42, 65%, 58%, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.gold-border { position: relative; }
.gold-border::before {
  content: '';
  position: absolute; inset: 0;
  padding: 1px;
  background: var(--gradient-gold);
  border-radius: inherit;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid hsla(42, 65%, 58%, 0.4);
  background: hsla(42, 65%, 58%, 0.05);
  margin-bottom: 1rem;
  color: hsl(var(--primary));
  -webkit-text-fill-color: hsl(var(--primary));
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-desc {
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 0.85rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap;
}
.btn-hero {
  background: var(--gradient-gold);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-gold);
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-outline {
  border: 1px solid hsla(42, 65%, 58%, 0.5);
  color: hsl(var(--primary));
  background: hsla(42, 65%, 58%, 0.05);
}
.btn-outline:hover { background: hsla(42, 65%, 58%, 0.15); border-color: hsl(var(--primary)); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideKenBurns {
  0% { transform: scale(1.05) translateX(0); }
  100% { transform: scale(1.18) translateX(-2%); }
}
@keyframes pingRing {
  0% { transform: scale(1); opacity: 0.5; }
  75%, 100% { transform: scale(1.8); opacity: 0; }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-fade-up { animation: fadeUp 0.8s var(--transition-smooth) both; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
  will-change: transform, opacity;
}
.reveal.in-view { opacity: 1; transform: translateY(0); will-change: auto; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: hsl(var(--background)); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, hsl(var(--primary)), hsl(var(--primary-deep)));
  border-radius: 10px;
}

/* ==========================================================
   Header
   ========================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem 0;
  background: hsla(220, 25%, 6%, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.5s var(--transition-smooth);
}
.site-header.scrolled {
  padding: 0.5rem 0;
  background: hsla(220, 25%, 6%, 0.7);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid hsla(42, 65%, 58%, 0.1);
  box-shadow: var(--shadow-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo-link { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.logo-link img {
  height: 3rem;
  width: auto;
  transition: transform 0.5s var(--transition-smooth);
  filter: drop-shadow(0 0 15px hsla(42, 65%, 58%, 0.4));
}
.logo-link:hover img { transform: scale(1.1); }

.main-nav { display: none; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link, .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: hsla(40, 30%, 95%, 0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-link:hover, .nav-trigger:hover { color: hsl(var(--primary)); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--gradient-gold);
  transition: width 0.3s;
}
.nav-link:hover::after { width: 60%; }

.nav-chevron { width: 14px; height: 14px; transition: transform 0.3s; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

.submenu {
  position: absolute;
  top: 100%; right: 0;
  margin-top: 0.5rem;
  min-width: 220px;
  padding: 0.5rem;
  border-radius: 1rem;
  background: hsla(220, 25%, 8%, 0.85);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid hsla(42, 60%, 55%, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s var(--transition-smooth);
}
.nav-item:hover .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.submenu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: hsla(40, 30%, 95%, 0.8);
  border-radius: 0.65rem;
  transition: all 0.2s;
}
.submenu a:hover {
  color: hsl(var(--primary));
  background: hsla(42, 65%, 58%, 0.1);
}

.header-cta { display: none; }
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem;
  color: hsl(var(--primary));
}
.menu-toggle svg { width: 24px; height: 24px; }
.menu-toggle .icon-close { display: none; }
.site-header.menu-open .menu-toggle .icon-open { display: none; }
.site-header.menu-open .menu-toggle .icon-close { display: block; }

.mobile-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--transition-smooth), opacity 0.5s;
}
.site-header.menu-open .mobile-menu {
  max-height: 600px;
  opacity: 1;
}
.mobile-menu-inner { padding: 1rem 0; }
.mobile-menu a, .mobile-menu .nav-trigger {
  display: block;
  padding: 0.75rem 1rem;
  color: hsla(40, 30%, 95%, 0.85);
  border-radius: 0.85rem;
  width: 100%;
  text-align: right;
}
.mobile-menu a:hover { background: hsla(42, 65%, 58%, 0.05); color: hsl(var(--primary)); }
.mobile-submenu {
  display: none;
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: 2px solid hsla(42, 65%, 58%, 0.3);
}
.mobile-submenu.open { display: block; }
.mobile-menu .btn { width: 100%; margin-top: 0.75rem; }

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .header-cta { display: flex; align-items: center; gap: 0.75rem; }
  .menu-toggle { display: none; }
  .logo-link img { height: 3.5rem; }
}

/* ==========================================================
   Hero Slider
   ========================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--transition-smooth);
  z-index: 0;
}
.slide.active { opacity: 1; z-index: 10; }
.slide-image-wrap { position: absolute; inset: 0; overflow: hidden; }
.slide-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.slide.active .slide-image-wrap img { animation: slideKenBurns 8s ease-out forwards; }
.slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to left, hsl(var(--background)), hsla(220,25%,6%,0.7) 50%, hsla(220,25%,6%,0.4));
  z-index: 1;
}
.slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(var(--background)), hsla(220,25%,6%,0.3), transparent);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: -10rem; left: -10rem;
  width: 500px; height: 500px;
  background: hsla(42, 65%, 58%, 0.2);
  border-radius: 50%;
  filter: blur(120px);
  z-index: 10;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}
.slide-content { display: none; max-width: 640px; }
.slide-content.active { display: block; animation: fadeUp 0.8s var(--transition-smooth) both; }

.slide-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 1.5rem 0;
}
.slide-title span { display: block; }
.slide-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 560px;
}
.slide-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.slider-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.slider-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  background: hsla(220, 25%, 8%, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid hsla(42, 60%, 55%, 0.2);
  transition: all 0.3s;
}
.slider-arrow:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.slider-arrow svg { width: 20px; height: 20px; }
.slider-dots { display: flex; align-items: center; gap: 0.5rem; }
.slider-dot {
  height: 6px;
  width: 8px;
  border-radius: 999px;
  background: hsla(40, 30%, 95%, 0.3);
  transition: all 0.5s;
  position: relative;
}
.slider-dot::after {
  content: '';
  position: absolute;
  inset: -18px -18px;
}
.slider-dot.active {
  width: 40px;
  background: var(--gradient-gold);
}

.hero-stat {
  display: none;
  position: absolute;
  bottom: 2.5rem; right: 2rem;
  z-index: 30;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: hsla(220, 25%, 8%, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid hsla(42, 60%, 55%, 0.12);
  animation: float 6s ease-in-out infinite;
}
.hero-stat-value { font-size: 1.875rem; font-weight: 900; }
.hero-stat-label { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; }
@media (min-width: 768px) { .hero-stat { display: block; } }

/* ==========================================================
   Sections
   ========================================================== */
section { padding: 6rem 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 4rem; }

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card { padding: 2rem; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 1rem;
  background: var(--gradient-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-gold);
  transition: transform 0.5s;
  color: hsl(var(--primary-foreground));
}
.feature-card:hover .feature-icon { transform: rotate(6deg); }
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.feature-card:hover h3 { color: hsl(var(--primary)); }
.feature-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.about-image-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsla(220,25%,6%,0.8), transparent 60%);
}
.about-image-container { position: relative; }
.about-floating {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: hsla(220, 25%, 8%, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid hsla(42, 60%, 55%, 0.12);
  animation: float 6s ease-in-out infinite;
}
.about-floating-value { font-size: 2.25rem; font-weight: 900; }
.about-floating-label { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; }
.about-glow {
  position: absolute;
  z-index: -1;
  top: -2.5rem; right: -2.5rem;
  width: 18rem; height: 18rem;
  background: hsla(42, 65%, 58%, 0.2);
  border-radius: 50%;
  filter: blur(100px);
}
.about-content h2 { margin-bottom: 1.5rem; }
.about-text {
  color: hsl(var(--muted-foreground));
  line-height: 2;
  margin-bottom: 2rem;
}
.about-points { margin-bottom: 2rem; }
.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.about-points svg {
  width: 20px; height: 20px;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 2px;
}
.about-points span {
  font-size: 0.9rem;
  color: hsla(40, 30%, 95%, 0.85);
  line-height: 1.7;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.about-stat {
  text-align: center;
  padding: 1rem;
}
.about-stat svg {
  width: 20px; height: 20px;
  color: hsl(var(--primary));
  margin: 0 auto 0.5rem;
  display: block;
}
.about-stat-value { font-size: 1.5rem; font-weight: 900; }
.about-stat-label { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; }

/* Services */
.services { background: hsla(220, 20%, 14%, 0.2); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 380px;
}
.service-card img {
  opacity: 0.3;
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.service-card:hover img { transform: scale(1.1); }
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(
      to top,
      hsl(220 25% 4% / 0.98) 0%,
      hsl(220 25% 4% / 0.88) 40%,
      hsl(220 25% 4% / 0.65) 70%,
      hsl(220 25% 4% / 0.45) 100%
    );
  z-index: 1;
}
.service-content {
  position: absolute; inset: 0; z-index: 2;
  padding: 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary) / 0.4);
  background: hsl(var(--primary) / 0.06);
  width: fit-content;
  margin-bottom: 18px;
  -webkit-text-fill-color: hsl(var(--primary));
}
.service-content h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
  color: hsl(var(--foreground));
  text-shadow: 0 2px 12px hsl(220 25% 4% / 0.6);
}
.service-card:hover .service-content h3 { color: hsl(var(--primary)); }
.service-content p {
  color: hsl(40 20% 88%);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 28rem;
  text-shadow: 0 1px 6px hsl(220 25% 4% / 0.5);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary));
  font-size: 0.875rem;
  font-weight: 700;
  width: fit-content;
}
.service-link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.service-link:hover svg { transform: translateX(-4px); }
.services-cta { text-align: center; margin-top: 3rem; }

/* Stories */
.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .stories-grid { grid-template-columns: repeat(3, 1fr); } }

.story-card { padding: 2rem; position: relative; }
.story-quote-icon {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  width: 40px; height: 40px;
  color: hsla(42, 65%, 58%, 0.2);
  transition: color 0.3s;
}
.story-card:hover .story-quote-icon { color: hsla(42, 65%, 58%, 0.4); }
.story-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.story-stars svg { width: 16px; height: 16px; fill: hsl(var(--primary)); color: hsl(var(--primary)); }
.story-text {
  color: hsla(40, 30%, 95%, 0.85);
  line-height: 2;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.story-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsla(220, 20%, 18%, 0.5);
}
.story-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground));
  font-weight: 900;
}
.story-name { font-weight: 700; }
.story-age { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 2fr 3fr; }
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  transition: all 0.4s var(--transition-smooth);
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 0.85rem;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: hsl(var(--primary-foreground));
}
.contact-item:hover .contact-icon { transform: rotate(6deg); }
.contact-icon svg { width: 20px; height: 20px; }
.contact-label { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-bottom: 0.25rem; }
.contact-value { font-weight: 700; }

.contact-form { padding: 2rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: hsla(220, 25%, 6%, 0.5);
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  color: hsl(var(--foreground));
  transition: border-color 0.3s;
  margin-bottom: 1rem;
  font-family: inherit;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
}
.form-input { height: 48px; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-input::placeholder, .form-textarea::placeholder { color: hsl(var(--muted-foreground)); }
.form-submit { width: 100%; }
.form-note {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin-top: 0.75rem;
}

/* ==========================================================
   Footer
   ========================================================== */
.site-footer {
  position: relative;
  padding: 5rem 0 2rem;
  border-top: 1px solid hsla(220, 20%, 18%, 0.4);
  background: hsla(220, 25%, 9%, 0.4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-logo { height: 64px; margin-bottom: 1rem; }
.footer-about p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  background: hsla(220, 25%, 8%, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid hsla(42, 60%, 55%, 0.12);
  transition: all 0.3s;
}
.footer-socials a:hover {
  background: var(--gradient-gold);
  color: hsl(var(--primary-foreground));
}
.footer-socials svg { width: 16px; height: 16px; }
.footer-col h3 {
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.footer-col ul li { margin-bottom: 0.65rem; font-size: 0.875rem; }
.footer-col ul a {
  color: hsl(var(--muted-foreground));
  transition: color 0.3s;
}
.footer-col ul a:hover { color: hsl(var(--primary)); }
.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
}
.footer-contacts svg {
  width: 16px; height: 16px;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsla(220, 20%, 18%, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom-links { display: flex; gap: 1rem; }
.footer-bottom-links a:hover { color: hsl(var(--primary)); }

/* ==========================================================
   Floating Actions
   ========================================================== */
.floating-actions {
  position: fixed;
  bottom: 1.5rem;
  left: 1rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) { .floating-actions { left: 1.5rem; } }

.fa-btn {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 8px 24px hsla(220, 50%, 0%, 0.4);
}
@media (min-width: 768px) { .fa-btn { width: 56px; height: 56px; } }
.fa-btn:hover { transform: scale(1.1); }
.fa-btn svg { width: 22px; height: 22px; position: relative; z-index: 2; }
.fa-btn .ping {
  position: absolute; inset: 0;
  border-radius: 50%;
  animation: pingRing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: 1;
}
.fa-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 0.75rem;
  padding: 0.4rem 0.75rem;
  border-radius: 0.5rem;
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;
  transition: all 0.3s;
}
.fa-btn:hover .fa-tooltip { opacity: 1; transform: translateX(0); }

.fa-whatsapp { background: #25D366; color: white; }
.fa-whatsapp .ping { background: #25D366; opacity: 0.3; }
.fa-call { background: var(--gradient-gold); color: hsl(var(--primary-foreground)); box-shadow: var(--shadow-gold); }
.fa-call .ping { background: hsl(var(--primary)); opacity: 0.25; }
.fa-top {
  background: hsla(220, 25%, 8%, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid hsla(42, 60%, 55%, 0.2);
  color: hsl(var(--primary));
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.fa-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fa-top:hover { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }

/* ==========================================================
   Laravel Inner Pages
   ========================================================== */
.page-hero {
  position: relative;
  padding: 9.5rem 0 5rem;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse at top, hsl(var(--primary) / 0.18), transparent 62%),
    radial-gradient(ellipse at bottom, hsl(var(--primary) / 0.08), transparent 62%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(hsl(var(--primary) / 0.06) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--primary) / 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.85rem;
}
.breadcrumb a { color: hsl(var(--muted-foreground)); }
.breadcrumb a:hover,
.breadcrumb .current { color: hsl(var(--primary)); }
.page-hero h1 {
  max-width: 980px;
  margin: 0 auto 1rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
}
.page-hero .lead {
  max-width: 780px;
  margin: 0 auto;
  color: hsl(var(--muted-foreground));
  font-size: 1.05rem;
  line-height: 2;
}
.page-section { padding: 5.5rem 0; position: relative; }
.page-section.tight { padding-top: 3.5rem; }
.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (min-width: 720px) { .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .cards-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1180px) { .cards-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 980px) {
  .content-grid.two { grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr); }
  .content-grid.even { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.theme-card {
  background: var(--gradient-card);
  border: 1px solid hsla(42, 50%, 50%, 0.12);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.theme-card.pad { padding: 1.6rem; }
.theme-card.media img,
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-frame {
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid hsla(42, 50%, 50%, 0.12);
  background: hsl(var(--muted));
}
.media-frame.tall { aspect-ratio: 4 / 5; }
.media-frame.wide { aspect-ratio: 16 / 10; }
.entry-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.35s var(--transition-smooth), border-color 0.35s;
}
.entry-card:hover { transform: translateY(-6px); border-color: hsl(var(--primary) / 0.38); }
.entry-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: hsl(var(--muted));
}
.entry-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--transition-smooth);
}
.entry-card:hover .entry-card-image img { transform: scale(1.06); }
.entry-card-body { padding: 1.35rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.entry-card-kicker {
  color: hsl(var(--primary));
  font-size: 0.85rem;
  font-weight: 800;
}
.entry-card h3,
.theme-card h3,
.sidebar-card h3 {
  color: hsl(var(--foreground));
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.5;
}
.entry-card p,
.theme-card p,
.prose p,
.sidebar-card p,
.muted-copy {
  color: hsl(var(--muted-foreground));
  line-height: 1.9;
}
.inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
}
.simple-list { display: grid; gap: 0.85rem; }
.simple-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
}
.simple-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 0.75rem;
  border-radius: 999px;
  background: hsl(var(--primary));
  box-shadow: 0 0 18px hsl(var(--primary) / 0.65);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 720px) { .form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.form-field { display: grid; gap: 0.45rem; }
.form-field label { color: hsl(var(--foreground)); font-weight: 800; }
.form-field input,
.form-field select,
.form-field textarea,
.search-form input {
  width: 100%;
  border: 1px solid hsla(42, 50%, 50%, 0.16);
  border-radius: 0.9rem;
  background: hsl(var(--card) / 0.8);
  color: hsl(var(--foreground));
  padding: 0.95rem 1rem;
  outline: none;
}
.form-field textarea { min-height: 150px; resize: vertical; }
.radio-row { display: flex; flex-wrap: wrap; gap: 1rem; color: hsl(var(--muted-foreground)); }
.radio-row label { display: inline-flex; align-items: center; gap: 0.45rem; cursor: pointer; }
.form-field-full { grid-column: 1 / -1; }
.text-primary { color: hsl(var(--primary)); }
.alert {
  border-radius: 0.9rem;
  padding: 0.95rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid hsla(42, 50%, 50%, 0.18);
  background: hsl(var(--card));
  color: hsl(var(--foreground));
}
.alert.success { border-color: rgba(37, 211, 102, 0.35); color: #b7f7ce; }
.alert.error { border-color: rgba(248, 113, 113, 0.4); color: #fecaca; }
.search-form {
  display: flex;
  gap: 0.75rem;
  max-width: 680px;
  margin: 0 auto 2.2rem;
}
.search-form button { flex: 0 0 auto; }
.sidebar-stack { display: grid; gap: 1.2rem; }
.sidebar-card { padding: 1.35rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag-list a,
.tag-list span {
  border: 1px solid hsla(42, 50%, 50%, 0.2);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  color: hsl(var(--muted-foreground));
}
.tag-list a:hover { color: hsl(var(--primary)); border-color: hsl(var(--primary) / 0.45); }
.tag-list a.is-active { color: hsl(var(--primary)); border-color: hsl(var(--primary) / 0.65); background: hsl(var(--primary) / 0.1); }
.faq-list { display: grid; gap: 1rem; }
.faq-item { padding: 1.1rem 1.25rem; }
.faq-item summary {
  cursor: pointer;
  color: hsl(var(--foreground));
  font-weight: 900;
  line-height: 1.7;
}
.faq-item summary::marker { color: hsl(var(--primary)); }
.faq-item p { margin-top: 0.9rem; }
.prose {
  color: hsl(var(--muted-foreground));
  line-height: 2;
}
.prose h1, .prose h2, .prose h3, .prose h4 {
  color: hsl(var(--foreground));
  margin: 1.5rem 0 0.75rem;
  line-height: 1.45;
}
.prose ul, .prose ol { padding-right: 1.2rem; margin: 1rem 0; }
.prose img { border-radius: 1rem; margin: 1.2rem 0; }
.pagination-wrap,
.pg-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}
.pg-pagination a,
.pg-pagination span {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid hsla(42, 50%, 50%, 0.18);
  color: hsl(var(--muted-foreground));
  padding: 0.4rem 0.75rem;
}
.pg-pagination a.active,
.pg-pagination a:hover {
  color: hsl(var(--primary-foreground));
  background: var(--gradient-gold);
}
.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}
.empty-state {
  text-align: center;
  padding: 2.2rem;
}
@media (max-width: 640px) {
  .page-hero { padding-top: 8rem; }
  .search-form { flex-direction: column; }
}


/* Moved from resources/views/website/about.blade.php */
/* ============ ABOUT PAGE STYLES ============ */
    .page-hero {
      position: relative;
      padding: 180px 0 100px;
      overflow: hidden;
      text-align: center;
      background:
        radial-gradient(ellipse at top, hsl(var(--primary) / 0.18), transparent 60%),
        radial-gradient(ellipse at bottom, hsl(var(--primary) / 0.08), transparent 60%);
    }
    .page-hero::before {
      content: "";
      position: absolute; inset: 0;
      background-image:
        linear-gradient(hsl(var(--primary) / 0.06) 1px, transparent 1px),
        linear-gradient(90deg, hsl(var(--primary) / 0.06) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
      pointer-events: none;
    }
    .page-hero .container { position: relative; z-index: 1; }
    .page-hero .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: hsl(var(--muted-foreground));
      margin-bottom: 24px;
    }
    .page-hero .breadcrumb a { color: hsl(var(--muted-foreground)); transition: color .25s; }
    .page-hero .breadcrumb a:hover { color: hsl(var(--primary)); }
    .page-hero .breadcrumb .sep { opacity: .5; }
    .page-hero .breadcrumb .current { color: hsl(var(--primary)); font-weight: 700; }
    .page-hero h1 {
      font-size: clamp(36px, 6vw, 64px);
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .page-hero .lead {
      max-width: 760px;
      margin: 0 auto;
      color: hsl(var(--muted-foreground));
      font-size: clamp(15px, 1.6vw, 18px);
      line-height: 2;
    }

    /* Vision & Mission */
    .vm-section { padding: 90px 0; position: relative; }
    .vm-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
    }
    @media (min-width: 900px) { .vm-grid { grid-template-columns: 1fr 1fr; } }

    .vm-card {
      position: relative;
      padding: 44px 36px;
      border-radius: 28px;
      background: hsl(var(--card) / 0.55);
      border: 1px solid hsl(var(--primary) / 0.18);
      backdrop-filter: blur(18px);
      overflow: hidden;
      transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    }
    .vm-card::before {
      content: "";
      position: absolute; top: 0; right: 0; left: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, hsl(var(--primary)), transparent);
      opacity: .8;
    }
    .vm-card:hover {
      transform: translateY(-6px);
      border-color: hsl(var(--primary) / 0.45);
      box-shadow: 0 24px 60px -20px hsl(var(--primary) / 0.35);
    }
    .vm-icon {
      width: 64px; height: 64px;
      display: grid; place-items: center;
      border-radius: 18px;
      background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--primary) / 0.05));
      border: 1px solid hsl(var(--primary) / 0.35);
      margin-bottom: 22px;
      color: hsl(var(--primary));
    }
    .vm-icon svg { width: 30px; height: 30px; }
    .vm-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 2px;
      color: hsl(var(--primary));
      margin-bottom: 10px;
    }
    .vm-card h2 {
      font-size: 28px;
      font-weight: 900;
      margin-bottom: 16px;
    }
    .vm-card p {
      color: hsl(var(--foreground) / 0.78);
      line-height: 2;
      font-size: 15.5px;
    }

    /* Story / About narrative */
    .story-section { padding: 80px 0; }
    .story-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 50px;
      align-items: center;
    }
    @media (min-width: 992px) { .story-grid { grid-template-columns: 1.05fr 1fr; gap: 70px; } }

    .story-image-stack {
      position: relative;
      min-height: 480px;
    }
    .story-img-main {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid hsl(var(--primary) / 0.3);
      box-shadow: 0 30px 70px -20px hsl(var(--primary) / 0.35);
    }
    .story-img-main img { width: 100%; height: 480px; object-fit: cover; display: block; }
    .story-img-main::after {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(to top, hsl(var(--background) / .6), transparent 50%);
    }
    .story-img-float {
      position: absolute;
      bottom: -28px;
      inset-inline-start: -28px;
      width: 200px; height: 200px;
      border-radius: 24px;
      overflow: hidden;
      border: 3px solid hsl(var(--primary) / 0.6);
      box-shadow: 0 20px 50px -10px hsl(var(--primary) / 0.5);
      display: none;
    }
    @media (min-width: 768px) { .story-img-float { display: block; } }
    .story-img-float img { width: 100%; height: 100%; object-fit: cover; }

    .story-content .eyebrow {
      display: inline-block;
      padding: 8px 18px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      color: hsl(var(--primary));
      border: 1px solid hsl(var(--primary) / 0.4);
      margin-bottom: 18px;
    }
    .story-content h2 {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 900;
      line-height: 1.25;
      margin-bottom: 22px;
    }
    .story-content p {
      color: hsl(var(--muted-foreground));
      line-height: 2.1;
      font-size: 15.5px;
      margin-bottom: 16px;
    }

    /* Core Values */
    .values-section {
      padding: 100px 0;
      position: relative;
      background:
        radial-gradient(ellipse at center top, hsl(var(--primary) / 0.07), transparent 70%);
    }
    .section-head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 60px;
    }
    .section-head .eyebrow {
      display: inline-block;
      padding: 8px 18px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      color: hsl(var(--primary));
      border: 1px solid hsl(var(--primary) / 0.4);
      margin-bottom: 18px;
    }
    .section-head h2 {
      font-size: clamp(30px, 4.5vw, 46px);
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .section-head p {
      color: hsl(var(--muted-foreground));
      line-height: 1.9;
    }

    .values-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    @media (min-width: 700px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1100px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

    .value-card {
      position: relative;
      padding: 36px 28px;
      border-radius: 24px;
      background: hsl(var(--card) / 0.55);
      border: 1px solid hsl(var(--border));
      backdrop-filter: blur(14px);
      transition: transform .35s ease, border-color .35s ease, background .35s ease;
      overflow: hidden;
    }
    .value-card::after {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, hsl(var(--primary) / 0.6), transparent 60%);
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
              mask-composite: exclude;
      opacity: 0;
      transition: opacity .35s;
      pointer-events: none;
    }
    .value-card:hover { transform: translateY(-8px); }
    .value-card:hover::after { opacity: 1; }

    .value-num {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 2px;
      color: hsl(var(--primary));
      opacity: .7;
      margin-bottom: 14px;
    }
    .value-icon {
      width: 56px; height: 56px;
      display: grid; place-items: center;
      border-radius: 16px;
      background: linear-gradient(135deg, hsl(var(--primary) / 0.22), hsl(var(--primary) / 0.05));
      border: 1px solid hsl(var(--primary) / 0.35);
      color: hsl(var(--primary));
      margin-bottom: 18px;
    }
    .value-icon svg { width: 26px; height: 26px; }
    .value-card h3 {
      font-size: 19px;
      font-weight: 800;
      margin-bottom: 10px;
    }
    .value-card .en {
      display: block;
      font-size: 11px;
      letter-spacing: 1.5px;
      color: hsl(var(--primary));
      opacity: .85;
      margin-bottom: 14px;
      direction: ltr;
      text-align: right;
    }
    .value-card p {
      color: hsl(var(--muted-foreground));
      font-size: 14px;
      line-height: 1.95;
    }

    /* CTA */
    .cta-section { padding: 90px 0 110px; }
    .cta-card {
      position: relative;
      padding: 60px 40px;
      border-radius: 32px;
      text-align: center;
      overflow: hidden;
      background:
        radial-gradient(ellipse at top, hsl(var(--primary) / 0.25), transparent 60%),
        hsl(var(--card) / 0.55);
      border: 1px solid hsl(var(--primary) / 0.35);
      backdrop-filter: blur(18px);
    }
    .cta-card h2 {
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 900;
      margin-bottom: 16px;
      line-height: 1.3;
    }
    .cta-card p {
      max-width: 620px;
      margin: 0 auto 30px;
      color: hsl(var(--muted-foreground));
      line-height: 1.95;
    }
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
    }


/* Moved from resources/views/website/services.blade.php */
/* ============ SERVICES PAGE STYLES ============ */
    .page-hero {
      position: relative;
      padding: 180px 0 100px;
      overflow: hidden;
      text-align: center;
      background:
        radial-gradient(ellipse at top, hsl(var(--primary) / 0.18), transparent 60%),
        radial-gradient(ellipse at bottom, hsl(var(--primary) / 0.08), transparent 60%);
    }
    .page-hero::before {
      content: "";
      position: absolute; inset: 0;
      background-image:
        linear-gradient(hsl(var(--primary) / 0.06) 1px, transparent 1px),
        linear-gradient(90deg, hsl(var(--primary) / 0.06) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
      pointer-events: none;
    }
    .page-hero .container { position: relative; z-index: 1; }
    .page-hero .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: hsl(var(--muted-foreground));
      margin-bottom: 24px;
    }
    .page-hero .breadcrumb a { color: hsl(var(--muted-foreground)); transition: color .25s; }
    .page-hero .breadcrumb a:hover { color: hsl(var(--primary)); }
    .page-hero .breadcrumb .sep { opacity: .5; }
    .page-hero .breadcrumb .current { color: hsl(var(--primary)); font-weight: 700; }
    .page-hero h1 {
      font-size: clamp(36px, 6vw, 64px);
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .page-hero .lead {
      max-width: 760px;
      margin: 0 auto;
      color: hsl(var(--muted-foreground));
      font-size: clamp(15px, 1.6vw, 18px);
      line-height: 2;
    }

    /* ===== Services list ===== */
    .services-section { padding: 60px 0 90px; position: relative; }

    .service-block {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: stretch;
      margin-bottom: 80px;
      position: relative;
    }
    @media (min-width: 980px) {
      .service-block { grid-template-columns: 1.05fr 1fr; gap: 56px; }
      .service-block.reverse > .service-media { order: 2; }
    }

    .service-media {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      min-height: 360px;
      border: 1px solid hsl(var(--primary) / 0.18);
      box-shadow: 0 30px 60px -30px hsl(var(--primary) / 0.35);
    }
    .service-media img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 1s ease;
    }
    .service-block:hover .service-media img { transform: scale(1.06); }
    .service-media::after {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 30%, hsl(var(--background) / 0.85) 100%);
    }
    .service-media .media-badges {
      position: absolute;
      bottom: 22px;
      inset-inline-start: 22px;
      inset-inline-end: 22px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      z-index: 2;
    }
    .media-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      background: hsl(var(--background) / 0.65);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid hsl(var(--primary) / 0.35);
      color: hsl(var(--primary));
    }
    .media-badge svg { width: 14px; height: 14px; }

    .service-content {
      padding: 8px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .service-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      color: hsl(var(--primary));
      border: 1px solid hsl(var(--primary) / 0.4);
      background: hsl(var(--primary) / 0.06);
      width: fit-content;
      margin-bottom: 18px;
    }
    .service-content h2 {
      font-size: clamp(26px, 3.2vw, 38px);
      font-weight: 900;
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .service-content > p {
      color: hsl(var(--muted-foreground));
      line-height: 2;
      margin-bottom: 24px;
      font-size: 15.5px;
    }

    .service-features {
      list-style: none;
      padding: 0;
      margin: 0 0 28px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }
    @media (min-width: 600px) { .service-features { grid-template-columns: 1fr 1fr; } }

    .service-features li {
      position: relative;
      padding: 12px 16px 12px 16px;
      padding-inline-start: 44px;
      border-radius: 14px;
      background: hsl(var(--card) / 0.5);
      border: 1px solid hsl(var(--border) / 0.6);
      font-size: 14px;
      line-height: 1.6;
      transition: all .25s;
    }
    .service-features li:hover {
      border-color: hsl(var(--primary) / 0.45);
      background: hsl(var(--card) / 0.75);
      transform: translateY(-2px);
    }
    .service-features li::before {
      content: "";
      position: absolute;
      inset-inline-start: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 20px; height: 20px;
      border-radius: 50%;
      background:
        linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary) / 0.7));
      box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15);
    }
    .service-features li::after {
      content: "";
      position: absolute;
      inset-inline-start: 19px;
      top: 50%;
      width: 6px; height: 10px;
      border: solid hsl(var(--background));
      border-width: 0 2px 2px 0;
      transform: translateY(-65%) rotate(45deg);
    }

    /* Women privacy notice */
    .privacy-notice {
      margin: 8px 0 24px;
      padding: 16px 20px;
      border-radius: 16px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: linear-gradient(135deg, hsl(var(--primary) / 0.12), hsl(var(--primary) / 0.04));
      border: 1px solid hsl(var(--primary) / 0.35);
    }
    .privacy-notice .pn-icon {
      flex-shrink: 0;
      width: 42px; height: 42px;
      display: grid; place-items: center;
      border-radius: 12px;
      background: hsl(var(--primary) / 0.18);
      color: hsl(var(--primary));
    }
    .privacy-notice .pn-icon svg { width: 22px; height: 22px; }
    .privacy-notice h4 {
      font-size: 15px;
      font-weight: 800;
      color: hsl(var(--primary));
      margin-bottom: 4px;
    }
    .privacy-notice p {
      color: hsl(var(--muted-foreground));
      font-size: 13.5px;
      line-height: 1.7;
      margin: 0;
    }

    /* ===== Stats section ===== */
    .stats-section {
      padding: 90px 0;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(ellipse at center, hsl(var(--primary) / 0.1), transparent 65%);
    }
    .stats-section::before {
      content: "";
      position: absolute; inset: 0;
      background-image:
        linear-gradient(hsl(var(--primary) / 0.05) 1px, transparent 1px),
        linear-gradient(90deg, hsl(var(--primary) / 0.05) 1px, transparent 1px);
      background-size: 50px 50px;
      mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
      pointer-events: none;
    }
    .stats-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
      position: relative;
      z-index: 1;
    }
    .stats-header .eyebrow {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      color: hsl(var(--primary));
      border: 1px solid hsl(var(--primary) / 0.4);
      margin-bottom: 16px;
    }
    .stats-header h2 {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 900;
      margin-bottom: 14px;
    }
    .stats-header p {
      color: hsl(var(--muted-foreground));
      line-height: 1.9;
    }

    .stats-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    @media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

    .stat-card {
      position: relative;
      padding: 36px 24px;
      text-align: center;
      border-radius: 24px;
      background: hsl(var(--card) / 0.55);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid hsl(var(--primary) / 0.2);
      overflow: hidden;
      transition: transform .35s, border-color .35s, box-shadow .35s;
    }
    .stat-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top, hsl(var(--primary) / 0.18), transparent 60%);
      opacity: 0;
      transition: opacity .35s;
    }
    .stat-card:hover {
      transform: translateY(-6px);
      border-color: hsl(var(--primary) / 0.5);
      box-shadow: 0 20px 50px -20px hsl(var(--primary) / 0.45);
    }
    .stat-card:hover::before { opacity: 1; }

    .stat-icon {
      width: 56px; height: 56px;
      margin: 0 auto 18px;
      display: grid; place-items: center;
      border-radius: 16px;
      background: linear-gradient(135deg, hsl(var(--primary) / 0.25), hsl(var(--primary) / 0.08));
      color: hsl(var(--primary));
      position: relative;
      z-index: 1;
    }
    .stat-icon svg { width: 28px; height: 28px; }

    .stat-number {
      position: relative;
      z-index: 1;
      font-size: clamp(36px, 4.5vw, 52px);
      font-weight: 900;
      line-height: 1;
      background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary) / 0.6));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-flex;
      align-items: baseline;
      gap: 4px;
    }
    .stat-number .suffix {
      font-size: 0.55em;
      font-weight: 800;
    }
    .stat-label {
      position: relative;
      z-index: 1;
      margin-top: 12px;
      color: hsl(var(--muted-foreground));
      font-size: 14px;
      font-weight: 600;
      line-height: 1.5;
    }

    /* ===== CTA ===== */
    .services-cta { padding: 90px 0 110px; }
    .cta-box {
      position: relative;
      padding: 60px 40px;
      border-radius: 32px;
      text-align: center;
      background: linear-gradient(135deg, hsl(var(--card) / 0.7), hsl(var(--card) / 0.4));
      border: 1px solid hsl(var(--primary) / 0.3);
      overflow: hidden;
    }
    .cta-box::before {
      content: "";
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at top, hsl(var(--primary) / 0.18), transparent 60%);
      pointer-events: none;
    }
    .cta-box h2 {
      position: relative;
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 900;
      margin-bottom: 16px;
    }
    .cta-box p {
      position: relative;
      max-width: 620px;
      margin: 0 auto 30px;
      color: hsl(var(--muted-foreground));
      line-height: 1.9;
    }
    .cta-actions {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
    }

/* ===== WHY US SECTION ===== */
#why-us { padding: 5rem 0; }
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.why-us-card {
  padding: 2rem 2.5rem;
  border-radius: 1.25rem;
}
.why-us-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: hsl(var(--primary));
  margin-bottom: 0.75rem;
}
.why-us-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.why-us-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: why-counter;
}
.why-us-list li {
  counter-increment: why-counter;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid hsla(42, 65%, 58%, 0.1);
  line-height: 1.7;
  font-size: 0.95rem;
}
.why-us-list li:last-child { border-bottom: none; }
.why-us-list li::before {
  content: counter(why-counter);
  min-width: 1.75rem;
  height: 1.75rem;
  background: var(--gradient-gold);
  color: hsl(var(--primary-foreground));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .why-us-grid { grid-template-columns: 1fr; }
}

/* ===== FAQS SECTION ===== */
#faqs { padding: 5rem 0; }

/* FAQ two-col layout */
.faq-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.section-head--start {
  text-align: right;
  align-items: flex-end;
  margin-bottom: 2rem;
}
.faq-content .faqs-list {
  max-width: none;
  margin: 0;
}
.faqs-list { display: flex; flex-direction: column; gap: 0.85rem; max-width: 860px; margin: 0 auto; }
.faq-item { border-radius: 1rem; overflow: hidden; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform .3s ease; color: hsl(var(--primary)); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem 1.25rem; color: hsl(var(--muted-foreground)); line-height: 1.85; }
.faq-answer p { margin: 0; }

/* FAQ visual */
.faq-visual { width: 100%; }
.faq-img-wrap {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 32px 64px -20px hsl(var(--primary) / 0.18);
  border: 1px solid hsl(var(--primary) / 0.15);
}
.faq-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.faq-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    hsl(220 25% 4% / 0.65) 0%,
    transparent 55%
  );
}
.faq-float-card {
  position: absolute;
  bottom: 1.75rem;
  right: 1.5rem;
  background: hsl(220 25% 8% / 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 1rem;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 170px;
}
.faq-float-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 0.6rem;
  background: hsl(var(--primary) / 0.12);
  border: 1px solid hsl(var(--primary) / 0.3);
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--primary));
}
.faq-float-icon svg { width: 20px; height: 20px; }
.faq-float-num { font-size: 1.5rem; font-weight: 900; line-height: 1; margin: 0; }
.faq-float-label { font-size: 0.72rem; color: hsl(var(--muted-foreground)); margin: 0.2rem 0 0; }
.faq-float-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: hsl(220 25% 8% / 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--primary) / 0.35);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .faq-visual { order: -1; }
  .faq-img-wrap { aspect-ratio: 16/9; }
  .section-head--start { text-align: center; align-items: center; }
}

/* ===== TEAM HOME SECTION ===== */
#team-home { padding: 5rem 0; }
.team-home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 900px) { .team-home-grid { grid-template-columns: repeat(4, 1fr); } }
.team-home-card { border-radius: 1.25rem; overflow: hidden; padding: 0; }
.team-home-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.team-home-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.team-home-card:hover .team-home-img-wrap img { transform: scale(1.05); }
.team-home-actions {
  position: absolute;
  top: .75rem;
  inset-inline-end: .75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all .3s ease;
}
.team-home-card:hover .team-home-actions { opacity: 1; transform: translateX(0); }
.team-home-body { padding: 1rem 1.25rem 1.25rem; }
.team-home-dept { font-size: .75rem; color: hsl(var(--primary)); font-weight: 700; margin-bottom: .35rem; }
.team-home-body h3 { font-size: 1rem; font-weight: 800; margin: 0 0 .25rem; }
.team-home-body p { font-size: .85rem; color: hsl(var(--muted-foreground)); margin: 0; }

/* ===== TEAM ACTION BUTTONS ===== */
.team-action-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: hsl(var(--background) / 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid hsl(var(--primary) / 0.4);
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--primary));
  transition: all .25s;
}
.team-action-btn:hover { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.team-action-btn svg { width: 16px; height: 16px; }

/* ===== TEAM PAGE CARD ACTIONS ===== */
.entry-card-image { position: relative; overflow: hidden; }
.team-card-actions {
  position: absolute;
  top: .75rem;
  inset-inline-end: .75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  opacity: 0;
  transform: translateX(8px);
  transition: all .3s ease;
  z-index: 2;
}
.entry-card:hover .team-card-actions { opacity: 1; transform: translateX(0); }

/* ===== PERFORMANCE: image defaults ===== */
img { content-visibility: auto; }

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
  .hero-content .slide-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .slide-actions { flex-direction: column; gap: .75rem; }
  .slide-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .about-grid { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .why-us-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .stories-grid { grid-template-columns: 1fr !important; }
  .vm-grid { grid-template-columns: 1fr !important; }
  .values-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .section-head { text-align: center; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-stat { display: none; }
  .slider-controls { bottom: .75rem; }
  .team-home-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* ===== ADMIN THEME MATCH ===== */
:root {
  --admin-gold: #c9a227;
  --admin-gold-light: #e6bc41;
  --admin-dark: #0d1117;
  --admin-darker: #090c10;
  --admin-card: #161b22;
  --admin-border: rgba(201,162,39,.18);
}

/* ===== STORY IMAGE CARDS (hover overlay) ===== */
#stories { padding: 5rem 0; }
.story-img-card {
  border-radius: var(--radius);
  overflow: hidden;
}
.sic-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
}
.sic-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--transition-smooth);
}
.story-img-card:hover .sic-img-wrap img { transform: scale(1.07); }
.sic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(220,35%,6%,.95) 0%, hsla(220,25%,10%,.55) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.25rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}
.story-img-card:hover .sic-overlay {
  opacity: 1;
  transform: translateY(0);
}
.sic-kicker {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: hsl(var(--primary));
  text-transform: uppercase;
  margin-bottom: .5rem;
  display: block;
}
.sic-overlay h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: hsl(var(--foreground));
  margin: 0 0 .5rem;
  line-height: 1.4;
}
.sic-overlay p {
  font-size: .82rem;
  color: hsl(var(--muted-foreground));
  margin: 0 0 1rem;
  line-height: 1.65;
}
.sic-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 700;
  color: hsl(var(--primary));
  text-decoration: none;
  transition: gap .2s ease;
}
.sic-btn:hover { gap: .6rem; color: hsl(var(--primary-glow)); }

/* ===== BLOG HOME SECTION ===== */
#blog-home { padding: 5rem 0; }
.blog-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .blog-home-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-home-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-home-card {
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--transition-smooth), box-shadow .3s ease;
}
.blog-home-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.blog-home-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}
.blog-home-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--transition-smooth);
}
.blog-home-card:hover .blog-home-img-wrap img { transform: scale(1.05); }
.blog-home-cat {
  position: absolute;
  top: .75rem;
  inset-inline-start: .75rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: .7rem;
  font-weight: 800;
  padding: .25rem .65rem;
  border-radius: 999px;
}
.blog-home-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}
.blog-home-body h3 {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
  margin: 0;
}
.blog-home-body h3 a {
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: color .2s;
}
.blog-home-body h3 a:hover { color: hsl(var(--primary)); }
.blog-home-body > p {
  font-size: .84rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
  line-height: 1.7;
}
.blog-home-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid hsl(var(--border));
  font-size: .78rem;
  color: hsl(var(--muted-foreground));
}
.blog-home-link {
  color: hsl(var(--primary));
  text-decoration: none;
  font-weight: 700;
  font-size: .82rem;
  transition: color .2s;
  white-space: nowrap;
}
.blog-home-link:hover { color: hsl(var(--primary-glow)); }

/* ===== APPOINTMENT PAGE ===== */
.appt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 860px) { .appt-grid { grid-template-columns: 1fr; } }

.appt-form-panel,
.appt-info-panel {
  padding: 2rem 2rem 2.5rem;
}

.appt-panel-badge {
  display: inline-flex;
  margin-bottom: 1.1rem;
}
.appt-panel-badge span {
  background: hsl(var(--primary) / 0.12);
  border: 1px solid hsl(var(--primary) / 0.28);
  color: hsl(var(--primary));
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem 1rem;
  border-radius: 999px;
}

.appt-panel-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 1.5rem;
  line-height: 1.4;
  color: hsl(var(--foreground));
}

/* alerts */
.appt-alert {
  border-radius: .75rem;
  padding: .875rem 1rem;
  margin-bottom: 1.25rem;
  font-size: .875rem;
  line-height: 1.7;
}
.appt-success {
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  color: #34d399;
}
.appt-error {
  background: rgba(220,38,38,.1);
  border: 1px solid rgba(220,38,38,.3);
  color: #f87171;
}

/* form grid */
.appt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .875rem;
  margin-bottom: 1.5rem;
}
.appt-field.appt-full { grid-column: 1 / -1; }

.appt-field input,
.appt-field select,
.appt-field textarea {
  width: 100%;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: .875rem;
  color: hsl(var(--foreground));
  font-family: 'Tajawal', system-ui, sans-serif;
  font-size: .95rem;
  padding: .85rem 1.1rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.appt-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left .85rem center;
  padding-inline-start: 2.5rem;
}
.appt-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.75;
}
.appt-field input::placeholder,
.appt-field textarea::placeholder {
  color: hsl(var(--muted-foreground));
  opacity: .65;
}
.appt-field input:focus,
.appt-field select:focus,
.appt-field textarea:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15);
}

.appt-submit { width: 100%; }

/* info panel */
.appt-info-desc {
  font-size: .9rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.9;
  margin: 0 0 1.5rem;
}

.appt-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin: 0 0 2rem;
  padding: 0;
}
.appt-features li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  line-height: 1.7;
  color: hsl(var(--foreground));
}
.appt-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.14);
  border: 1px solid hsl(var(--primary) / 0.3);
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--primary));
  font-size: .7rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: .15rem;
}

.appt-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.appt-stat {
  background: hsl(var(--muted) / 0.5);
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.1rem .75rem;
  text-align: center;
}
.appt-stat strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: hsl(var(--primary));
  margin-bottom: .3rem;
  line-height: 1;
}
.appt-stat span {
  font-size: .73rem;
  color: hsl(var(--muted-foreground));
}

/* responsive */
@media (max-width: 560px) {
  .appt-form-grid { grid-template-columns: 1fr; }
  .appt-form-panel, .appt-info-panel { padding: 1.5rem 1.25rem 2rem; }
  .appt-panel-title { font-size: 1.25rem; }
}

/* ============================================================
   SERVICES PAGE REDESIGN (.svs-*)
   ============================================================ */
.svs-list { padding: 3rem 0 4.5rem; }

.svs-card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  transition: border-color .35s, box-shadow .35s;
}
.svs-card:hover {
  border-color: hsl(var(--primary) / 0.4);
  box-shadow: 0 24px 60px -20px hsl(var(--primary) / 0.22);
}
@media (min-width: 900px) {
  .svs-card { grid-template-columns: 1.05fr 1fr; }
  .svs-card.svs-flip > .svs-visual { order: 2; }
  .svs-card.svs-flip > .svs-body  { order: 1; }
}
.svs-visual {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
@media (min-width: 900px) { .svs-visual { min-height: 520px; } }
.svs-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.svs-card:hover .svs-visual img { transform: scale(1.04); }
.svs-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to left, hsl(var(--card)) 0%, hsl(var(--card) / 0.45) 28%, transparent 52%);
  pointer-events: none;
}
.svs-card.svs-flip .svs-visual::after {
  background: linear-gradient(to right, hsl(var(--card)) 0%, hsl(var(--card) / 0.45) 28%, transparent 52%);
}
@media (max-width: 899px) {
  .svs-visual::after { background: linear-gradient(to top, hsl(var(--card)) 0%, transparent 55%); }
  .svs-card.svs-flip .svs-visual::after { background: linear-gradient(to top, hsl(var(--card)) 0%, transparent 55%); }
}
.svs-num {
  position: absolute;
  top: 1.1rem;
  inset-inline-start: 1.1rem;
  font-size: .82rem;
  font-weight: 900;
  color: hsl(var(--primary));
  background: hsl(var(--background) / 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid hsl(var(--primary) / 0.4);
  border-radius: 999px;
  padding: .25rem .8rem;
  z-index: 3;
  letter-spacing: .05em;
}
.svs-visual-badges {
  position: absolute;
  bottom: 1.25rem;
  inset-inline-start: 1.25rem;
  inset-inline-end: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  z-index: 3;
}
.svs-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .85rem;
  border-radius: 999px;
  font-size: .71rem;
  font-weight: 700;
  background: hsl(var(--background) / 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--primary) / 0.32);
  color: hsl(var(--primary));
}
.svs-badge svg { width: 13px; height: 13px; }
.svs-body {
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 899px) { .svs-body { padding: 1.75rem 1.5rem 2rem; } }
.svs-tag {
  display: inline-flex;
  padding: .3rem .9rem;
  border-radius: 999px;
  font-size: .71rem;
  font-weight: 700;
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary) / 0.35);
  background: hsl(var(--primary) / 0.07);
  width: fit-content;
  margin-bottom: .875rem;
}
.svs-body h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: .875rem;
}
.svs-body > p {
  font-size: .9rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.svs-notice {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: hsl(var(--primary) / 0.07);
  border: 1px solid hsl(var(--primary) / 0.22);
  border-radius: .875rem;
  padding: .875rem 1.1rem;
  margin-bottom: 1.5rem;
}
.svs-notice-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: hsl(var(--primary) / 0.15);
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--primary));
  flex-shrink: 0;
}
.svs-notice-icon svg { width: 17px; height: 17px; }
.svs-notice h4 { font-size: .8rem; font-weight: 800; color: hsl(var(--primary)); margin: 0 0 .2rem; }
.svs-notice p { font-size: .77rem; color: hsl(var(--muted-foreground)); line-height: 1.65; margin: 0; }
.svs-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem .65rem;
}
@media (max-width: 500px) { .svs-features { grid-template-columns: 1fr; } }
.svs-features li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .84rem;
  color: hsl(var(--foreground) / 0.88);
  line-height: 1.45;
  padding: .5rem .65rem;
  border-radius: .6rem;
  background: hsl(var(--secondary) / 0.4);
  transition: background .2s;
}
.svs-features li:hover { background: hsl(var(--primary) / 0.08); }
.svs-features li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: hsl(var(--primary));
  flex-shrink: 0;
}

/* ============================================================
   SERVICE DETAILS PAGE (.sd-*)
   ============================================================ */
.sd-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sd-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(var(--background)) 0%, hsl(var(--background) / 0.88) 30%, hsl(var(--background) / 0.52) 65%, hsl(var(--background) / 0.28) 100%);
}
.sd-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 3.5rem;
}
.sd-hero-inner .breadcrumb { margin-bottom: 1.5rem; }
.sd-hero-inner .section-badge { display: inline-block; margin-bottom: 1.1rem; }
.sd-hero-inner h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: .875rem;
  max-width: 720px;
}
.sd-hero-inner > p {
  font-size: .97rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.9;
  margin-bottom: 1.75rem;
  max-width: 620px;
}
.sd-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.sd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 0 4rem;
}
@media (min-width: 900px) { .sd-grid { grid-template-columns: 1fr 340px; align-items: start; } }
.sd-intro { padding: 2rem 2.25rem 2.25rem; margin-bottom: 1.5rem; }
.sd-intro-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.sd-intro-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: hsl(var(--primary) / 0.14);
  border: 1px solid hsl(var(--primary) / 0.3);
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--primary));
  font-size: 1rem;
  flex-shrink: 0;
}
.sd-intro-head h2 { font-size: 1.2rem; font-weight: 800; margin: 0; }
.sd-intro-lead { font-size: .9rem; color: hsl(var(--muted-foreground)); line-height: 1.9; margin-bottom: 1.25rem; }
.sd-highlights { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.sd-highlights li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .88rem;
  line-height: 1.55;
  padding: .6rem .875rem;
  border-radius: .75rem;
  background: hsl(var(--secondary) / 0.4);
  border: 1px solid hsl(var(--border) / 0.5);
  transition: border-color .2s, background .2s;
}
.sd-highlights li:hover { border-color: hsl(var(--primary) / 0.3); background: hsl(var(--primary) / 0.06); }
.sd-highlights li::before {
  content: "";
  width: 20px; height: 20px;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.14);
  border: 1px solid hsl(var(--primary) / 0.3);
  color: hsl(var(--primary));
  font-size: .65rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  /* checkmark via background-image */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' fill='none' stroke='%23c9a227' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.sd-tabs-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 600px) { .sd-tabs-grid { grid-template-columns: 1fr 1fr; } }
.sd-tab-card { padding: 1.75rem 1.5rem; }
.sd-tab-num { display: block; font-size: 2.25rem; font-weight: 900; color: hsl(var(--primary) / 0.18); line-height: 1; margin-bottom: .5rem; }
.sd-tab-card h3 { font-size: .98rem; font-weight: 800; color: hsl(var(--primary)); margin-bottom: .6rem; }
.sd-tab-card > p { font-size: .84rem; color: hsl(var(--muted-foreground)); line-height: 1.8; margin-bottom: .875rem; }
.sd-tab-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .45rem; }
.sd-tab-list li {
  font-size: .84rem; line-height: 1.6;
  padding-inline-start: 1.1rem; position: relative;
  color: hsl(var(--foreground) / 0.85);
}
.sd-tab-list li::before {
  content: "";
  position: absolute; inset-inline-start: 0; top: .58rem;
  width: .45rem; height: .45rem;
  border-radius: 50%; background: hsl(var(--primary));
}
.sd-gallery { padding: 1.75rem; margin-top: 1.5rem; }
.sd-gallery h3 { font-size: 1rem; font-weight: 800; margin-bottom: 1rem; }
.sd-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.sd-gallery-item { display: block; border-radius: .75rem; overflow: hidden; aspect-ratio: 1; }
.sd-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.sd-gallery-item:hover img { transform: scale(1.06); }
.sd-sidebar { display: flex; flex-direction: column; gap: 1.1rem; position: sticky; top: 5.5rem; }
.sd-cta-card { padding: 1.75rem 1.5rem; text-align: center; }
.sd-cta-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: hsl(var(--primary) / 0.14);
  border: 1px solid hsl(var(--primary) / 0.3);
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--primary));
  margin: 0 auto .875rem;
}
.sd-cta-icon svg { width: 26px; height: 26px; }
.sd-cta-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .4rem; }
.sd-cta-card > p { font-size: .82rem; color: hsl(var(--muted-foreground)); line-height: 1.7; margin-bottom: 1.25rem; }
.sd-cta-btn { width: 100%; display: flex; justify-content: center; margin-bottom: .75rem; }
.sd-phone-btn {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  width: 100%; padding: .7rem; border-radius: .875rem;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground)); text-decoration: none;
  font-size: .85rem; font-weight: 700;
  transition: border-color .2s, color .2s; margin-bottom: .5rem; direction: ltr;
}
.sd-phone-btn svg { width: 16px; height: 16px; }
.sd-phone-btn:hover { border-color: hsl(var(--primary) / 0.45); color: hsl(var(--primary)); }
.sd-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  width: 100%; padding: .7rem; border-radius: .875rem;
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.28);
  color: #25d366; text-decoration: none;
  font-size: .85rem; font-weight: 700;
  transition: background .2s, border-color .2s;
}
.sd-wa-btn svg { width: 16px; height: 16px; }
.sd-wa-btn:hover { background: rgba(37,211,102,.18); border-color: rgba(37,211,102,.5); }
.sd-conf-card { padding: 1.25rem 1.4rem; display: flex; flex-direction: column; gap: .7rem; }
.sd-conf-row { display: flex; align-items: center; gap: .65rem; font-size: .84rem; color: hsl(var(--foreground) / 0.85); line-height: 1.4; }
.sd-conf-dot { width: 8px; height: 8px; border-radius: 50%; background: hsl(var(--primary)); flex-shrink: 0; }
.sd-other-svs { padding: 1.4rem 1.25rem; }
.sd-other-svs h3 {
  font-size: .75rem; font-weight: 800; color: hsl(var(--muted-foreground));
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: .875rem; padding-bottom: .75rem; border-bottom: 1px solid hsl(var(--border));
}
.sd-other-svs ul { list-style: none; padding: 0; margin: 0; }
.sd-other-svs li a {
  display: flex; align-items: center; gap: .55rem;
  padding: .7rem .75rem; border-radius: .75rem;
  font-size: .86rem; color: hsl(var(--muted-foreground));
  text-decoration: none; transition: background .2s, color .2s, border-color .2s;
  border: 1px solid transparent; line-height: 1.45;
}
.sd-other-svs li a svg { width: 14px; height: 14px; flex-shrink: 0; opacity: .5; }
.sd-other-svs li a:hover,
.sd-other-svs li a.is-active {
  background: hsl(var(--primary) / 0.08);
  border-color: hsl(var(--primary) / 0.25);
  color: hsl(var(--primary));
}
.sd-other-svs li a.is-active svg { opacity: 1; }
@media (max-width: 899px) {
  .sd-sidebar { position: static; }
  .sd-hero { min-height: 420px; }
  .sd-hero-inner { padding-top: 5rem; padding-bottom: 2.5rem; }
}
@media (max-width: 560px) {
  .sd-tabs-grid { grid-template-columns: 1fr; }
  .sd-gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ========================================================
   Form Success State (.form-sent)
   ======================================================== */
.form-sent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  gap: 1.25rem;
  min-height: 320px;
  animation: fadeInUp .45s ease both;
}
.form-sent__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.12);
  border: 2px solid hsl(var(--primary) / 0.35);
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--primary));
}
.form-sent__icon svg { width: 36px; height: 36px; }
.form-sent h3 { font-size: 1.35rem; font-weight: 700; margin: 0; }
.form-sent p { color: hsl(var(--muted-foreground)); max-width: 420px; margin: 0; line-height: 1.65; }

/* ========================================================
   Gallery Grid (.glr-*)
   ======================================================== */
.glr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .glr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .glr-grid { grid-template-columns: 1fr; } }

.glr-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  cursor: pointer;
  padding: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}
.glr-item:hover { transform: scale(1.02); box-shadow: 0 12px 40px hsl(220 25% 4% / .5); }
.glr-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.glr-item:hover img { transform: scale(1.06); }

.glr-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: hsl(220 25% 4% / 0);
  transition: background .25s ease;
}
.glr-overlay svg {
  width: 40px; height: 40px;
  color: hsl(var(--primary));
  opacity: 0;
  transform: scale(.7);
  transition: opacity .25s ease, transform .25s ease;
  filter: drop-shadow(0 2px 8px hsl(220 25% 4% / .8));
}
.glr-item:hover .glr-overlay { background: hsl(220 25% 4% / .45); }
.glr-item:hover .glr-overlay svg { opacity: 1; transform: scale(1); }

/* ========================================================
   Lightbox (.lbx)
   ======================================================== */
.lbx {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  animation: lbxFadeIn .2s ease both;
}
.lbx[hidden] { display: none; }
@keyframes lbxFadeIn { from { opacity: 0; } to { opacity: 1; } }

.lbx-backdrop {
  position: absolute; inset: 0;
  backdrop-filter: blur(20px) saturate(.6);
  -webkit-backdrop-filter: blur(20px) saturate(.6);
  background: hsl(220 25% 4% / .75);
}

.lbx-stage {
  position: relative; z-index: 2;
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lbx-img {
  max-width: 100%; max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 32px 80px hsl(220 25% 4% / .8);
  object-fit: contain;
  opacity: 0;
  transition: opacity .3s ease;
}
.lbx-img.lbx-img--loaded { opacity: 1; }

.lbx-close {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid hsl(var(--primary) / .3);
  background: hsl(220 25% 6% / .8);
  color: hsl(var(--foreground));
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.lbx-close:hover { background: hsl(var(--primary) / .15); border-color: hsl(var(--primary)); }
.lbx-close svg { width: 20px; height: 20px; }

.lbx-arrow {
  position: absolute; z-index: 3; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid hsl(var(--primary) / .3);
  background: hsl(220 25% 6% / .8);
  color: hsl(var(--foreground));
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.lbx-arrow:hover {
  background: hsl(var(--primary) / .2);
  border-color: hsl(var(--primary));
  transform: translateY(-50%) scale(1.08);
}
.lbx-arrow svg { width: 22px; height: 22px; }
.lbx-prev { right: 16px; }
.lbx-next { left: 16px; }

.lbx-counter {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  background: hsl(220 25% 6% / .8);
  border: 1px solid hsl(var(--primary) / .2);
  color: hsl(var(--foreground));
  font-size: 13px; font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: .05em;
}
