﻿/* =============================================
   CYTOTEC UAE – Unified Stylesheet
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --navy:       #0b3357;
  --navy-dark:  #071f38;
  --teal:       #0b3357;
  --teal-light: #e6eef5;
  --gold:       #c49a3c;
  --gold-light: #fdf5e4;
  --white:      #ffffff;
  --bg:         #f8f9fb;
  --bg-light:   #f2f4f8;
  --text:       #1c2b3a;
  --text-body:  #374151;
  --text-muted: #6b7a8d;
  --border:     #dde3ec;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --shadow-sm:  0 2px 8px rgba(11,51,87,.08);
  --shadow-md:  0 8px 30px rgba(11,51,87,.12);
  --shadow-lg:  0 20px 60px rgba(11,51,87,.15);
  --transition: .25s ease;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Cairo', 'Tahoma', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.3; }

p { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section-pad { padding: 80px 0; }

.bg-light { background: var(--bg-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-lg { padding: .85rem 1.8rem; font-size: 1rem; }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  margin-top: .8rem;
}

.btn-whatsapp:hover { background: #1da851; border-color: #1da851; }

/* ---------- Section Head ---------- */
.section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  color: var(--navy-dark);
  position: relative;
  display: inline-block;
  padding-bottom: .6rem;
}

.section-head h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 55px;
  height: 3px;
  background: var(--teal);
  border-radius: 3px;
}

.section-head p { color: var(--text-muted); margin: .8rem 0 0; }

/* side headings (about / why) */
.about-text h2,
.why-text h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--navy-dark);
  position: relative;
  padding-bottom: .55rem;
  margin-bottom: 1rem;
}

.about-text h2::after,
.why-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 3px;
  background: var(--teal);
  border-radius: 3px;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.header-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-icon-fallback {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.brand-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.brand-sub {
  display: block;
  font-size: .72rem;
  color: var(--teal);
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.main-nav a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  padding: .4rem .7rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav a:hover { color: var(--teal); background: var(--teal-light); }

.main-nav a.active-page {
  color: var(--navy);
  background: var(--teal-light);
}

.main-nav .nav-cta {
  background: var(--teal);
  color: var(--white);
  padding: .45rem 1rem;
  margin-inline-start: .4rem;
}

.main-nav .nav-cta:hover { background: var(--navy-dark); color: var(--white); }

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- HERO (Homepage) ---------- */
.hero {
  padding: 70px 0 60px;
  background: linear-gradient(135deg, #f0f7ff 0%, var(--teal-light) 60%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(13,124,122,.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: var(--navy-dark);
  margin-bottom: .6rem;
}

.hero-text h1 .highlight { color: var(--teal); }

.hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 52ch;
  margin-bottom: 1.4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: .9rem 1.2rem;
  width: fit-content;
  margin-bottom: 1.6rem;
  box-shadow: var(--shadow-sm);
}

.stat strong { display: block; font-size: 1.4rem; color: var(--navy); font-weight: 800; line-height: 1; }
.stat span { font-size: .78rem; color: var(--text-muted); }

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-btns { display: flex; gap: .8rem; flex-wrap: wrap; }

.hero-img-wrap { position: relative; }

.hero-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* ---------- ABOUT (Homepage section) ---------- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.about-text .section-tag { margin-bottom: .6rem; }

.about-text h2 {
  font-size: clamp(1.6rem, 2.3vw, 2rem);
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.about-text p { color: var(--text-muted); }

.about-list { margin-top: 1.2rem; display: flex; flex-direction: column; gap: .6rem; }

.about-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }

.about-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
  font-size: .95rem;
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: .8rem;
  flex-shrink: 0;
}

/* ---------- REGIONS ---------- */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.region-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.region-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.region-img {
  height: 160px;
  overflow: hidden;
}

.region-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.region-card:hover .region-img img { transform: scale(1.06); }

.region-body { padding: 1rem; }

.region-body h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .3rem;
}

.region-body p { font-size: .85rem; color: var(--text-muted); margin: 0 0 .7rem; }

.region-link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 1px;
  transition: var(--transition);
}

.region-link:hover { color: var(--teal); border-color: var(--teal); gap: .45rem; }

/* ---------- WHY US (Homepage) ---------- */
.why-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-text .section-tag { margin-bottom: .6rem; }

.why-text h2 {
  font-size: clamp(1.6rem, 2.3vw, 2rem);
  color: var(--navy-dark);
  margin-bottom: .5rem;
}

.why-lead { color: var(--text-muted); margin-bottom: 1.6rem; }

.why-cards { display: flex; flex-direction: column; gap: 1.2rem; }

.why-card {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--teal); }

.why-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: .1rem; }

.why-card h4 { font-size: .95rem; color: var(--navy); margin-bottom: .3rem; }

.why-card p { font-size: .85rem; color: var(--text-muted); margin: 0; }

.why-img-wrap { display: flex; justify-content: center; }

.why-img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* ---------- REVIEWS ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }

.review-card > p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: .75rem;
  border-top: 1px solid var(--border);
  padding-top: .8rem;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.reviewer strong { display: block; font-size: .9rem; }
.reviewer span { font-size: .78rem; color: var(--text-muted); }

