/* ============================================
   DR. NOUR ALHASAN — ULTIMATE LUXURY EDITION
   ============================================ */

:root {
  --bg-0: #0a0807;
  --bg-1: #110d0a;
  --bg-2: #1a1410;
  --bg-3: #221a14;
  --ink-0: #f5ebd9;
  --ink-1: #d4c4a8;
  --ink-2: #9a8b73;
  --ink-3: #6b5d4a;
  --gold-1: #f3d9a8;
  --gold-2: #d4af7a;
  --gold-3: #a07a4f;
  --gold-4: #6b4f2f;
  --line: rgba(212, 175, 122, 0.15);
  --line-2: rgba(212, 175, 122, 0.3);
  --serif: 'Cormorant Garamond', 'Tajawal', serif;
  --sans: 'Tajawal', system-ui, sans-serif;
  --sans-en: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --hand: 'Caveat', cursive;
  --container: 1280px;
  --ease: cubic-bezier(0.77, 0, 0.175, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg-0);
  color: var(--ink-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--gold-2); color: var(--bg-0); }

a { color: inherit; text-decoration: none; transition: all 0.3s var(--ease); }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
em { font-style: italic; color: var(--gold-1); font-family: var(--serif); font-weight: 500; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 880px; }
.section { padding: 140px 0; position: relative; }
.section-dark { background: var(--bg-1); }

/* ============== PRELOADER ============== */
#preloader {
  position: fixed; inset: 0; background: var(--bg-0);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo { width: 120px; height: 120px; margin: 0 auto 30px; }
