/* ═══════════════════════════════════════════════
   SOUSAN HITT — Language, Culture, Mystery
   ═══════════════════════════════════════════════ */

:root {
  --bg-base:      #0e0818;
  --surface-1:    #180c2a;
  --surface-2:    #221040;
  --text-main:    #f5ecdd;
  --text-muted:   #d0bea0;
  --accent-primary:   #b89030;
  --accent-secondary: #e8d490;
  --border-soft:  rgba(200,165,70,0.28);
  --shadow-soft:  0 22px 55px rgba(5,2,10,0.55);
  --font-display: "Cormorant Garamond","Cinzel",serif;
  --font-body:    "Source Sans 3","Manrope",sans-serif;
}

/* ─── HERO ──────────────────────────────── */
.hero-sousan {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 6rem; padding-bottom: 4rem;
  overflow: hidden; isolation: isolate;
  background:
    radial-gradient(ellipse 90% 60% at 15% 10%, rgba(180,140,50,0.14), transparent 40%),
    radial-gradient(ellipse 70% 60% at 85% 15%, rgba(120,50,160,0.2),  transparent 38%),
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(80,30,110,0.25), transparent 55%),
    linear-gradient(160deg, #080415 0%, #14082a 45%, #1e0c3a 100%);
}

/* Animated star particles canvas */
#sousanCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* Arabic-script watermark, slowly drifting */
.calligraphy-watermark {
  position: absolute;
  top: 8%; right: -2%; left: auto;
  z-index: 1; pointer-events: none; user-select: none;
  font-family: "Amiri", serif;
  font-size: clamp(4rem, 14vw, 12rem);
  font-weight: 700;
  color: rgba(230,210,140,0.042);
  letter-spacing: 0.06em;
  white-space: nowrap;
  direction: rtl;
  animation: calliDrift 22s ease-in-out infinite alternate;
}
@keyframes calliDrift {
  0%   { transform: translateX(0)   translateY(0)  rotate(0deg);   }
  100% { transform: translateX(-30px) translateY(15px) rotate(1.5deg); }
}

/* Geometric mandala-like rings */
.ring {
  position: absolute; pointer-events: none; border-radius: 50%;
  border: 1px solid rgba(200,165,70,0.1);
  animation: ringExpand ease-out forwards, ringFade ease-in-out infinite alternate;
}
.ring-1 { width: 420px; height: 420px; top: -60px;  right: -80px;  animation-duration: 18s, 7s; }
.ring-2 { width: 260px; height: 260px; top:  40px;  right:  60px;  border-color: rgba(130,60,170,0.1); animation-duration: 14s, 9s; animation-delay: -3s; }
.ring-3 { width: 160px; height: 160px; top: 110px;  right: 140px;  border-color: rgba(200,165,70,0.07); animation-duration: 10s, 5s; animation-delay: -6s; }
.ring-4 { width: 380px; height: 380px; bottom: -50px; left: -100px; animation-duration: 16s, 8s; animation-delay: -4s; }
.ring-5 { width: 200px; height: 200px; bottom:  50px; left:   40px; border-color: rgba(130,60,170,0.08); animation-duration: 12s, 6s; animation-delay: -8s; }

@keyframes ringFade {
  0%   { opacity: 0.4; transform: scale(0.97); }
  100% { opacity: 1.0; transform: scale(1.03); }
}

/* Inner concentric rings on .ring-1 */
.ring-1::before,
.ring-1::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,165,70,0.06);
}
.ring-1::before { inset: 30px; }
.ring-1::after  { inset: 60px; }

/* Vertical light column */
.light-column {
  position: absolute; top: 0; bottom: 0;
  left: 66%; width: 1px; pointer-events: none; z-index: 2;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(200,165,70,0.1) 20%,
    rgba(200,165,70,0.22) 50%,
    rgba(200,165,70,0.1) 80%,
    transparent 100%
  );
  filter: blur(8px);
  transform: rotate(5deg);
  animation: colPulse 6s ease-in-out infinite alternate;
}
@keyframes colPulse {
  0%   { opacity: 0.35; }
  100% { opacity: 0.9;  }
}

