/* =====================================================
   Dr. Malak Tamer Mikhail - Main Stylesheet
   Luxury Law Firm Design | Arabic RTL + English LTR
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cairo:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* ===== VARIABLES ===== */
:root {
  --gold:        #B8973A;
  --gold-light:  #D4AE5A;
  --gold-dark:   #8A6E28;
  --gold-pale:   #EFE4C4;
  --cream:       #FAF7F2;
  --beige:       #F0EAD6;
  --beige-dark:  #E5D9BE;
  --dark:        #1A1209;
  --dark2:       #252015;
  --dark3:       #312B1C;
  --muted:       #6B6350;
  --muted-light: #9C9080;
  --white:       #FFFFFF;
  --border:      rgba(184,151,58,0.2);
  --border-med:  rgba(184,151,58,0.35);
  --shadow-sm:   0 2px 12px rgba(26,18,9,0.06);
  --shadow-md:   0 8px 32px rgba(26,18,9,0.10);
  --shadow-lg:   0 20px 60px rgba(26,18,9,0.14);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --font-ar:     'Cairo', sans-serif;
  --font-en:     'Cormorant Garamond', 'Playfair Display', serif;
  --font-body:   'Cairo', sans-serif;
  --transition:  all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.lang-ar { direction: rtl; text-align: right; }
body.lang-en { direction: ltr; text-align: left; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ===== TYPOGRAPHY ===== */
.lang-ar h1, .lang-ar h2, .lang-ar h3, .lang-ar h4 { font-family: var(--font-ar); }
.lang-en h1, .lang-en h2, .lang-en h3 { font-family: var(--font-en); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* ===== SECTION LABELS ===== */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--beige); border: 1px solid var(--border-med);
  border-radius: 20px; padding: 6px 18px;
  font-size: 11px; font-weight: 700; color: var(--gold-dark);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px;
}
.section-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); display: block; flex-shrink: 0;
}
.section-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700; line-height: 1.35; color: var(--dark);
}
.section-subtitle {
  font-size: 15px; color: var(--muted); line-height: 2; margin-top: 12px;
  max-width: 600px;
}
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 12px auto 0; }
.gold-line {
  width: 50px; height: 2px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 18px 0;
}
.section-header.centered .gold-line { margin: 18px auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600; font-family: var(--font-body);
  border: none; transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white); box-shadow: 0 4px 16px rgba(184,151,58,0.3);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,58,0.4); }
.btn-outline {
  background: transparent; color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--beige); border-color: var(--gold-dark); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--gold-dark); }