.preloader-logo svg { width: 100%; height: 100%; }
.pulse-ring { transform-origin: center; transform-box: fill-box; animation: pulseRing 2s ease-out infinite; }
.pulse-ring-2 { animation-delay: 0.5s; }
.pulse-ring-3 { animation-delay: 1s; }
@keyframes pulseRing {
  0% { transform: scale(0.7); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.preloader-text {
  font-family: var(--serif); font-size: 28px;
  color: var(--gold-1); letter-spacing: 6px;
  font-style: italic;
}
.preloader-text span { display: inline-block; opacity: 0; animation: fadeUp 0.6s var(--ease) forwards; }
.preloader-text span:nth-child(1) { animation-delay: 0.3s; }
.preloader-text span:nth-child(2) { animation-delay: 0.5s; }
.preloader-text span:nth-child(3) { animation-delay: 0.7s; }
.preloader-bar { width: 220px; height: 1px; background: var(--bg-3); margin: 30px auto 0; overflow: hidden; }
.preloader-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold-3), var(--gold-1)); width: 0; animation: fillBar 1.8s var(--ease) 0.3s forwards; }
@keyframes fillBar { to { width: 100%; } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ============== CUSTOM CURSOR ============== */
.cursor-dot, .cursor-ring {
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px; height: 6px; background: var(--gold-1);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-1);
  transition: transform 0.1s var(--ease);
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hover { width: 70px; height: 70px; border-color: var(--gold-1); }
@media (max-width: 1024px) { .cursor-dot, .cursor-ring { display: none; } }

/* ============== NEURAL CANVAS ============== */
#neural-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ============== FLOATING CONTACTS ============== */
.floating-contacts {
  position: fixed; left: 30px; bottom: 30px; z-index: 90;
  display: flex; flex-direction: column; gap: 14px;
}
.float-btn {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.5);
  transition: all 0.3s var(--ease);
  overflow: hidden;
}
.float-btn svg { width: 24px; height: 24px; }
.float-btn:hover { transform: translateY(-4px) scale(1.08); }
.float-btn::before {
  content: ''; position: absolute; inset: -3px;
  border-radius: 50%;
  background: inherit;
  filter: blur(12px);
  opacity: 0.6;
  z-index: -1;
}
.float-phone { background: linear-gradient(135deg, #d4af7a, #a07a4f); }
.float-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.float-email { background: linear-gradient(135deg, #ea4335, #c5221f); }
.float-book { background: linear-gradient(135deg, #f3d9a8, #d4af7a); color: var(--bg-0); }

.ripple {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: ripple 2s ease-out infinite;
  z-index: -1;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}
.check-anim {
  stroke-dasharray: 20; stroke-dashoffset: 20;
  animation: drawCheck 2s ease-in-out infinite;
}
@keyframes drawCheck {
  0%, 100% { stroke-dashoffset: 20; }
  50% { stroke-dashoffset: 0; }
}
@media (max-width: 768px) { .floating-contacts { left: 20px; bottom: 20px; gap: 10px; } .float-btn { width: 50px; height: 50px; } }

/* ============== NAVIGATION ============== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}
#navbar.scrolled {
  background: rgba(10, 8, 7, 0.88);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.brand-svg { width: 100%; height: 100%; }
.brand-svg text { animation: brandGlow 4s ease-in-out infinite; }
@keyframes brandGlow {
  0%, 100% { fill: #f3d9a8; filter: drop-shadow(0 0 4px rgba(243, 217, 168, 0.4)); }
  50% { fill: #fff; filter: drop-shadow(0 0 12px rgba(243, 217, 168, 0.8)); }
}
.brand-text-wrap { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--serif);
  font-size: 18px; font-weight: 500;
  color: var(--ink-0);
  font-style: italic;
  letter-spacing: 0.5px;
}
.brand-sub {
  font-family: var(--sans-en);
  font-size: 10px; letter-spacing: 1.5px;
  color: var(--gold-2);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}
.nav-links { list-style: none; display: flex; gap: 36px; }
.nav-links a {
  font-size: 14px; letter-spacing: 0.5px;
  color: var(--ink-1); position: relative;
  padding: 6px 0;
}
.nav-links a::before {
  content: attr(data-text);
  position: absolute; top: 100%; left: 0;
  color: var(--gold-1);
  overflow: hidden; white-space: nowrap;
  width: 0; transition: width 0.5s var(--ease);
}
.nav-links a:hover { color: var(--gold-1); }
.nav-links a:hover::before { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: var(--bg-0);
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 0 0 0 rgba(212, 175, 122, 0.3);
  animation: ctaPulse 2.5s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 122, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(212, 175, 122, 0); }
}
.nav-cta:hover { transform: translateY(-2px); }
.nav-cta svg { width: 16px; height: 16px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 1px; background: var(--ink-1); transition: all 0.3s; }

@media (max-width: 1024px) { .nav-links { display: none; } .nav-cta { display: none; } .nav-toggle { display: flex; } }

/* ============== HERO ============== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 122, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 122, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}
.hero-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--gold-3), transparent 70%); top: -200px; right: -100px; }
.hero-orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, var(--gold-4), transparent 70%); bottom: -150px; left: -100px; animation-delay: -10s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-2); font-weight: 500;
  grid-column: 1; margin-bottom: 30px;
}
.hero-eyebrow .line { width: 50px; height: 1px; background: linear-gradient(90deg, var(--gold-2), transparent); }

.hero-title {
  grid-column: 1;
  font-family: var(--serif);
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.9;
  font-weight: 400;
  color: var(--ink-0);
  margin-bottom: 40px;
  letter-spacing: -2px;
}
.hero-title-line { display: block; overflow: hidden; }
.hero-title .word {
  display: inline-block;
  opacity: 0; transform: translateY(100%);
  animation: wordIn 1.2s var(--ease) forwards;
}
.hero-title .word.gold {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.hero-title-line:nth-child(1) .word { animation-delay: 0.2s; }
.hero-title-line:nth-child(2) .word { animation-delay: 0.4s; }
.hero-title-line:nth-child(3) .word { animation-delay: 0.6s; }
@keyframes wordIn { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  grid-column: 1;
  font-size: 18px;
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1s forwards;
}
.hero-sub strong { color: var(--ink-0); font-weight: 600; }
.hero-sub em { font-weight: 500; }
.hero-actions {
  grid-column: 1;
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.2s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 100px;
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(-4px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: var(--bg-0);
  box-shadow: 0 10px 30px -10px rgba(212, 175, 122, 0.5);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -10px rgba(212, 175, 122, 0.7);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-0);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--gold-2);
  color: var(--gold-1);
  background: rgba(212, 175, 122, 0.05);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.5); }
.btn-whatsapp svg { color: white; }
.btn-full { width: 100%; justify-content: center; }
.btn-large { padding: 22px 44px; font-size: 17px; }

.hero-stats {
  grid-column: 1;
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.4s forwards;
}
.stat { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }
.stat-num {
  font-family: var(--serif);
  font-size: 48px; font-weight: 500;
  color: var(--gold-1);
  line-height: 1;
}
.stat-plus { color: var(--gold-2); font-size: 24px; font-weight: 300; }
.stat-label { width: 100%; font-size: 12px; letter-spacing: 2px; color: var(--ink-3); text-transform: uppercase; margin-top: 4px; }

/* Hero visual */
.hero-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 5;
  width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.brain-3d {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.brain-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  animation: rotate 30s linear infinite;
}
.brain-ring-1 { width: 80%; height: 80%; animation-duration: 40s; }
.brain-ring-2 { width: 90%; height: 90%; animation-duration: 30s; animation-direction: reverse; border-style: dashed; }
.brain-ring-3 { width: 100%; height: 100%; animation-duration: 50s; border-color: var(--line); }
@keyframes rotate { to { transform: rotate(360deg); } }

.brain-core {
  position: relative;
  width: 70%; height: 70%;
  display: flex; align-items: center; justify-content: center;
}
.brain-core-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle, var(--gold-2) 0%, transparent 60%);
  opacity: 0.3;
  filter: blur(30px);
  animation: corePulse 4s ease-in-out infinite;
}
@keyframes corePulse { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.5; } }
.brain-svg-hero { width: 100%; height: 100%; position: relative; z-index: 1; }
.synapse { stroke: var(--gold-2); stroke-width: 1; opacity: 0.4; }
.neuron-group circle { filter: drop-shadow(0 0 4px var(--gold-1)); }
.ecg-line { stroke-dasharray: 400; stroke-dashoffset: 400; animation: drawEcg 4s linear infinite; }
@keyframes drawEcg { to { stroke-dashoffset: -400; } }

.floating-label {
  position: absolute;
  background: rgba(17, 13, 10, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px; letter-spacing: 1px;
  color: var(--ink-1);
  display: flex; align-items: center; gap: 8px;
  animation: float 6s ease-in-out infinite;
}
.floating-label .dot {
  width: 6px; height: 6px;
  background: var(--gold-1);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-1);
  animation: dotBlink 1.5s ease-in-out infinite;
}
@keyframes dotBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.label-1 { top: 10%; right: 0; animation-delay: 0s; }
.label-2 { top: 50%; left: 0; animation-delay: -2s; }
.label-3 { bottom: 10%; right: 10%; animation-delay: -4s; }

.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 3px;
  color: var(--ink-3);
  z-index: 2;
}
.scroll-line { width: 1px; height: 50px; background: var(--line-2); position: relative; overflow: hidden; }
.scroll-dot {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 10px;
  background: var(--gold-1);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0% { top: -10px; } 100% { top: 50px; } }

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { grid-column: 1; grid-row: auto; max-width: 500px; margin: 0 auto; }
  .hero-title { font-size: clamp(56px, 14vw, 100px); }
}

/* ============== MARQUEE ============== */
.marquee {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
  overflow: hidden;
  position: relative; z-index: 2;
}
.marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-size: 32px; font-weight: 400;
  color: var(--ink-2);
  font-style: italic;
}
.marquee-dot { color: var(--gold-3); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============== SECTION HEADS ============== */
.section-label {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-2); font-weight: 500;
  margin-bottom: 24px;
}
.section-label .line { width: 50px; height: 1px; background: linear-gradient(90deg, var(--gold-2), transparent); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.section-head .section-label { justify-content: center; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--ink-0);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.section-sub { font-size: 17px; color: var(--ink-2); line-height: 1.7; }

/* ============== ABOUT ============== */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: center; }
.about-visual { position: relative; }
.about-portrait { position: relative; aspect-ratio: 4/5; }
.portrait-frame {
  position: relative; width: 100%; height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}