/* ---------- ARTICLES ---------- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.article-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-light);
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform .4s ease;
}

.article-card:hover .article-img img { transform: scale(1.06); }

.article-cat {
  position: absolute;
  top: .7rem;
  right: .7rem;
  background: var(--teal);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 100px;
}

.article-body {
  padding: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-date { font-size: .78rem; color: var(--text-muted); margin-bottom: .4rem; }

.article-body h3 {
  font-size: .97rem;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.4;
}

.article-body p { font-size: .85rem; color: var(--text-muted); flex: 1; }

.article-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--teal);
  font-weight: 700;
  font-size: .85rem;
  margin-top: .6rem;
  transition: var(--transition);
}

.article-link:hover { gap: .6rem; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-dark);
  color: #c8d3e0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 3rem;
  padding: 60px 0 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer-brand .brand-icon { background: var(--teal); flex-shrink: 0; }

.footer-brand .brand-name { color: var(--white); font-size: 1.1rem; }

.footer-brand-desc {
  font-size: .87rem;
  color: #8898a8;
  margin: 0;
  line-height: 1.75;
  max-width: 38ch;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: .9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.footer-links a {
  font-size: .88rem;
  color: #8898a8;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--white); padding-right: .3rem; }

.footer-contact p { font-size: .88rem; color: #8898a8; margin: 0; }

.footer-bottom {
  border-top: 1px solid #2a3d55;
  padding: 18px 0;
}

.footer-bottom p {
  text-align: center;
  font-size: .82rem;
  color: #5a7080;
  margin: 0;
}

/* =============================================
   ABOUT & REGIONS PAGE STYLES
   ============================================= */

/* ---------- Page Hero ---------- */
.page-hero {
  background: linear-gradient(135deg, #e8f0f8 0%, var(--teal-light) 100%);
  padding: 48px 0 44px;
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .9rem;
}

.breadcrumb a {
  color: var(--navy);
  font-weight: 600;
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--teal); }

.breadcrumb span:last-child { color: var(--text-muted); }

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy-dark);
  margin: 0 0 .5rem;
  position: relative;
  display: inline-block;
  padding-bottom: .55rem;
}

.page-hero h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: .8rem 0 0;
}

/* ---------- About Page Intro ---------- */
.about-intro .about-img-wrap { position: relative; }

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--navy);
  color: #fff;
  padding: .7rem 1.1rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.2;
}

.about-badge strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
}

.about-badge span { font-size: .78rem; opacity: .85; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--navy);
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: .3rem;
}

.stat-item span { font-size: .85rem; color: #8bacc8; }

/* ---------- About Why ---------- */
.about-why-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ---------- CTA Box ---------- */
.cta-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-text h2 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: #fff;
  margin-bottom: .4rem;
}

.cta-text p { color: #8bacc8; margin: 0; font-size: .95rem; }

/* ---------- Regions Page Intro ---------- */
.regions-intro-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.regions-intro-text h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--navy-dark);
  position: relative;
  padding-bottom: .55rem;
  margin-bottom: 1rem;
}

.regions-intro-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
}

.regions-intro-text p { color: var(--text-muted); }

.regions-intro-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  position: sticky;
  top: 100px;
}

.intro-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .3rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.intro-stat-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}

.intro-stat-icon { font-size: 1.6rem; }

.intro-stat-card strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
  font-weight: 700;
}

.intro-stat-card span { font-size: .78rem; color: var(--text-muted); }

.regions-grid-lg { grid-template-columns: repeat(4, 1fr) !important; }

/* =============================================
   CITY PAGES STYLES
   ============================================= */

/* ---------- City Hero ---------- */
.city-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.city-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.city-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.city-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7,21,38,.92) 0%,
    rgba(11,51,87,.65) 55%,
    rgba(11,51,87,.2) 100%
  );
}

.city-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 56px;
  padding-top: 30px;
}

.breadcrumb-light a,
.breadcrumb-light span { color: rgba(255,255,255,.7); }

.breadcrumb-light a:hover { color: #fff; }

.city-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin: .6rem 0 .5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.city-hero-content > p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
  max-width: 55ch;
}

.city-hero-btns {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}

/* ---------- City About ---------- */
.city-about-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

.city-about-text h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--navy-dark);
  position: relative;
  padding-bottom: .55rem;
  margin-bottom: 1rem;
}

.city-about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
}

.city-about-text h3 { font-size: 1.1rem; color: var(--navy); margin: 1.4rem 0 .5rem; }

.city-about-text p { color: var(--text-muted); }

.city-areas {
  list-style: none;
  padding: 0;
  margin: .6rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.city-areas li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .93rem;
  color: var(--text);
}

.area-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
}

/* City Contact Card */
.city-contact-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  position: sticky;
  top: 96px;
  box-shadow: var(--shadow-lg);
}