.btn-sm { padding: 9px 18px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; padding: 0 40px;
}
.logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; flex-shrink: 0;
}
.logo-mark {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px; font-weight: 700;
  font-family: var(--font-ar); flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(184,151,58,0.3);
}
.logo-text .name-ar { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.logo-text .name-en { font-size: 10px; color: var(--muted-light); letter-spacing: 1px; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 13px; color: var(--dark2); padding: 8px 12px;
  border-radius: var(--radius-sm); font-weight: 500; transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-dark); background: var(--beige); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switcher {
  border: 1px solid var(--border-med); background: transparent;
  color: var(--gold-dark); padding: 8px 16px;
  border-radius: var(--radius-sm); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; transition: var(--transition);
}
.lang-switcher:hover { background: var(--beige); border-color: var(--gold); }

/* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.hamburger span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.mobile-nav {
  display: none; position: fixed; top: 76px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 24px; z-index: 999; box-shadow: var(--shadow-md);
}
.mobile-nav a { display: block; padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--dark); border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; }

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -60px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,151,58,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--beige); border: 1px solid var(--border-med);
  border-radius: 20px; padding: 7px 18px; margin-bottom: 28px;
  font-size: 11px; color: var(--gold-dark); font-weight: 700; letter-spacing: 1px;
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.9)} }
.hero-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700; line-height: 1.3; color: var(--dark); margin-bottom: 10px;
}
.hero-title .gold { color: var(--gold-dark); }
.hero-title .italic { font-style: italic; color: var(--gold); }
.hero-subtitle { font-size: 14px; color: var(--muted); line-height: 2.1; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.trust-item { text-align: center; }
.trust-num { font-size: 26px; font-weight: 700; color: var(--gold-dark); }
.trust-label { font-size: 11px; color: var(--muted); font-weight: 500; }
.hero-image { position: relative; }
.hero-img-frame {
  background: linear-gradient(160deg, var(--beige), var(--cream));
  border-radius: var(--radius-xl); height: 420px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-med);
  overflow: hidden; position: relative;
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder {
  text-align: center; color: var(--muted-light);
}
.hero-img-placeholder svg { width: 80px; height: 80px; opacity: 0.25; margin: 0 auto 12px; }
.hero-img-placeholder p { font-size: 12px; }
.hero-badge-float {
  position: absolute; bottom: -16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 14px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
}
.lang-ar .hero-badge-float { right: 24px; }
.lang-en .hero-badge-float { left: 24px; }
.float-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--beige); display: flex; align-items: center; justify-content: center; }
.float-icon svg { width: 18px; height: 18px; fill: var(--gold-dark); }
.float-text .num { font-size: 18px; font-weight: 700; color: var(--gold-dark); line-height: 1; }
.float-text .label { font-size: 10px; color: var(--muted); }

/* ===== ABOUT BAND ===== */
.about-band { background: var(--dark2); padding: 64px 0; }
.about-band-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: center; }
.about-band-label { font-size: 11px; color: var(--gold-light); letter-spacing: 2px; font-weight: 700; text-transform: uppercase; margin-bottom: 14px; }
.about-band-title { font-size: 26px; font-weight: 700; color: var(--white); line-height: 1.4; }
.about-band-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 2.2; }
.about-band .gold-line { background: linear-gradient(90deg, var(--gold-light), var(--gold)); }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 22px;
  text-align: center; transition: var(--transition);
}
.why-card:hover { border-color: var(--gold-light); background: var(--beige); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  margin: 0 auto 18px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(184,151,58,0.25);
}
.why-icon svg { width: 24px; height: 24px; fill: white; }
.why-card h3 { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.why-card p { font-size: 12px; color: var(--muted); line-height: 1.9; }

/* ===== VISION / MISSION ===== */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vm-card {
  padding: 36px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: var(--transition);
}
.vm-card.vision { background: var(--dark2); }
.vm-card.mission { background: var(--cream); }
.vm-card:hover { box-shadow: var(--shadow-md); }
.vm-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(184,151,58,0.15); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; border: 1px solid rgba(184,151,58,0.3);
}
.vm-icon svg { width: 24px; height: 24px; fill: var(--gold-light); }
.vm-card.mission .vm-icon svg { fill: var(--gold-dark); }
.vm-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; color: var(--gold-light); }
.vm-card.mission .vm-label { color: var(--gold-dark); }
.vm-title { font-size: 20px; font-weight: 700; margin-bottom: 14px; color: var(--white); }
.vm-card.mission .vm-title { color: var(--dark); }
.vm-text { font-size: 13px; line-height: 2.2; color: rgba(255,255,255,0.65); }
.vm-card.mission .vm-text { color: var(--muted); }

/* ===== COUNTERS ===== */
.counters-section { background: var(--beige); padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.counter-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 20px; text-align: center;
  transition: var(--transition);
}
.counter-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.counter-num { font-size: 38px; font-weight: 700; color: var(--gold-dark); line-height: 1; }
.counter-plus { font-size: 22px; color: var(--gold); }
.counter-label { font-size: 12px; color: var(--muted); margin-top: 10px; font-weight: 500; }