.portrait-img { width: 100%; height: 100%; position: relative; }
.portrait-img svg { width: 100%; height: 100%; }
.portrait-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 8, 7, 0.6) 100%);
  pointer-events: none;
}
.portrait-badge {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  background: var(--bg-0);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  animation: rotate 20s linear infinite;
}
.portrait-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.portrait-badge text {
  font-family: var(--sans-en);
  font-size: 11px;
  fill: var(--gold-2);
  letter-spacing: 2px;
}
.badge-center {
  position: relative; z-index: 1;
  font-family: var(--serif);
  font-size: 28px; font-weight: 500;
  color: var(--gold-1);
  font-style: italic;
  animation: rotate 20s linear infinite reverse;
}

.about-content .section-title { margin-bottom: 30px; }
.about-text { font-size: 16px; color: var(--ink-2); line-height: 1.8; margin-bottom: 20px; }
.about-text strong { color: var(--ink-0); font-weight: 600; }

.credentials { margin-top: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.credential {
  display: flex; gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: all 0.3s var(--ease);
  background: rgba(255, 255, 255, 0.01);
}
.credential:hover {
  border-color: var(--gold-3);
  transform: translateY(-4px);
  background: rgba(212, 175, 122, 0.04);
}
.credential-icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: rgba(212, 175, 122, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-1);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.credential-anim { animation: iconFloat 3s ease-in-out infinite; }
.credential:hover .credential-icon {
  background: var(--gold-2);
  color: var(--bg-0);
  transform: scale(1.1) rotate(-5deg);
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.credential-icon svg { width: 24px; height: 24px; }
.credential-title { font-size: 15px; font-weight: 600; color: var(--ink-0); margin-bottom: 4px; }
.credential-sub { font-size: 13px; color: var(--ink-3); }

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 80px; }
  .portrait-badge { bottom: -20px; right: 20px; }
}

