/* ============================================================
   د. راكان حداد | أفضل طبيب صدرية في عبدون - عمان
   Premium Medical Website | Full RTL Arabic
   ============================================================ */

/* === VARIABLES === */
:root {
  --navy: #002347;
  --navy-dark: #001830;
  --navy-light: #003870;
  --navy-mid: #04447a;
  --gold: #c5a059;
  --gold-light: #d4b878;
  --gold-dark: #a8853a;
  --gold-bg: #fdf8ee;
  --white: #ffffff;
  --bg: #f7f9fc;
  --bg-2: #eef2f8;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #dde4ed;
  --shadow-xs: 0 1px 4px rgba(0,35,71,0.06);
  --shadow-sm: 0 4px 16px rgba(0,35,71,0.08);
  --shadow: 0 8px 32px rgba(0,35,71,0.12);
  --shadow-lg: 0 20px 60px rgba(0,35,71,0.18);
  --shadow-gold: 0 8px 32px rgba(197,160,89,0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Cairo', sans-serif;
  --header-h: 80px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  direction: rtl;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  color: var(--navy);
  line-height: 1.4;
  font-weight: 900;
}
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p { font-size: 1rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 100px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* === SECTION HEADER === */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  background: var(--gold-bg);
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(197,160,89,0.3);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.section-title { color: var(--navy); margin-bottom: 16px; }
.section-title span { color: var(--gold); }
.section-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.gold-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-full);
  margin: 20px auto 0;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(197,160,89,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(197,160,89,0.45);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-wa {
  background: linear-gradient(135deg, #25d366, #1fad54);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-wa:hover {
  background: linear-gradient(135deg, #1fad54, #178d43);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

/* === HEADER === */
#header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: var(--transition);
}
#header.transparent {
  background: transparent;
}
#header.solid {
  background: rgba(0,35,71,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 32px;
}
.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
  white-space: nowrap;
}
.logo-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(197,160,89,0.08);
}
.header-cta { padding: 10px 24px; font-size: 0.9rem; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 45%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 80%, rgba(197,160,89,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 80% 20%, rgba(0,56,112,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197,160,89,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,160,89,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197,160,89,0.12);
  border: 1px solid rgba(197,160,89,0.3);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.hero-label::before { content: ''; display: block; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 16px;
}
.hero-title .highlight {
  color: var(--gold);
  position: relative;
}
.hero-name {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 20px;
  display: block;
}
.hero-desc {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(197,160,89,0.2);
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Hero Image */
.hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50% 40% 60% 30% / 40% 60% 30% 70%;
  border: 2px solid rgba(197,160,89,0.2);
  animation: morphRing 12s ease-in-out infinite;
}
.hero-img-ring-2 {
  position: absolute;
  inset: -40px;
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  border: 1px solid rgba(197,160,89,0.12);
  animation: morphRing 16s ease-in-out infinite reverse;
}
.hero-img-frame {
  width: 380px;
  height: 460px;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  overflow: hidden;
  border: 4px solid rgba(197,160,89,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(197,160,89,0.15);
  position: relative;
  z-index: 1;
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-badge {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow);
  z-index: 2;
  min-width: 160px;
}
.hero-badge-num { font-size: 1.6rem; font-weight: 900; color: var(--navy); line-height: 1; }
.hero-badge-text { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.hero-badge-2 {
  position: absolute;
  top: 40px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-gold);
  z-index: 2;
  min-width: 140px;
}
.hero-badge-2 .hero-badge-num { color: var(--white); }
.hero-badge-2 .hero-badge-text { color: rgba(255,255,255,0.85); }

/* === STATS STRIP === */
.stats-strip {
  background: var(--navy);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(197,160,89,0.2);
}
.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  display: block;
}

/* === CARDS === */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(197,160,89,0.3);
}
.card-padded { padding: 32px; }

/* === SERVICES === */
.services-section { background: var(--bg); }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon-wrap { background: rgba(197,160,89,0.15); }
.service-card:hover h3, .service-card:hover p { color: var(--white); }
.service-card > * { position: relative; z-index: 1; }
.service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,35,71,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.service-icon { font-size: 2rem; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--navy); transition: var(--transition); }
.service-card p { font-size: 0.9rem; color: var(--text-muted); transition: var(--transition); }

/* === ABOUT SECTION === */
.about-section { background: var(--white); }
.about-img-wrap { position: relative; }
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(197,160,89,0.2);
}
.about-img img { width: 100%; height: 500px; object-fit: cover; object-position: top; }
.about-badge {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid rgba(197,160,89,0.2);
}
.about-badge-num { font-size: 2rem; font-weight: 900; color: var(--gold); display: block; }
.about-badge-text { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-top: 2px; }
.about-content { padding-right: 20px; }
.about-list { margin: 24px 0; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}
.about-list li:last-child { border-bottom: none; }
.about-list li::before {
  content: '✓';
  min-width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.cred-item {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border-right: 3px solid var(--gold);
}
.cred-year { font-size: 0.78rem; color: var(--gold); font-weight: 700; }
.cred-title { font-size: 0.88rem; color: var(--navy); font-weight: 700; margin-top: 2px; }
.cred-sub { font-size: 0.78rem; color: var(--text-muted); }

/* === FEATURES / WHY === */
.why-section { background: linear-gradient(145deg, var(--navy-dark), var(--navy)); }
.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(197,160,89,0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(197,160,89,0.4);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.feature-card h3 { color: var(--gold); margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 36px; position: relative; }
.cta-banner .btn-navy { background: var(--navy); }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* === BLOG HOMEPAGE CARDS === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(0,35,71,0.13); border-color: rgba(197,160,89,0.45); }
.blog-card-no-img {
  background: linear-gradient(135deg, var(--navy) 0%, #003a6b 100%);
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  position: relative;
  flex-shrink: 0;
}
.blog-card-no-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #e8c97a);
}
.blog-card-body { padding: 22px 24px 18px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(197,160,89,0.1);
  border: 1px solid rgba(197,160,89,0.28);
  border-radius: 20px;
  padding: 3px 11px;
  margin-bottom: 11px;
  letter-spacing: 0.3px;
}
.blog-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.6; }
.blog-card p { font-size: 0.9rem; color: var(--text-muted); flex: 1; line-height: 1.75; margin-bottom: 14px; }
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.blog-meta-read { color: var(--gold); font-weight: 700; font-size: 0.82rem; }
.blog-card-img { height: 200px; overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.contact-info-card h2 { color: var(--gold); margin-bottom: 8px; }
.contact-info-card .sub { color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(197,160,89,0.15);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(197,160,89,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item h4 { color: var(--gold); font-size: 0.85rem; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: rgba(255,255,255,0.8); font-size: 0.95rem; transition: var(--transition-fast); }
.contact-item a:hover { color: var(--gold); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition-fast);
  outline: none;
  direction: rtl;
}
.form-control:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(197,160,89,0.1); }
textarea.form-control { min-height: 140px; resize: vertical; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  margin-top: 28px;
  height: 280px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(197,160,89,0.06);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}
.hour-day { color: rgba(255,255,255,0.7); }
.hour-time { color: var(--gold); font-weight: 700; }

/* === FAQ === */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition-fast);
}
.faq-item:hover { border-color: rgba(197,160,89,0.4); }
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-xs); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  user-select: none;
  gap: 16px;
}
.faq-q .faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(0,35,71,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
  color: var(--navy);
}
.faq-item.open .faq-q .faq-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-a-inner { padding: 0 24px 20px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; }
.faq-item.open .faq-a { max-height: 500px; }