.hero-sousan .hero-inner { position: relative; z-index: 5; }

.hero-sousan h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 6vw, 6.5rem);
  font-weight: 700; line-height: 1.08; color: #f5ecdd;
  text-shadow: 0 0 80px rgba(200,165,70,0.2);
}

.hero-location {
  margin-top: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: rgba(232,212,144,0.7);
  letter-spacing: 0.04em;
}

.language-badges {
  margin-top: 1.3rem;
  display: flex; flex-wrap: wrap; gap: 0.65rem;
}
.language-badges span {
  border: 1px solid rgba(200,165,70,0.3);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  background: rgba(0,0,0,0.25);
  color: rgba(232,212,144,0.85);
  font-family: "Amiri", serif;
  font-size: 1rem;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.language-badges span:hover {
  background: rgba(200,165,70,0.12);
  box-shadow: 0 0 24px rgba(200,165,70,0.25);
  transform: translateY(-2px);
}

/* ─── SECTION BACKGROUNDS ──────────────── */
.sousan-dark {
  background:
    radial-gradient(circle at 15% 50%, rgba(200,165,70,0.04), transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(100,40,140,0.06), transparent 40%),
    linear-gradient(180deg, rgba(22,12,40,0.7), rgba(12,6,22,0.85));
  position: relative;
}
.sousan-dark::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle 1px at center, rgba(200,165,70,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.sousan-dark > .container { position: relative; z-index: 1; }

/* ─── SERVICE CARDS ─────────────────────── */
.services-grid .service-card {
  background: linear-gradient(145deg, rgba(30,14,50,0.88), rgba(22,10,40,0.9));
  border-color: rgba(200,165,70,0.18);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.services-grid .service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,165,70,0.4);
  box-shadow: 0 14px 40px rgba(200,165,70,0.1);
}
.services-grid .service-card h3 { color: rgba(232,212,144,0.9); }
.services-grid .service-card p  { color: rgba(208,190,160,0.6); }

/* ─── LANGUAGE PANELS ────────────────────── */
.language-panels { grid-template-columns: repeat(3,1fr); }
.language-panel {
  border: 1px solid rgba(200,165,70,0.2);
  border-radius: 1rem;
  background: rgba(255,255,255,0.03);
  padding: 1.4rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.language-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(200,165,70,0.12);
  border-color: rgba(200,165,70,0.38);
}
.language-panel h3 {
  font-family: "Amiri", serif;
  color: rgba(232,212,144,0.9);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 0.4rem;
}
.language-panel p { color: var(--text-muted); font-size: 0.95rem; }

/* ─── CLIENT PILLS ────────────────────────── */
.client-grid { grid-template-columns: repeat(4,1fr); }
.client-pill {
  padding: 0.8rem 1rem; text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(200,165,70,0.25);
  background: linear-gradient(120deg, rgba(200,165,70,0.1), rgba(50,25,75,0.8));
  color: rgba(232,212,144,0.85); font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}
.client-pill:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(200,165,70,0.15); }

/* ─── CTA ────────────────────────────────── */
.cta-box {
  background: linear-gradient(145deg, rgba(32,16,55,0.97), rgba(22,10,42,0.92));
  border-color: rgba(200,165,70,0.25);
}
.cta-box .btn-primary {
  background: linear-gradient(120deg, #edd89a, #b89030);
  color: #1c1005;
}

/* Portrait */
#about-sousan .portrait-placeholder {
  background: linear-gradient(145deg, #2a1842, #4c2e60 54%, #b09050);
}

@media (max-width: 980px) { .language-panels,.client-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 680px)  { .language-panels,.client-grid { grid-template-columns: 1fr; } .ring { display: none; } }