/* ============== SERVICES ============== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
  position: relative;
  padding: 50px 40px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  opacity: 0;
  transform: translateY(40px);
}
.service-card[data-reveal].revealed { opacity: 1; transform: translateY(0); }
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-3);
  background: var(--bg-3);
}
.service-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold-3);
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.service-icon {
  width: 70px; height: 70px;
  margin-bottom: 30px;
  color: var(--gold-1);
  transition: all 0.4s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.15) rotate(8deg); color: var(--gold-2); }
.service-icon svg { width: 100%; height: 100%; }
.icon-pulse {
  transform-origin: center; transform-box: fill-box;
  animation: iconPulse 2s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.15); }
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink-0);
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-card p { font-size: 15px; color: var(--ink-2); line-height: 1.7; margin-bottom: 30px; }
.service-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 1px;
  color: var(--gold-2);
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}
.service-link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.service-card:hover .service-link svg { transform: translateX(-4px); }
.service-glow {
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(212, 175, 122, 0.15), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.service-card:hover .service-glow { opacity: 1; }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

/* ============== NSAIDs SECTION ============== */
.nsaids-section {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  overflow: hidden;
}
.nsaids-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(232, 90, 42, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(26, 58, 82, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(45, 138, 138, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.nsaids-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}
.nsaids-logo-big {
  margin-bottom: 30px;
  animation: float 8s ease-in-out infinite;
}
.nsaids-svg {
  width: 100%;
  max-width: 360px;
  filter: drop-shadow(0 20px 40px rgba(232, 90, 42, 0.2));
}
.nsaids-tagline {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-2); font-weight: 500;
  margin-bottom: 20px;
}
.tagline-line { width: 40px; height: 1px; background: linear-gradient(90deg, var(--gold-2), transparent); }
.nsaids-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--ink-0);
  margin-bottom: 24px;
}
.title-accent {
  background: linear-gradient(135deg, #e85a2a, #f4c4a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.nsaids-lead {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 20px;
}
.nsaids-highlight {
  font-size: 16px;
  color: var(--ink-0);
  padding: 16px 20px;
  background: rgba(212, 175, 122, 0.06);
  border-left: 3px solid var(--gold-2);
  border-radius: 4px;
  margin-bottom: 24px;
}
.nsaids-highlight strong { color: var(--gold-1); font-weight: 700; }

.nsaids-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-card {
  position: relative;
  padding: 30px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 0.4s var(--ease);
  opacity: 0; transform: translateY(40px);
}
.feature-card[data-reveal].revealed { opacity: 1; transform: translateY(0); }
.feature-card:hover {
  transform: translateY(-6px);
  border-color: #e85a2a;
  background: var(--bg-3);
}
.feature-num {
  font-family: var(--serif);
  font-size: 12px;
  color: #e85a2a;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.feature-icon {
  width: 48px; height: 48px;
  margin-bottom: 16px;
  color: #f4c4a8;
  background: rgba(232, 90, 42, 0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.feature-card:hover .feature-icon {
  background: #e85a2a;
  color: white;
  transform: scale(1.1) rotate(-5deg);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-0);
  margin-bottom: 8px;
}
.feature-card p { font-size: 14px; color: var(--ink-2); line-height: 1.6; }

.nsaids-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 80px 0;
  padding: 50px 40px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  position: relative; z-index: 1;
}
.nsaids-stat { text-align: center; }
.nsaids-stat-num {
  font-family: var(--serif);
  font-size: 48px; font-weight: 500;
  background: linear-gradient(135deg, #e85a2a, #f4c4a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.nsaids-stat-label {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--ink-2);
}

.nsaids-cta {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(232, 90, 42, 0.05), rgba(45, 138, 138, 0.05));
  border: 1px solid var(--line);
  border-radius: 20px;
  position: relative; z-index: 1;
}
.nsaids-cta h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink-0);
  margin-bottom: 16px;
  line-height: 1.3;
}
.nsaids-cta p {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}