.city-contact-card h3 { font-size: 1.1rem; color: #fff; margin: 0 0 .2rem; }

.city-contact-card > p { color: #8bacc8; margin: 0 0 .3rem; font-size: .9rem; }

.city-contact-desc {
  font-size: .85rem !important;
  color: #8bacc8 !important;
  margin-bottom: 1.1rem !important;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: .8rem;
}

.city-contact-btn {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .6rem;
  transition: var(--transition);
  text-decoration: none;
}

.city-contact-btn:hover { background: rgba(255,255,255,.2); }

.city-contact-btn.wa { background: #25d366; border-color: #25d366; }
.city-contact-btn.wa:hover { background: #1da851; }

.city-contact-tags {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.city-contact-tags span { font-size: .82rem; color: rgba(255,255,255,.75); }

/* ---------- City Why ---------- */
.city-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.city-why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.3rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.city-why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
  transform: translateY(-3px);
}

.city-why-icon { font-size: 1.8rem; margin-bottom: .6rem; }

.city-why-card h4 { font-size: .9rem; color: var(--navy); margin-bottom: .35rem; }

.city-why-card p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ---------- City Prices ---------- */
.city-prices-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.city-prices-text h2 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: var(--navy-dark);
  position: relative;
  padding-bottom: .55rem;
  margin-bottom: 1rem;
}

.city-prices-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
}

.city-prices-text h3 { font-size: 1.05rem; color: var(--navy); margin: 1.4rem 0 .5rem; }

.city-prices-text p { color: var(--text-muted); }

.inline-link {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.city-inquiry-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--teal-light);
  border: 1px solid #c2d8e8;
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.city-inquiry-box span { font-size: 1.8rem; flex-shrink: 0; }

.city-inquiry-box strong { display: block; color: var(--navy); font-size: .95rem; }

.city-inquiry-box p { font-size: .83rem; color: var(--text-muted); margin: 0; }

.city-inquiry-box > div { flex: 1; min-width: 140px; }

/* Price table */
.city-price-table {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin: 1.2rem 0 1rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1.1rem;
  border-bottom: 1px solid #e2e8f0;
  gap: 1rem;
  font-size: .88rem;
}

.price-row:last-child { border-bottom: none; }

.price-header {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
}

.price-row:not(.price-header):nth-child(even) { background: #f8fafc; }

.price-row span:last-child { font-weight: 700; color: var(--teal); white-space: nowrap; }

.price-header span:last-child { color: #fff; }

.price-note { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-top: .4rem; }

.city-prices-img {
  position: sticky;
  top: 100px;
}

.city-prices-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.city-prices-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--navy);
  color: #fff;
  padding: .65rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.3;
}

.city-prices-badge strong { display: block; font-size: .95rem; font-weight: 800; }
.city-prices-badge span { font-size: .75rem; opacity: .8; }

/* ---------- City How to Order ---------- */
.city-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.city-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.1rem;
  text-align: center;
  width: 190px;
  box-shadow: var(--shadow-sm);
}

.city-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: grid;
  place-items: center;
  margin: 0 auto .7rem;
}

.city-step h4 { font-size: .92rem; color: var(--navy); margin-bottom: .25rem; }
.city-step p { font-size: .8rem; color: var(--text-muted); margin: 0; }

.city-step-arrow { font-size: 1.4rem; color: var(--navy); opacity: .4; flex-shrink: 0; }

.city-order-cta { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---------- Other Cities ---------- */
.other-cities {
  text-align: center;
  margin: 2rem 0;
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.other-cities > p { font-size: .9rem; color: var(--text-muted); margin-bottom: .8rem; }

.other-cities-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
}

.other-cities-links a {
  background: var(--teal-light);
  color: var(--navy);
  border: 1px solid #c2d8e8;
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .82rem;
  font-weight: 700;
  transition: var(--transition);
}

.other-cities-links a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ---------- City FAQ ---------- */
.city-faq-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.city-faq-list h2 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: var(--navy-dark);
  position: relative;
  padding-bottom: .55rem;
  margin-bottom: 1.4rem;
}

.city-faq-list h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: .8rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item[open] { border-color: var(--navy); }

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: .93rem;
  color: var(--navy);
  padding: 1rem 1.1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  user-select: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  padding: 0 1.1rem 1rem;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.city-faq-img {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.city-faq-img > img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.city-faq-cta {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
}

.city-faq-cta strong { display: block; font-size: 1rem; margin-bottom: .3rem; }

.city-faq-cta p { font-size: .85rem; color: #8bacc8; margin-bottom: .9rem; }

/* =============================================
   LEGAL PAGES (Privacy & Terms)
   ============================================= */

.legal-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a5276 100%);
  padding: 5rem 0 3.5rem;
  text-align: center;
  color: #fff;
}

.legal-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: .6rem; }

.legal-hero p { opacity: .8; font-size: .95rem; }

.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}

.legal-section { margin-bottom: 2.4rem; }

.legal-section h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .9rem;
  display: flex;
  align-items: center;
  gap: .55rem;
}

.legal-section h2 .sec-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.legal-section p { color: var(--text-body); line-height: 1.9; font-size: .92rem; margin-bottom: .7rem; }

.legal-section ul { margin: .5rem 0 .7rem 0; padding-right: 1.4rem; list-style: none; }

.legal-section ul li {
  position: relative;
  padding-right: 1.2rem;
  color: var(--text-body);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: .3rem;
}

.legal-section ul li::before {
  content: "◆";
  position: absolute;
  right: 0;
  color: var(--teal);
  font-size: .55rem;
  top: .45rem;
}

.legal-sub-head {
  font-weight: 700;
  color: var(--navy);
  font-size: .93rem;
  margin: 1rem 0 .4rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.legal-sub-head::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--teal);
  border-radius: 2px;
}

.legal-warning {
  background: #fff8e1;
  border-right: 4px solid #f59e0b;
  border-radius: 8px;
  padding: .9rem 1.1rem;
  font-size: .88rem;
  color: #92400e;
  margin: .8rem 0;
}

.legal-info {
  background: #eff6ff;
  border-right: 4px solid var(--teal);
  border-radius: 8px;
  padding: .9rem 1.1rem;
  font-size: .88rem;
  color: var(--navy);
  margin: .8rem 0;
}

.legal-divider { border: none; border-top: 1px solid #e2e8f0; margin: 2rem 0; }

.legal-cta {
  background: linear-gradient(135deg, var(--navy), #1a5276);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: #fff;
  margin-top: 3rem;
}

.legal-cta h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.legal-cta p { opacity: .8; font-size: .88rem; margin-bottom: 1.2rem; }

.legal-update { font-size: .8rem; color: var(--text-muted); text-align: center; margin-top: 2rem; }

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */

.contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a5276 60%, #0e6655 100%);
  padding: 5.5rem 0 4rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-hero::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.03'%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");
}

.contact-hero-content { position: relative; z-index: 1; }

.contact-hero h1 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 800; margin-bottom: .7rem; }