/* ===== CARDS (books, articles, events) ===== */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.book-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition); background: var(--white);
}
.book-card:hover { border-color: var(--gold-light); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.book-cover {
  background: linear-gradient(160deg, var(--beige), var(--cream));
  height: 200px; display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-spine-placeholder {
  width: 80px; height: 120px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 3px 10px 10px 3px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 4px 6px 20px rgba(26,18,9,0.2);
}
.book-spine-placeholder svg { width: 32px; height: 32px; fill: rgba(255,255,255,0.75); }
.book-info { padding: 20px; }
.book-info h3 { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.5; margin-bottom: 8px; }
.book-info p { font-size: 11px; color: var(--muted); line-height: 1.8; }
.book-meta { display: flex; gap: 12px; margin-top: 12px; align-items: center; }
.book-year { font-size: 11px; color: var(--gold-dark); font-weight: 600; background: var(--beige); padding: 3px 10px; border-radius: 20px; }
.book-link { font-size: 12px; color: var(--gold-dark); font-weight: 700; margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.book-link:hover { color: var(--gold); gap: 10px; }

.article-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); background: var(--white); }
.article-card:hover { border-color: var(--gold-light); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.article-image { height: 180px; overflow: hidden; background: var(--beige); display: flex; align-items: center; justify-content: center; }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.article-card:hover .article-image img { transform: scale(1.05); }
.article-image svg { width: 44px; height: 44px; fill: var(--border); }
.article-body { padding: 20px; }
.article-cat { font-size: 10px; color: var(--gold-dark); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.article-body h3 { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.5; margin-bottom: 8px; }
.article-body p { font-size: 12px; color: var(--muted); line-height: 1.8; }
.article-meta { display: flex; gap: 10px; margin-top: 14px; font-size: 11px; color: var(--muted-light); align-items: center; flex-wrap: wrap; }
.article-meta .sep { color: var(--border-med); }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--dark3); padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info-label { font-size: 11px; color: var(--gold-light); letter-spacing: 2px; font-weight: 700; text-transform: uppercase; margin-bottom: 14px; }
.contact-info-title { font-size: 26px; font-weight: 700; color: var(--white); line-height: 1.4; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.detail-icon-wrap {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%;
  background: rgba(184,151,58,0.12); border: 1px solid rgba(184,151,58,0.25);
  display: flex; align-items: center; justify-content: center;
}
.detail-icon-wrap svg { width: 18px; height: 18px; fill: var(--gold-light); }
.detail-label { font-size: 10px; color: rgba(255,255,255,0.4); font-weight: 600; margin-bottom: 2px; }
.detail-val { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500; }
.contact-map { margin-top: 28px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(184,151,58,0.2); }
.contact-map iframe { display: block; width: 100%; height: 220px; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-xl); padding: 36px; }
.form-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { margin-bottom: 14px; }
.form-group label { font-size: 11px; color: var(--muted); font-weight: 700; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select {
  border: 1.5px solid var(--border-med); border-radius: var(--radius-md);
  padding: 11px 14px; font-size: 13px; font-family: var(--font-body);
  color: var(--dark); background: var(--cream); transition: var(--transition);
  outline: none; resize: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-submit { width: 100%; }

/* ===== FOOTER ===== */
.site-footer { background: #0D0B06; padding: 64px 0 28px; border-top: 1px solid rgba(184,151,58,0.15); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 2; max-width: 260px; }
.footer-col h4 { font-size: 11px; color: var(--gold-light); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 10px; transition: var(--transition); }
.footer-col a:hover { color: var(--gold-light); padding-inline-start: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.25); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold-light); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 28px; z-index: 9999; cursor: pointer;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35); transition: var(--transition);
  text-decoration: none;
}
.lang-ar .wa-float { left: 28px; }
.lang-en .wa-float { right: 28px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--cream); padding: 72px 0 64px;
  border-bottom: 1px solid var(--border); text-align: center;
}
.page-hero h1 { font-size: clamp(26px,3.5vw,40px); font-weight: 700; color: var(--dark); margin: 14px 0; }
.page-hero p { font-size: 14px; color: var(--muted); max-width: 580px; margin: 0 auto; line-height: 2; }

/* ===== ABOUT PAGE ===== */
.about-profile-grid { display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: start; }
.profile-image-wrap {
  background: var(--beige); border-radius: var(--radius-xl);
  aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); overflow: hidden;
}
.profile-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.qual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.qual-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px; }
.qual-card .qual-label { font-size: 10px; color: var(--gold-dark); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.qual-card ul { list-style: none; }
.qual-card ul li { font-size: 12px; color: var(--muted); padding: 5px 0; border-bottom: 1px solid var(--border); line-height: 1.6; }
.qual-card ul li:last-child { border-bottom: none; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: var(--transition); }
.team-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar { width: 90px; height: 90px; border-radius: 50%; background: var(--beige); margin: 0 auto 16px; overflow: hidden; border: 3px solid var(--border-med); display: flex; align-items: center; justify-content: center; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar svg { width: 40px; height: 40px; fill: var(--muted-light); }
.team-name { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-title { font-size: 12px; color: var(--gold-dark); font-weight: 600; }

/* ===== BOOK SINGLE ===== */
.book-single-grid { display: grid; grid-template-columns: 320px 1fr; gap: 56px; }
.star-rating { display: flex; gap: 4px; }
.star { font-size: 20px; color: var(--border); cursor: pointer; transition: var(--transition); }
.star.filled, .star:hover, .star:hover ~ .star { color: var(--gold); }
.reviews-list { margin-top: 32px; }
.review-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.review-item:last-child { border-bottom: none; }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.review-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.review-date { font-size: 11px; color: var(--muted-light); }
.review-text { font-size: 13px; color: var(--muted); line-height: 1.9; }
.admin-reply { margin-top: 12px; padding: 14px 16px; background: var(--beige); border-radius: var(--radius-md); border-inline-start: 3px solid var(--gold); }
.admin-reply-label { font-size: 11px; font-weight: 700; color: var(--gold-dark); margin-bottom: 4px; }
.admin-reply-text { font-size: 12px; color: var(--muted); line-height: 1.8; }

/* ===== ARTICLE SINGLE ===== */
.article-content { font-size: 15px; line-height: 2.2; color: var(--dark2); }
.article-content h2 { font-size: 22px; font-weight: 700; margin: 32px 0 14px; color: var(--dark); }
.article-content h3 { font-size: 18px; font-weight: 700; margin: 24px 0 10px; color: var(--dark); }
.article-content p { margin-bottom: 16px; }
.article-content blockquote { border-inline-start: 4px solid var(--gold); padding: 16px 24px; margin: 24px 0; background: var(--cream); border-radius: 0 var(--radius-md) var(--radius-md) 0; font-style: italic; color: var(--muted); }
.article-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; }
.sidebar-card h4 { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.share-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.share-btn { padding: 8px 14px; border-radius: var(--radius-sm); font-size: 11px; font-weight: 600; border: 1px solid var(--border); background: var(--white); color: var(--muted); transition: var(--transition); cursor: pointer; }
.share-btn:hover { border-color: var(--gold); color: var(--gold-dark); }

/* ===== EVENTS ===== */
.event-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.event-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.event-image { height: 180px; background: var(--beige); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.event-image img { width: 100%; height: 100%; object-fit: cover; }
.event-image svg { width: 44px; height: 44px; fill: var(--border); }
.event-body { padding: 20px; }
.event-type { font-size: 10px; color: var(--gold-dark); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.event-body h3 { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.5; margin-bottom: 8px; }
.event-meta { display: flex; gap: 14px; margin-top: 12px; font-size: 11px; color: var(--muted-light); }
.event-status { display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 10px; font-weight: 700; margin-top: 10px; }
.event-status.upcoming { background: rgba(184,151,58,0.12); color: var(--gold-dark); border: 1px solid rgba(184,151,58,0.25); }
.event-status.past { background: var(--beige); color: var(--muted); border: 1px solid var(--border); }

/* ===== ALERTS / MESSAGES ===== */
.alert { padding: 14px 18px; border-radius: var(--radius-md); font-size: 13px; margin-bottom: 18px; }
.alert-success { background: rgba(39,174,96,0.1); border: 1px solid rgba(39,174,96,0.3); color: #1e7e34; }
.alert-error { background: rgba(220,53,69,0.1); border: 1px solid rgba(220,53,69,0.3); color: #a71d2a; }
.alert-info { background: rgba(184,151,58,0.1); border: 1px solid var(--border-med); color: var(--gold-dark); }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: var(--dark2); padding: 64px 0; }
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.newsletter-inner p { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 28px; line-height: 1.8; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; border: 1px solid rgba(184,151,58,0.3); background: rgba(255,255,255,0.06); color: white; padding: 12px 16px; border-radius: var(--radius-md); font-family: var(--font-body); font-size: 13px; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--gold); }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--muted-light); margin-bottom: 28px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gold-dark); }
.breadcrumb .sep { color: var(--border-med); }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.pagination a, .pagination span { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; border: 1px solid var(--border); color: var(--muted); transition: var(--transition); }
.pagination a:hover { border-color: var(--gold); color: var(--gold-dark); }
.pagination .active { background: var(--gold); border-color: var(--gold); color: white; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: var(--dark2); border-top: 1px solid rgba(184,151,58,0.2);
  padding: 16px 40px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.8; flex: 1; }
.cookie-banner .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-band-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .about-profile-grid { grid-template-columns: 1fr; }
  .book-single-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .cookie-banner { flex-direction: column; padding: 16px 20px; }
  .lang-ar .wa-float, .lang-en .wa-float { right: 20px; left: auto; }
  .hero-badge-float { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 0 50px; }
  .section { padding: 56px 0; }
  .team-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .qual-grid { grid-template-columns: 1fr; }
}