@media (max-width: 1024px) {
  .nsaids-wrapper { grid-template-columns: 1fr; gap: 60px; }
  .nsaids-features { grid-template-columns: 1fr; }
  .nsaids-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nsaids-stats { grid-template-columns: 1fr 1fr; gap: 20px; padding: 30px 20px; }
  .nsaids-stat-num { font-size: 36px; }
}

/* ============== PROCESS ============== */
.process { position: relative; padding: 40px 0; }
.process-line {
  position: absolute;
  top: 50%; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), var(--line-2), transparent);
  z-index: 0;
}
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 1; }
.process-step {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-0);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 0.4s var(--ease);
  opacity: 0; transform: translateY(40px);
}
.process-step[data-reveal].revealed { opacity: 1; transform: translateY(0); }
.process-step:hover { transform: translateY(-8px); border-color: var(--gold-3); }
.step-num {
  width: 60px; height: 60px;
  margin: 0 auto 24px;
  border: 1px solid var(--gold-3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 24px; font-weight: 500;
  color: var(--gold-1);
  background: var(--bg-0);
  position: relative;
  animation: stepPulse 3s ease-in-out infinite;
}
@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 122, 0.3); }
  50% { box-shadow: 0 0 0 10px rgba(212, 175, 122, 0); }
}
.step-num::before {
  content: ''; position: absolute; inset: -6px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.process-step h4 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  color: var(--ink-0);
  margin-bottom: 12px;
}
.process-step p { font-size: 14px; color: var(--ink-2); line-height: 1.6; }