.contact-hero p {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  opacity: .85;
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.contact-hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.hero-stat { text-align: center; }

.hero-stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: #4dd0c4; }

.hero-stat span { font-size: .78rem; opacity: .75; }

.contact-body { padding: 4rem 0 5rem; background: #f8fafc; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 2px 12px rgba(11,51,87,.07);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
  border: 1.5px solid transparent;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(11,51,87,.12);
  border-color: var(--teal);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.icon-wa  { background: #e8f8f2; color: #25d366; }
.icon-tel { background: #eff6ff; color: var(--navy); }
.icon-mail { background: #fef3f2; color: #e74c3c; }
.icon-loc { background: #fdf4e7; color: #f39c12; }

.contact-card-body h3 { font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.contact-card-body p { font-size: .82rem; color: var(--text-muted); margin: 0; }

.contact-card-body .cc-val {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  direction: ltr;
  display: block;
  margin-top: .2rem;
}

.contact-card-body .cc-badge {
  display: inline-block;
  background: #e8f8f2;
  color: #0b6954;
  font-size: .72rem;
  font-weight: 700;
  padding: .18rem .55rem;
  border-radius: 20px;
  margin-top: .4rem;
}

.avail-banner {
  background: linear-gradient(135deg, var(--navy), #1a5276);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}

.avail-dot {
  width: 14px;
  height: 14px;
  background: #4dd0c4;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(77,208,196,.25);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(77,208,196,.25); }
  50% { box-shadow: 0 0 0 8px rgba(77,208,196,.1); }
}

.avail-text strong { display: block; font-size: .93rem; font-weight: 700; }
.avail-text span { font-size: .78rem; opacity: .75; }

.contact-cities { background: #fff; border-radius: 16px; padding: 1.5rem 1.4rem; box-shadow: 0 2px 12px rgba(11,51,87,.07); }

.contact-cities h3 { font-size: .92rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }

.city-chips { display: flex; flex-wrap: wrap; gap: .5rem; }

.city-chip {
  background: #eff6ff;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 600;
  padding: .32rem .75rem;
  border-radius: 20px;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.city-chip:hover { background: var(--teal); color: #fff; }

.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(11,51,87,.09);
  padding: 2.2rem 2rem;
}

.contact-form-wrap h2 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }

.contact-form-wrap > p { font-size: .87rem; color: var(--text-muted); margin-bottom: 1.6rem; line-height: 1.7; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }

.form-group label { font-size: .82rem; font-weight: 700; color: var(--navy); }

.form-group label span { color: #e74c3c; margin-right: .15rem; }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Cairo', sans-serif;
  font-size: .88rem;
  color: var(--text-body);
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: .7rem 1rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,.12);
  background: #fff;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: .5rem;
  flex-wrap: wrap;
}

.form-submit-row .btn { flex: 1; min-width: 160px; justify-content: center; }

.form-note { font-size: .75rem; color: var(--text-muted); display: flex; align-items: center; gap: .3rem; }

.form-note svg { flex-shrink: 0; }

.contact-why { padding: 4rem 0; background: #fff; }

.contact-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-why-card {
  background: #f8fafc;
  border-radius: 14px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  border: 1.5px solid #e2e8f0;
  transition: border-color .2s, transform .2s;
}

.contact-why-card:hover { border-color: var(--teal); transform: translateY(-3px); }

.contact-why-icon { font-size: 2rem; margin-bottom: .8rem; }

.contact-why-card h4 { font-size: .93rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }

.contact-why-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.contact-coverage { padding: 4rem 0; background: #f8fafc; }

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.coverage-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(11,51,87,.06);
  text-decoration: none;
  color: var(--navy);
  border: 1.5px solid transparent;
  transition: border-color .2s, transform .2s;
  font-size: .88rem;
  font-weight: 700;
}

.coverage-card span { display: block; font-size: 1.6rem; margin-bottom: .4rem; }

.coverage-card:hover { border-color: var(--teal); transform: translateY(-2px); }

/* =============================================
   ARTICLE / SINGLE POST PAGE
   ============================================= */

/* Breadcrumb */
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  font-size: .83rem;
  margin-bottom: 1.2rem;
}
.article-breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.article-breadcrumb a:hover { color: #fff; }
.article-breadcrumb span { color: rgba(255,255,255,.5); }
.article-breadcrumb span:last-child { color: rgba(255,255,255,.9); }

/* Article Hero */
.article-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 3rem 0 2.5rem;
}
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.article-hero-cat {
  font-size: .78rem;
  font-weight: 700;
  padding: .25rem .8rem;
  border-radius: 50px;
}
.article-hero-cat.safety  { background: #fce4ec; color: #ad1457; }
.article-hero-cat.medical { background: #e3f2fd; color: #1565c0; }
.article-hero-cat.guide   { background: #e8f5e9; color: #2e7d32; }
.article-hero-cat.faq     { background: #fff3e0; color: #e65100; }
.article-hero-cat.regions { background: #f3e5f5; color: #6a1b9a; }
.article-hero-date,
.article-hero-time { font-size: .83rem; color: rgba(255,255,255,.75); }
.article-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 .8rem;
  line-height: 1.4;
}
.article-hero-lead {
  font-size: 1.05rem;
  opacity: .88;
  line-height: 1.7;
  margin: 0 0 1.5rem;
  max-width: 800px;
}

/* Share */
.article-share {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}
.article-share > span { font-size: .85rem; opacity: .8; }
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  text-decoration: none;
  font-size: .9rem;
  transition: transform .2s, opacity .2s;
  border: none; cursor: pointer;
}
.share-btn:hover { transform: scale(1.12); opacity: .85; }
.share-btn.whatsapp { background: #25d366; color: #fff; }
.share-btn.telegram { background: #0088cc; color: #fff; }
.share-btn.copy     { background: rgba(255,255,255,.2); color: #fff; }

/* Hero image (below hero banner) */
.article-hero-fullimg {
  background: var(--bg);
  padding: 2.5rem 0;
}
.article-hero-fig {
  margin: 0 auto;
  max-width: 680px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,.13);
  border: 1px solid var(--border);
}
.article-hero-fig img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.article-hero-fig figcaption {
  background: var(--bg-light);
  text-align: center;
  font-size: .82rem;
  color: var(--text-muted);
  padding: .6rem 1rem;
  font-style: italic;
  border-top: 1px solid var(--border);
}

/* Featured Image */
.article-featured-img {
  background: var(--navy-dark);
  padding: 0 0 .5rem;
}
.article-featured-img figure { margin: 0; }
.article-featured-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0 0 16px 16px;
}
.article-featured-img figcaption {
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  padding: .6rem 1rem;
}

/* Inline article image */
.article-img-block {
  margin: 2rem 0;
  text-align: center;
}
.article-img-block img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
  display: block;
}
.article-img-block figcaption {
  margin-top: .6rem;
  font-size: .82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Article body layout */
.article-body-section { padding: 3rem 0 4rem; }
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

/* Article Content */
.article-content {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 3px 14px rgba(0,0,0,.07);
  line-height: 1.85;
  color: var(--text-body);
}
.article-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin: 2.2rem 0 .9rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--teal-light);
  position: relative;
}
.article-content h2::after {
  content: '';
  position: absolute;
  bottom: -2px; right: 0;
  width: 50px; height: 2px;
  background: var(--navy);
}
.article-content p { margin: 0 0 1rem; }
.article-content a { color: var(--navy); font-weight: 600; }
.article-content a:hover { text-decoration: underline; }
.article-content code {
  background: var(--teal-light);
  color: var(--navy);
  padding: .15rem .5rem;
  border-radius: 5px;
  font-family: monospace;
  font-size: .92em;
  font-weight: 700;
}

/* Empathy box */
.article-empathy-box {
  display: flex;
  gap: 1rem;
  background: linear-gradient(135deg, #e8f4fd, #f0f7ff);
  border: 1.5px solid #b3d8f5;
  border-radius: 14px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.empathy-icon { font-size: 2rem; flex-shrink: 0; }
.article-empathy-box p { margin: 0 0 .6rem; font-size: .93rem; }
.article-empathy-box p:last-of-type { margin-bottom: .9rem; }

/* TOC */
.article-toc {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.toc-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 .9rem;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.toc-title::after { display: none !important; }
.toc-list {
  margin: 0;
  padding-right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.toc-list li { font-size: .9rem; }
.toc-list a { color: var(--text-body); text-decoration: none; font-weight: 500; }
.toc-list a:hover, .toc-list a.active { color: var(--navy); font-weight: 700; }

/* Alerts */
.article-alert {
  display: flex;
  gap: .9rem;
  border-radius: 12px;
  padding: 1.2rem 1.3rem;
  margin: 1.5rem 0;
  font-size: .93rem;
  line-height: 1.7;
}
.alert-icon { font-size: 1.4rem; flex-shrink: 0; }
.article-alert.warning {
  background: #fffbeb;
  border: 1.5px solid #f59e0b;
}
.article-alert.danger {
  background: #fff5f5;
  border: 1.5px solid #fc8181;
}
.article-alert ul { margin: .5rem 0 0; padding-right: 1.4rem; }
.article-alert ul li { margin-bottom: .3rem; }

/* Check list */
.article-check-list {
  list-style: none;
  padding: 0;
  margin: .5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.article-check-list li {
  padding-right: 1.6rem;
  position: relative;
  font-size: .95rem;
}
.article-check-list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--navy);
  font-weight: 800;
}

/* Read more link */
.article-read-more {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--teal-light);
  border-radius: 10px;
  padding: .7rem 1rem;
  margin: 1.2rem 0;
  font-size: .88rem;
}
.article-read-more a { color: var(--navy); font-weight: 600; }

/* Inline CTA */
.article-cta-inline {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  margin: 1.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.article-cta-inline p { color: rgba(255,255,255,.9); margin: 0; font-size: .93rem; line-height: 1.6; }
.article-cta-inline a:not(.btn) { color: var(--gold); font-weight: 700; }

/* Steps */
.article-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.article-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1rem 1.2rem;
}
.step-num {
  background: var(--navy);
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.article-step > div { flex: 1; }
.article-step strong { display: block; color: var(--navy); margin-bottom: .3rem; }
.article-step p { font-size: .9rem; margin: 0; color: var(--text-muted); }

/* Comparison Table */
.article-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.article-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  background: #fff;
}
.article-compare-table th {
  padding: .9rem 1rem;
  font-weight: 800;
  font-size: .88rem;
  text-align: center;
}
.article-compare-table th:first-child { text-align: right; background: #f5f7fa; color: var(--navy); }
.article-compare-table th.col-original { background: #e8f5e9; color: #2e7d32; }
.article-compare-table th.col-fake     { background: #fce4ec; color: #ad1457; }
.article-compare-table td {
  padding: .8rem 1rem;
  border-top: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.55;
}
.article-compare-table tr:hover td { background: #fafbfc; }
.article-compare-table td.col-original { color: #1b5e20; background: #f9fef9; }
.article-compare-table td.col-fake     { color: #880e4f; background: #fff9fa; }

/* Contact cards */
.article-contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.article-contact-card {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  text-decoration: none;
  transition: all .2s;
}
.article-contact-card:hover { border-color: var(--navy); background: var(--teal-light); transform: translateY(-2px); }
.article-contact-card.whatsapp { border-color: #25d366; background: #f0fff5; }
.article-contact-card.whatsapp:hover { background: #d4f7e3; }
.acc-icon { font-size: 1.8rem; }
.article-contact-card div { display: flex; flex-direction: column; gap: .15rem; }
.article-contact-card strong { font-size: .95rem; color: var(--navy); }
.article-contact-card span { font-size: .83rem; color: var(--text-muted); }

/* FAQ inside article */
.article-faq-section { margin: 2.5rem 0; }
.article-faq-section h2 { margin-top: 0; }
.article-faq-item {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: .8rem;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s;
}
.article-faq-item[open] { border-color: var(--navy); }
.article-faq-item summary {
  padding: 1rem 1.2rem;
  font-weight: 700;
  font-size: .97rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
}
.article-faq-item summary::-webkit-details-marker { display: none; }
.article-faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  transition: transform .2s;
  flex-shrink: 0;
  margin-right: auto;
  padding-left: 1rem;
}
.article-faq-item[open] summary::after { content: '−'; }
.article-faq-item > p {
  margin: 0;
  padding: 0 1.2rem 1.1rem;
  font-size: .93rem;
  color: var(--text-body);
  line-height: 1.75;
  border-top: 1px solid var(--teal-light);
}

/* Conclusion */
.article-conclusion {
  background: linear-gradient(135deg, #f8f9ff, var(--teal-light));
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0 0;
  border: 1.5px solid var(--border);
}
.conclusion-cta { margin-top: 1.2rem; }
.conclusion-cta p { font-size: .97rem; margin-bottom: .9rem; }

/* Article Sidebar */
.article-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 90px; }

/* btn-sm */
.btn-sm { padding: .45rem 1.1rem !important; font-size: .87rem !important; }

/* =============================================
   BLOG PAGE
   ============================================= */

/* Hero */
.blog-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}
.blog-hero-inner { max-width: 720px; margin: 0 auto; }
.blog-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: .3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
  letter-spacing: .04em;
}
.blog-hero h1 { font-size: 2.2rem; font-weight: 800; margin: 0 0 .9rem; }
.blog-hero p  { font-size: 1.05rem; opacity: .9; line-height: 1.75; margin: 0 0 1.8rem; }
.blog-hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.bhs-item { display: flex; flex-direction: column; align-items: center; }
.bhs-item strong { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.bhs-item span   { font-size: .82rem; opacity: .82; margin-top: .2rem; }

/* Categories Bar */
.blog-cats-bar {
  background: #fff;
  border-bottom: 1px solid #dde3ec;
  padding: .9rem 0;
  position: sticky;
  top: 70px;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.blog-cats {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-cat-btn {
  background: var(--teal-light);
  border: 1.5px solid transparent;
  border-radius: 50px;
  color: var(--navy);
  font-family: 'Cairo', 'Tahoma', sans-serif;
  font-size: .87rem;
  font-weight: 600;
  padding: .38rem 1.1rem;
  cursor: pointer;
  transition: all .2s;
}
.blog-cat-btn:hover,
.blog-cat-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Featured Article */
.blog-featured { padding: 3rem 0 1.5rem; }
.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  background: #fff;
  transition: transform .25s, box-shadow .25s;
}
.blog-featured-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.13); }
.bfc-img { position: relative; min-height: 340px; overflow: hidden; background: var(--bg); }
.bfc-img img { width: 100%; height: 100%; object-fit: contain; display: block; padding: .75rem; box-sizing: border-box; }
.bfc-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--gold);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: .3rem .85rem;
  border-radius: 50px;
}
.bfc-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
.bfc-meta { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.bfc-body h2 { font-size: 1.55rem; font-weight: 800; color: var(--text); line-height: 1.4; margin: 0; }
.bfc-body p  { font-size: .97rem; color: #555; line-height: 1.75; margin: 0; }
.bfc-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.bfc-tags span {
  font-size: .78rem;
  color: var(--navy);
  background: var(--teal-light);
  padding: .22rem .7rem;
  border-radius: 50px;
  font-weight: 600;
}

/* Category labels */
.blog-cat-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  padding: .22rem .75rem;
  border-radius: 50px;
}
.blog-cat-label.guide    { background: #e8f5e9; color: #2e7d32; }
.blog-cat-label.medical  { background: #e3f2fd; color: #1565c0; }
.blog-cat-label.faq      { background: #fff3e0; color: #e65100; }
.blog-cat-label.regions  { background: #f3e5f5; color: #6a1b9a; }
.blog-cat-label.safety   { background: #fce4ec; color: #ad1457; }
.blog-date { font-size: .8rem; color: #888; }
.blog-read-time { font-size: .8rem; color: #aaa; }

/* Main Layout */
.blog-main-section { padding: 2.5rem 0 4rem; }
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  animation: fadeInUp .35s ease forwards;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.blog-card-img-link { display: block; overflow: hidden; }
.blog-card-img { position: relative; height: 220px; overflow: hidden; background: var(--bg); }
.blog-card-img img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform .4s; padding: .5rem; box-sizing: border-box; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-cat {
  position: absolute;
  top: .8rem;
  right: .8rem;
  font-size: .72rem;
  font-weight: 700;
  padding: .22rem .72rem;
  border-radius: 50px;
}
.blog-card-cat.guide   { background: #e8f5e9; color: #2e7d32; }
.blog-card-cat.medical { background: #e3f2fd; color: #1565c0; }
.blog-card-cat.faq     { background: #fff3e0; color: #e65100; }
.blog-card-cat.regions { background: #f3e5f5; color: #6a1b9a; }
.blog-card-cat.safety  { background: #fce4ec; color: #ad1457; }
.blog-card-body { padding: 1.2rem 1.3rem 1.3rem; display: flex; flex-direction: column; flex: 1; gap: .55rem; }
.blog-card-meta { display: flex; gap: .7rem; align-items: center; }
.blog-card-body h3 { font-size: 1rem; font-weight: 700; line-height: 1.5; margin: 0; }
.blog-card-body h3 a { color: var(--text); text-decoration: none; }
.blog-card-body h3 a:hover { color: var(--navy); }
.blog-card-body p { font-size: .88rem; color: #666; line-height: 1.65; margin: 0; flex: 1; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: .6rem; flex-wrap: wrap; gap: .4rem; }
.blog-read-more { font-size: .87rem; font-weight: 700; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: .3rem; }
.blog-read-more:hover { gap: .6rem; }
.blog-card-tags span { font-size: .72rem; color: #aaa; }

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 130px; }
.sidebar-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  border-radius: 14px;
  padding: 1.8rem 1.5rem;
  text-align: center;
}
.sidebar-cta-icon { font-size: 2.2rem; margin-bottom: .5rem; }
.sidebar-cta h3 { font-size: 1.15rem; font-weight: 800; margin: 0 0 .5rem; }
.sidebar-cta p  { font-size: .87rem; opacity: .9; margin: 0 0 1rem; line-height: 1.55; }
.sidebar-widget {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 3px 12px rgba(0,0,0,.07);
}
.sidebar-widget-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 1rem;
  padding-bottom: .7rem;
  border-bottom: 2px solid #dde3ec;
  position: relative;
}
.sidebar-widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--navy);
}
.sidebar-cats-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.sidebar-cats-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555;
  text-decoration: none;
  font-size: .9rem;
  padding: .4rem .6rem;
  border-radius: 8px;
  transition: all .2s;
}
.sidebar-cats-list a:hover,
.sidebar-cats-list a.active { background: var(--teal-light); color: var(--navy); }
.sidebar-cats-list em {
  font-style: normal;
  background: #dde3ec;
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  padding: .1rem .5rem;
  border-radius: 50px;
}
.sidebar-popular-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .9rem; }
.sidebar-popular-list a {
  display: flex;
  gap: .75rem;
  align-items: center;
  text-decoration: none;
  transition: opacity .2s;
}
.sidebar-popular-list a:hover { opacity: .8; }
.sidebar-popular-list img {
  width: 58px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.sidebar-popular-list div { display: flex; flex-direction: column; gap: .2rem; }
.sidebar-popular-list span { font-size: .87rem; font-weight: 600; color: var(--text); line-height: 1.4; }
.sidebar-popular-list em { font-style: normal; font-size: .76rem; color: #aaa; }
.sidebar-cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
}
.sidebar-cities-grid a {
  text-align: center;
  background: var(--teal-light);
  color: var(--navy);
  font-size: .84rem;
  font-weight: 600;
  padding: .45rem .5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
}
.sidebar-cities-grid a:hover { background: var(--navy); color: #fff; }

/* Blog CTA Banner */
.blog-cta-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 3rem 0;
}
.bcb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.bcb-text h2 { font-size: 1.6rem; font-weight: 800; color: #fff; margin: 0 0 .4rem; }
.bcb-text p  { color: rgba(255,255,255,.75); margin: 0; font-size: .97rem; }
.bcb-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
  .regions-grid { grid-template-columns: repeat(3, 1fr); }
  .city-why-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-layout { grid-template-columns: 1fr 280px; }
}

@media (max-width: 900px) {
  .section-pad { padding: 60px 0; }

  /* Article responsive 900px */
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .article-hero h1 { font-size: 1.6rem; }

  /* Blog responsive 900px */
  .blog-featured-card { grid-template-columns: 1fr; }
  .bfc-img { min-height: 240px; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-layout,
  .about-layout,
  .why-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-img { max-width: 100%; }
  .about-img-wrap { order: -1; }
  .why-img { max-width: 100%; }

  .regions-grid { grid-template-columns: repeat(2, 1fr); }

  .reviews-grid,
  .articles-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .menu-btn { display: flex; }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 4%;
    left: 4%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: .8rem;
    flex-direction: column;
    align-items: stretch;
    display: none;
    gap: .2rem;
    z-index: 99;
  }

  .main-nav.open { display: flex; }

  .main-nav a { padding: .6rem .8rem; text-align: center; }

  .main-nav .nav-cta { margin: .4rem 0 0; text-align: center; justify-content: center; }

  /* About / Regions */
  .about-why-layout,
  .regions-intro-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .regions-intro-cards { position: static; }
  .regions-grid-lg { grid-template-columns: repeat(2, 1fr) !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  /* City pages */
  .city-hero { min-height: 380px; }

  .city-about-layout,
  .city-prices-layout,
  .city-faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .city-contact-card,
  .city-prices-img,
  .city-faq-img { position: static; }

  .city-why-grid { grid-template-columns: repeat(2, 1fr); }
  .city-steps { gap: .4rem; }
  .city-step { width: 160px; }
  .city-step-arrow { display: none; }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.6rem 1.2rem; }
}

@media (max-width: 600px) {
  .regions-grid,
  .reviews-grid,
  .articles-grid { grid-template-columns: 1fr; }

  /* Article responsive 600px */
  .article-content { padding: 1.5rem; }
  .article-contact-cards { grid-template-columns: 1fr; }
  .article-cta-inline { flex-direction: column; }

  /* Blog responsive 600px */
  .blog-hero h1 { font-size: 1.65rem; }
  .blog-hero-stats { gap: 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-cats { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: .3rem; }
  .blog-cat-btn { white-space: nowrap; }
  .bcb-inner { flex-direction: column; text-align: center; }
  .bcb-actions { justify-content: center; }

  .hero-stats { flex-direction: column; gap: .8rem; align-items: flex-start; }
  .stat-divider { width: 100%; height: 1px; }
  .footer-inner { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-badge { bottom: 12px; left: 12px; }
  .regions-grid-lg { grid-template-columns: 1fr !important; }
  .regions-intro-cards { grid-template-columns: 1fr 1fr; }

  .city-why-grid { grid-template-columns: 1fr 1fr; }
  .city-step { width: 100%; }
  .city-hero { min-height: 320px; }
}

@media (max-width: 480px) {
  .contact-hero-stats { gap: 1.5rem; }
  .form-submit-row { flex-direction: column; }
  .form-submit-row .btn { width: 100%; }
}

/* =============================================
   Doctor Section — د. وعد
   ============================================= */
.doctor-section { background: var(--white); }

.doctor-card {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  background: linear-gradient(135deg, #f0f5fa 0%, #fdf9f0 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.doctor-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

.doctor-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  flex-shrink: 0;
}

.doctor-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  border: 4px solid var(--gold);
  box-shadow: 0 8px 24px rgba(11,51,87,.2);
}

.doctor-badge-verified {
  display: flex;
  align-items: center;
  gap: .35rem;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
  border-radius: 50px;
  padding: .3rem .75rem;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}

.doctor-info { flex: 1; }

.doctor-name-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.doctor-name {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}

.doctor-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-light);
  padding: .25rem .8rem;
  border-radius: 50px;
  border: 1px solid rgba(196,154,60,.3);
}

.doctor-bio {
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: .9rem;
  font-size: 1rem;
}

.doctor-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin: 1.4rem 0;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .6rem .9rem;
  font-size: .87rem;
  color: var(--text-body);
  font-weight: 500;
}

.credential-icon { font-size: 1.1rem; flex-shrink: 0; }

.doctor-actions { margin-top: 1.2rem; }

@media (max-width: 768px) {
  .doctor-card { flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem; }
  .doctor-avatar-wrap { flex-direction: row; }
  .doctor-credentials { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .doctor-name-row { flex-direction: column; gap: .4rem; }
}

/* =============================================
   Related Articles — اقرأ أيضاً
   ============================================= */
.related-articles {
  background: var(--bg-light);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.related-articles .section-head { margin-bottom: 2rem; }

.related-articles .section-head h2 {
  font-size: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
}

.related-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.related-card-cat {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.related-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}

.related-card p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-arrow {
  font-size: .85rem;
  color: var(--navy);
  font-weight: 700;
  margin-top: .3rem;
}

/* Semantic Entities Footer Section */
.footer-entities {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0 .5rem;
  margin-top: 1rem;
}

.footer-entities h4 {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}

.entity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.entity-tag {
  display: inline-block;
  padding: .3rem .75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}

.entity-tag:hover {
  background: rgba(196,154,60,.15);
  border-color: var(--gold);
  color: var(--gold);
}

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

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

/* =============================================
   Article Author Bar — E-E-A-T (In Hero)
   ============================================= */
.article-author-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
  padding: .9rem 1.2rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  backdrop-filter: blur(4px);
}

.author-bar-info {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.author-avatar-sm {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.3);
}

.author-bar-info > div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.author-bar-name {
  font-size: .88rem;
  color: rgba(255,255,255,.9);
  font-weight: 400;
}

.author-bar-name strong {
  color: var(--gold);
  font-weight: 700;
}

.author-bar-title {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
}

.author-bar-updated {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* =============================================
   Medical Disclaimer — إخلاء مسؤولية طبي
   ============================================= */
.article-disclaimer {
  background: #fffbeb;
  border: 1.5px solid #f59e0b;
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  margin: 0 0 2rem;
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}

.disclaimer-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: .1rem;
}

.disclaimer-body strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: .25rem;
}

.disclaimer-body p {
  font-size: .83rem;
  color: #78350f;
  margin: 0;
  line-height: 1.6;
}

.disclaimer-body a {
  color: #b45309;
  font-weight: 600;
  text-decoration: underline;
}

/* =============================================
   Article Author Bio — نهاية المقال
   ============================================= */
.article-author-bio {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2.5rem 0 0;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.bio-avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
  border: 3px solid var(--gold);
}

.bio-content { flex: 1; }

.bio-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .3rem;
}

.bio-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 .15rem;
}

.bio-job {
  font-size: .85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .7rem;
}

.bio-text {
  font-size: .88rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.bio-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}

.bio-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .8rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .78rem;
  color: var(--text-body);
  font-weight: 500;
}

.bio-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: .1rem;
  transition: var(--transition);
}

.bio-link:hover { color: var(--gold); }

@media (max-width: 600px) {
  .article-author-bar { flex-direction: column; align-items: flex-start; }
  .article-author-bio { flex-direction: column; gap: 1rem; }
  .bio-avatar { width: 56px; height: 56px; font-size: 1.2rem; }
}