/* === SEO PAGE STYLES === */
.seo-hero {
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.seo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(197,160,89,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(197,160,89,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.seo-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.seo-hero h1 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.seo-hero h1 span { color: var(--gold); }
.seo-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.seo-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.seo-breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition-fast); }
.seo-breadcrumb a:hover { color: var(--gold); }
.seo-breadcrumb span { color: var(--gold); }

.seo-content { background: var(--bg); }
.seo-article {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  line-height: 1.9;
}
.seo-article h2 { font-size: 1.4rem; color: var(--navy); margin: 36px 0 16px; padding-bottom: 10px; border-bottom: 2px solid rgba(197,160,89,0.2); }
.seo-article h2:first-child { margin-top: 0; }
.seo-article h3 { font-size: 1.15rem; color: var(--navy); margin: 24px 0 12px; }
.seo-article p { color: var(--text-muted); font-size: 0.98rem; }
.seo-article strong { color: var(--navy); }
.seo-article ul { margin: 16px 0 16px 0; padding-right: 0; }
.seo-article ul li {
  padding: 8px 0 8px 0;
  padding-right: 28px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.96rem;
  border-bottom: 1px solid var(--border);
}
.seo-article ul li:last-child { border-bottom: none; }
.seo-article ul li::before {
  content: '◆';
  position: absolute;
  right: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 14px;
}
.info-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 28px 0;
  border-right: 5px solid var(--gold);
}
.info-box h3 { color: var(--gold); margin-bottom: 10px; font-size: 1.1rem; }
.info-box p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin: 0; }
.seo-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.sidebar-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.sidebar-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition-fast);
}
.sidebar-contact a:hover { color: var(--navy); }
.sidebar-contact a:last-child { border-bottom: none; }
.sidebar-contact .icon { font-size: 1.1rem; width: 32px; text-align: center; }
.seo-two-col { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }

/* === FOOTER === */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(197,160,89,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-col h4 {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(197,160,89,0.2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a, .footer-col ul li {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--gold); padding-right: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-contact-item:last-child { border-bottom: none; }
.footer-contact-item .fi { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.84rem;
}
.footer-bottom a { color: var(--gold); }

/* === FIXED CTAs === */
.fixed-ctas {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 999;
}
.fixed-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  pointer-events: all;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.fixed-cta svg { width: 20px; height: 20px; fill: currentColor; }
.fixed-call { background: var(--navy); }
.fixed-call:hover { background: var(--navy-light); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.fixed-wa { background: #25d366; }
.fixed-wa:hover { background: #1fad54; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.4); }

/* === PAGE HERO (non-home) === */
.page-hero {
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  padding: 130px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: var(--transition-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }

/* === BLOG LISTING PAGE === */
.blog-sidebar { position: sticky; top: 100px; }
.blog-two-col { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.blog-articles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.blog-list-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.blog-list-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,35,71,0.11); border-color: rgba(197,160,89,0.45); }
.blog-list-thumb {
  background: linear-gradient(135deg, var(--navy) 0%, #003a6b 100%);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  position: relative;
  flex-shrink: 0;
}
.blog-list-thumb::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #e8c97a);
}
.blog-list-body { padding: 18px 20px 16px; flex: 1; display: flex; flex-direction: column; }
.blog-list-body h3 { font-size: 0.97rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; line-height: 1.55; }
.blog-list-body p { font-size: 0.87rem; color: var(--text-muted); flex: 1; line-height: 1.72; margin-bottom: 12px; }
.blog-list-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.blog-list-footer-read { color: var(--gold); font-weight: 700; font-size: 0.8rem; }
/* legacy selectors kept for fallback */
.blog-list-img-placeholder { background: linear-gradient(135deg, var(--navy), var(--navy-light)); height: 120px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }

/* === ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(30px); transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
@keyframes morphRing {
  0% { border-radius: 50% 40% 60% 30% / 40% 60% 30% 70%; }
  33% { border-radius: 60% 30% 70% 40% / 30% 70% 40% 60%; }
  66% { border-radius: 30% 70% 40% 60% / 70% 40% 60% 30%; }
  100% { border-radius: 50% 40% 60% 30% / 40% 60% 30% 70%; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.float { animation: float 5s ease-in-out infinite; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-img-wrap { display: none; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .seo-two-col { grid-template-columns: 1fr; }
  .seo-sidebar { position: static; }
  .blog-two-col { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}
@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .section { padding: 60px 0; }
  .nav { display: none; position: fixed; top: var(--header-h); right: 0; left: 0; background: var(--navy-dark); flex-direction: column; padding: 20px; gap: 4px; z-index: 999; border-top: 1px solid rgba(197,160,89,0.15); }
  .nav.open { display: flex; animation: fadeInUp 0.25s ease; }
  .nav-link { padding: 14px 20px; border-radius: var(--radius-sm); font-size: 1rem; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item::after { display: none; }
  .seo-article { padding: 28px 20px; }
  .contact-info-card { padding: 32px 24px; }
  .contact-form-wrap { padding: 28px 20px; }
  .blog-articles-grid { grid-template-columns: 1fr; }
  .blog-list-card { grid-template-columns: 1fr; }
  .fixed-ctas { padding: 0 12px; }
  .fixed-cta { font-size: 0.85rem; padding: 12px 16px; }
  .hero-img-frame { width: 280px; height: 340px; }
  .cred-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-stats { gap: 16px; }
}

/* === UTILITY === */
.hidden { display: none; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 36px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 36px; }
.pt-0 { padding-top: 0 !important; }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); }
.bg-light { background: var(--bg); }
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }
.gold-border-right { border-right: 4px solid var(--gold); padding-right: 16px; }
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.tag {
  display: inline-block;
  background: var(--bg-2);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}
.tag-gold { background: var(--gold-bg); color: var(--gold-dark); border-color: rgba(197,160,89,0.3); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ============================================================
   DROPDOWN — التخصصات
   ============================================================ */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  /* same look as .nav-link */
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--gold);
  background: rgba(197,160,89,0.08);
}
/* dropdown panel — display:none keeps it fully out of layout */
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 210px;
  background: #001830;
  border: 1px solid rgba(197,160,89,0.25);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  z-index: 9999;
}
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 7px;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-item:hover {
  background: rgba(197,160,89,0.13);
  color: var(--gold);
}
/* Mobile accordion */
@media (max-width: 768px) {
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    justify-content: space-between;
  }
  .nav-dropdown-menu {
    display: none;
    position: static;
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    min-width: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-item {
    padding: 11px 36px;
    font-size: 0.92rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-dropdown-item:last-child { border-bottom: none; }
}

/* ============================================================
   BLOG ARTICLE PAGE
   ============================================================ */
.blog-article { color: var(--text); line-height: 2; }
.blog-article h2 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin: 32px 0 12px; padding-top: 8px; border-top: 1px solid var(--border); }
.blog-article h2:first-child { border-top: none; margin-top: 0; }
.blog-article p { color: var(--text); line-height: 1.95; margin-bottom: 14px; font-size: 0.97rem; }
.blog-article ul { margin: 10px 0 20px 0; padding-right: 20px; display: flex; flex-direction: column; gap: 8px; }
.blog-article ul li { color: var(--text); line-height: 1.7; font-size: 0.95rem; }
.blog-article ul li::marker { color: var(--gold); }
.blog-article strong { color: var(--navy); font-weight: 700; }
.blog-article-icon { font-size: 3.5rem; margin-bottom: 24px; display: block; }

/* ============================================================
   LIGHT BG fix
   ============================================================ */
.light-bg, .section.bg-light { background: var(--bg) !important; }