@media (max-width: 900px) { .process-steps { grid-template-columns: 1fr 1fr; } .process-line { display: none; } }
@media (max-width: 600px) { .process-steps { grid-template-columns: 1fr; } }

/* ============== TESTIMONIALS ============== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
  padding: 50px 40px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 0.4s var(--ease);
  position: relative;
  opacity: 0; transform: translateY(40px);
}
.testimonial-card[data-reveal].revealed { opacity: 1; transform: translateY(0); }
.testimonial-card:hover { border-color: var(--gold-3); transform: translateY(-6px); }
.quote-mark {
  font-family: var(--serif);
  font-size: 100px;
  color: var(--gold-3);
  line-height: 0.8;
  margin-bottom: 10px;
  opacity: 0.5;
}
.testimonial-card p { font-size: 16px; color: var(--ink-1); line-height: 1.7; margin-bottom: 24px; min-height: 100px; }
.testimonial-rating {
  color: var(--gold-1);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 20px;
  animation: starGlow 2s ease-in-out infinite;
}
@keyframes starGlow {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(243, 217, 168, 0.5)); }
  50% { filter: drop-shadow(0 0 8px rgba(243, 217, 168, 0.9)); }
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-4));
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-0);
  font-size: 18px; font-weight: 600;
  font-family: var(--serif);
}
.author-name { font-size: 15px; font-weight: 600; color: var(--ink-0); }
.author-role { font-size: 13px; color: var(--ink-3); }

@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

/* ============== BOOKING CALENDAR ============== */
.section-booking {
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
}
.booking-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.booking-calendar {
  padding: 30px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.5);
  opacity: 0; transform: translateY(40px);
}
.booking-calendar[data-reveal].revealed { opacity: 1; transform: translateY(0); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.calendar-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.calendar-header h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink-0);
}
.cal-nav {
  width: 40px; height: 40px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-1);
  transition: all 0.3s var(--ease);
}
.cal-nav:hover {
  border-color: var(--gold-2);
  color: var(--gold-1);
  background: rgba(212, 175, 122, 0.05);
  transform: scale(1.1);
}
.cal-nav svg { width: 18px; height: 18px; }
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.calendar-weekdays div {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 1px;
  padding: 8px 0;
}
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--ink-1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  position: relative;
  font-weight: 500;
}
.cal-day:hover:not(.disabled):not(.empty) {
  background: rgba(212, 175, 122, 0.1);
  color: var(--gold-1);
  transform: scale(1.05);
}
.cal-day.empty { cursor: default; }
.cal-day.disabled {
  color: var(--ink-3);
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}
.cal-day.today {
  border: 1px solid var(--line-2);
}
.cal-day.selected {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: var(--bg-0);
  font-weight: 700;
  box-shadow: 0 0 20px rgba(212, 175, 122, 0.4);
  animation: selectedPulse 2s ease-in-out infinite;
}
@keyframes selectedPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 122, 0.4); }
  50% { box-shadow: 0 0 30px rgba(212, 175, 122, 0.7); }
}
.cal-day.has-slots::after {
  content: ''; position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--gold-1);
  border-radius: 50%;
}
.calendar-legend {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-2);
}
.legend-item { display: flex; align-items: center; gap: 6px; }
.legend-item .dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-available { background: var(--gold-1); }
.dot-selected { background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); }
.dot-unavailable { background: var(--ink-3); }

.booking-form-wrap { opacity: 0; transform: translateY(40px); }
.booking-form-wrap[data-reveal].revealed { opacity: 1; transform: translateY(0); transition: opacity 0.6s var(--ease) 0.1s, transform 0.6s var(--ease) 0.1s); }
.booking-form {
  padding: 40px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.5);
  min-height: 600px;
  position: relative;
}
.form-step { display: none; }
.form-step.active { display: block; animation: stepIn 0.4s var(--ease); }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.step-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink-0);
  margin-bottom: 8px;
}
.step-sub {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 30px;
}
.selected-date-display {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 24px;
  color: var(--ink-1);
  font-size: 15px;
  transition: all 0.3s var(--ease);
}
.selected-date-display.has-date {
  border-color: var(--gold-2);
  background: rgba(212, 175, 122, 0.05);
  color: var(--ink-0);
}
.selected-date-display svg { width: 20px; height: 20px; color: var(--gold-1); }
.selected-date-display.has-date svg { animation: dateBounce 0.5s var(--ease); }
@keyframes dateBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.time-slot {
  padding: 12px 8px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-1);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-family: var(--sans-en);
}
.time-slot:hover:not(:disabled) {
  border-color: var(--gold-2);
  color: var(--gold-1);
  background: rgba(212, 175, 122, 0.05);
  transform: translateY(-2px);
}
.time-slot:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}
.time-slot.selected {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: var(--bg-0);
  border-color: var(--gold-1);
  box-shadow: 0 4px 12px rgba(212, 175, 122, 0.3);
}

.booking-summary {
  padding: 16px 20px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  display: none;
}
.booking-summary.has-data { display: block; }
.booking-summary h5 {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--gold-1);
  margin-bottom: 10px;
  font-weight: 500;
}
.booking-summary .summary-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.booking-summary .summary-row:last-child { border-bottom: none; }
.booking-summary .summary-row strong { color: var(--ink-0); font-weight: 600; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px; letter-spacing: 2px;
  color: var(--gold-2);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}
.req { color: #e85a2a; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-0);
  font-family: var(--sans);
  font-size: 15px;
  transition: all 0.3s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-2);
  background: var(--bg-0);
  box-shadow: 0 0 0 3px rgba(212, 175, 122, 0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-actions { display: flex; gap: 12px; }
.form-actions .btn { flex: 1; justify-content: center; }
.prev-step svg { transform: rotate(180deg); }
.prev-step:hover svg { transform: rotate(180deg) translateX(-4px); }

.form-success-step { text-align: center; padding: 20px 0; }
.success-icon { width: 80px; height: 80px; margin: 0 auto 24px; }
.success-circle {
  transform-origin: center; transform-box: fill-box;
  stroke-dasharray: 226; stroke-dashoffset: 226;
  animation: drawCircle 0.8s var(--ease) forwards;
}
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
.success-check {
  stroke-dasharray: 60; stroke-dashoffset: 60;
  animation: drawCheck 0.5s var(--ease) 0.7s forwards;
}
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.form-success-step h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink-0);
  margin-bottom: 12px;
}
.success-text {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.success-details {
  padding: 20px;
  background: var(--bg-1);
  border: 1px solid var(--gold-3);
  border-radius: 10px;
  margin-bottom: 24px;
  text-align: right;
}
.success-details .summary-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 14px;
}
.success-details .summary-row:last-child { border-bottom: none; }
.success-details strong { color: var(--ink-0); }

@media (max-width: 900px) {
  .booking-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
}

/* ============== FAQ ============== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  background: var(--bg-1);
}
.faq-item:hover { border-color: var(--gold-3); }
.faq-item[open] { border-color: var(--gold-2); }
.faq-item summary {
  padding: 24px 30px;
  font-size: 17px;
  color: var(--ink-0);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  font-family: var(--serif);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute;
  background: var(--gold-2);
  transition: all 0.3s var(--ease);
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.faq-icon::after { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-item p {
  padding: 0 30px 24px;
  color: var(--ink-2);
  line-height: 1.7;
  font-size: 15px;
}

/* ============== CONTACT ============== */
.contact-bg-pulse {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(212, 175, 122, 0.08), transparent 50%);
  pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; position: relative; z-index: 1; }
.contact-info .section-title { margin-bottom: 24px; }
.contact-text { font-size: 16px; color: var(--ink-2); line-height: 1.7; margin-bottom: 50px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
a.contact-item:hover { transform: translateX(-6px); }
.contact-item-animated::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 122, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
a.contact-item-animated:hover::before { transform: translateX(100%); }
.contact-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(212, 175, 122, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-1);
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s var(--ease);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-icon-phone { background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); color: var(--bg-0); }
.contact-icon-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); color: white; }
.contact-icon-email { background: linear-gradient(135deg, #ea4335, #c5221f); color: white; }
.contact-icon-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.contact-icon-facebook { background: linear-gradient(135deg, #1877f2, #0d4ea3); color: white; }
.contact-icon-location { background: linear-gradient(135deg, #4285f4, #1967d2); color: white; }

/* ============== LOCATION CARD WITH MAP ============== */
.location-card {
  position: relative;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  min-height: 220px;
  transition: all 0.4s var(--ease);
}
.location-card:hover {
  border-color: var(--gold-2);
  background: var(--bg-3);
}
.location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 122, 0.08), transparent 60%);
  pointer-events: none;
}
.location-info {
  display: flex; align-items: center; gap: 16px;
  position: relative; z-index: 1;
}
.location-map {
  position: relative;
  width: 100%; height: 200px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-1);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.amman-map {
  width: 100%; height: 100%;
  display: block;
  animation: mapGlow 4s ease-in-out infinite;
}
@keyframes mapGlow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(212, 175, 122, 0.3)); }
  50% { filter: drop-shadow(0 0 20px rgba(212, 175, 122, 0.7)); }
}
.location-map::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(10, 8, 7, 0.2));
  pointer-events: none;
  border-radius: 10px;
}
@media (max-width: 600px) {
  .location-card { grid-template-columns: 1fr; min-height: auto; }
  .location-map { height: 180px; }
}

.contact-item:hover .contact-icon { transform: scale(1.1) rotate(-8deg); }
.icon-ripple {
  position: absolute; inset: 0;
  border-radius: 12px;
  background: currentColor;
  opacity: 0;
  animation: iconRipple 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes iconRipple {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}
.email-anim { animation: emailMove 3s ease-in-out infinite; }
@keyframes emailMove {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(2px); }
}

.contact-label {
  font-size: 11px; letter-spacing: 2px;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-value { font-size: 15px; color: var(--ink-0); font-weight: 500; margin-bottom: 4px; }
.contact-action {
  font-size: 12px;
  color: var(--gold-2);
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s var(--ease);
}
a.contact-item:hover .contact-action { opacity: 1; transform: translateY(0); }

.contact-form {
  padding: 50px 40px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
.form-headline {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink-0);
  margin-bottom: 30px;
  text-align: center;
}
.form-success {
  margin-top: 20px;
  padding: 16px;
  background: rgba(212, 175, 122, 0.1);
  border: 1px solid var(--gold-3);
  border-radius: 8px;
  display: none;
  align-items: center; gap: 12px;
  color: var(--gold-1);
  font-size: 14px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============== FOOTER ============== */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  padding: 80px 0 30px;
  position: relative; z-index: 1;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 50px;
}
.footer-logo { display: flex; align-items: center; gap: 16px; }
.footer-svg { width: 60px; height: 60px; }
.footer-brand-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink-0);
  font-style: italic;
  font-weight: 500;
}
.footer-brand-sub {
  font-family: var(--sans-en);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold-2);
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-1);
  transition: all 0.3s var(--ease);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  border-color: var(--gold-2);
  color: var(--gold-1);
  background: rgba(212, 175, 122, 0.05);
  transform: translateY(-3px) rotate(-5deg);
}
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px; margin-bottom: 60px; }
.footer h5 {
  font-family: var(--serif);
  font-size: 18px; font-weight: 500;
  color: var(--ink-0);
  margin-bottom: 24px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; font-size: 14px; color: var(--ink-2); }
.footer a:hover { color: var(--gold-1); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--ink-3);
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-top { flex-direction: column; text-align: center; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============== RESPONSIVE ============== */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  #hero { padding: 100px 20px 60px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 36px; }
  .credentials { grid-template-columns: 1fr; }
  .marquee-track { font-size: 24px; }
  .brand-text-wrap { display: none; }
}
