/* ═══════════ DR. ALIAA PROCTOCURE CLINIC — DESIGN SYSTEM ═══════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --sage: #76D6CB;
  --sage-dark: #4DBFB3;
  --sage-light: #A3E5DD;
  --sage-pale: #E0F5F2;
  --cream: #FAFAF7;
  --warm: #F3EDE4;
  --gold: #B8963E;
  --gold-light: #D4B865;
  --charcoal: #1A1A1A;
  --text: #2E2E2E;
  --text-light: #5C5C5C;
  --white: #FFFFFF;
  --rose: #C97676;
  --rose-light: #F5E0E0;
  --border: #E2E0DC;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08), 0 24px 60px rgba(0,0,0,0.1);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════ SVG ICON SYSTEM ═══════════ */
.ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ic svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ic-sm { width: 18px; height: 18px; }
.ic-md { width: 24px; height: 24px; }
.ic-lg { width: 32px; height: 32px; }
.ic-xl { width: 48px; height: 48px; }
.ic-2xl { width: 64px; height: 64px; }

/* ═══════════ NAVBAR ═══════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,250,247,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.navbar.scrolled {
  padding: 12px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  background: rgba(250,250,247,0.96);
}
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--charcoal);
}
.nav-logo {
  width: 46px; height: 46px; border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(118,214,203,0.3);
}
.nav-logo img {
  width: 100%; height: 100%; object-fit: cover;
}
.nav-brand-text { font-size: 16px; font-weight: 700; line-height: 1.3; }
.nav-brand-text span {
  display: block; font-size: 11px; font-weight: 400;
  color: var(--text-light); letter-spacing: 1.2px;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--text);
  font-size: 14px; font-weight: 500;
  position: relative; transition: color 0.3s;
}
.nav-links a:hover { color: var(--sage-dark); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; right: 0;
  width: 0; height: 2px; background: var(--sage);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
  border-radius: 1px;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--sage) !important; color: white !important;
  padding: 10px 26px !important; border-radius: 50px;
  font-weight: 600 !important; font-size: 13px !important;
  box-shadow: 0 2px 8px rgba(118,214,203,0.25);
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--sage-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(118,214,203,0.35) !important;
}

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--charcoal); position: absolute;
  transition: all 0.3s; border-radius: 1px;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 40px 100px;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(118,214,203,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(184,150,62,0.06) 0%, transparent 60%);
}
.hero::after {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(118,214,203,0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroFloat 20s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-40px, 40px) scale(1.05); }
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px;
  align-items: center; position: relative; z-index: 1;
}
.hero-content { animation: heroEnter 0.8s cubic-bezier(0.16,1,0.3,1); }
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; padding: 10px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 600; color: var(--sage-dark);
  box-shadow: var(--shadow-sm); margin-bottom: 32px;
  border: 1px solid rgba(118,214,203,0.1);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage);
  animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
.hero h1 {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800; line-height: 1.15;
  color: var(--charcoal); margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero h1 span { color: var(--sage); }
.hero .hero-english {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.hero p {
  font-size: 17px; color: var(--text-light);
  max-width: 520px; margin-bottom: 40px; line-height: 1.9;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border-radius: 50px;
  font-family: 'Cairo'; font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.btn-primary {
  background: var(--sage); color: white;
  box-shadow: 0 2px 8px rgba(118,214,203,0.2), 0 6px 20px rgba(118,214,203,0.15);
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(118,214,203,0.25), 0 12px 32px rgba(118,214,203,0.2);
}
.btn-outline {
  background: transparent; color: var(--sage-dark);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  background: var(--sage-pale);
  border-color: var(--sage-light);
  transform: translateY(-1px);
}
.btn-gold {
  background: var(--gold); color: white;
  box-shadow: 0 2px 8px rgba(184,150,62,0.2), 0 6px 20px rgba(184,150,62,0.15);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-danger { background: #D32F2F; color: white; }
.btn-danger:hover { background: #B71C1C; }

/* ═══════════ HERO CARD ═══════════ */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  animation: heroEnter 0.8s cubic-bezier(0.16,1,0.3,1) 0.15s both;
}
.hero-card {
  background: white; border-radius: 24px;
  padding: 44px 40px; box-shadow: var(--shadow-lg);
  width: 100%; max-width: 400px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}
.doctor-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(145deg, var(--sage-pale), var(--sage-light));
  margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
  color: var(--sage-dark);
  border: 3px solid white;
  box-shadow: 0 4px 20px rgba(118,214,203,0.15);
}
.hero-card h3 { text-align: center; font-size: 22px; font-weight: 700; color: var(--charcoal); }
.hero-card .specialty {
  text-align: center; color: var(--text-light); font-size: 14px;
  margin-top: 6px; margin-bottom: 20px;
}
.hero-card .credentials {
  text-align: center; font-family: 'Playfair Display', serif;
  color: var(--gold); font-size: 13px; margin-top: 4px;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-top: 24px;
}
.stat {
  text-align: center; padding: 14px 8px;
  background: var(--cream); border-radius: var(--radius-sm);
}
.stat-num { font-size: 22px; font-weight: 800; color: var(--sage-dark); }
.stat-label { font-size: 11px; color: var(--text-light); margin-top: 3px; }

/* ═══════════ SECTIONS ═══════════ */
section { padding: 100px 40px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; color: var(--charcoal); margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.section-header p { color: var(--text-light); font-size: 17px; max-width: 560px; margin: 0 auto; line-height: 1.8; }
.section-header .line {
  width: 48px; height: 3px; background: var(--gold);
  margin: 20px auto 0; border-radius: 2px;
}

/* ═══════════ TRUST STATS BAR ═══════════ */
.trust-bar {
  background: white;
  padding: 56px 40px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.trust-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.trust-card {
  text-align: center; padding: 36px 28px;
  background: var(--cream); border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  border: 1px solid transparent;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(118,214,203,0.1);
}
.trust-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-dark);
  margin: 0 auto 20px;
}
.trust-card .trust-num {
  font-size: 38px; font-weight: 800; color: var(--charcoal);
  margin-bottom: 6px;
}
.trust-card .trust-label {
  font-size: 14px; color: var(--text-light); line-height: 1.7;
}

/* ═══════════ ABOUT DOCTOR ═══════════ */
#about { background: white; }
.about-container {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px;
  align-items: center;
}
.about-photo { position: relative; }
.about-photo-frame {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--sage-pale) 0%, var(--sage-light) 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-photo-frame::before {
  content: ''; position: absolute;
  top: 16px; left: 16px; right: 16px; bottom: 16px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 14px;
}
.about-photo-frame .placeholder-icon {
  color: rgba(255,255,255,0.5);
}
.about-logo-img {
  width: 60%; height: auto; opacity: 0.85;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}
.about-accent {
  position: absolute; bottom: -20px; left: -20px;
  width: 140px; height: 140px;
  background: var(--gold); opacity: 0.1;
  border-radius: 50%;
}
.about-content h2 {
  font-size: 34px; font-weight: 800; color: var(--charcoal);
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.about-content .about-credentials {
  font-family: 'Playfair Display', serif;
  color: var(--gold); font-size: 17px;
  margin-bottom: 24px;
}
.about-content p {
  color: var(--text-light); font-size: 16px;
  line-height: 2; margin-bottom: 16px;
}
.about-research {
  background: var(--cream); border-radius: var(--radius-sm);
  padding: 24px 28px; margin-top: 24px;
  border-right: 3px solid var(--sage);
}
.about-research h4 {
  font-size: 16px; font-weight: 700; color: var(--sage-dark);
  margin-bottom: 8px;
}
.about-research p {
  font-size: 14px; color: var(--text-light); margin-bottom: 10px;
}
.about-research a {
  color: var(--sage-dark); font-weight: 600;
  text-decoration: none; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.3s;
}
.about-research a:hover { color: var(--sage); text-decoration: underline; }

/* ═══════════ SERVICES ═══════════ */
#services { background: white; }
.services-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;
}
.service-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 36px; transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  border: 1px solid transparent;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(118,214,203,0.1);
  background: white;
}
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--sage-dark);
}
.service-card:nth-child(1) .service-icon { background: var(--sage-pale); color: var(--sage-dark); }
.service-card:nth-child(2) .service-icon { background: var(--rose-light); color: var(--rose); }
.service-card:nth-child(3) .service-icon { background: #FFF3E0; color: #E65100; }
.service-card:nth-child(4) .service-icon { background: #EDE7F6; color: #5E35B1; }
.service-card:nth-child(5) .service-icon { background: #FFF8E1; color: var(--gold); }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; color: var(--charcoal); }
.service-card .service-en { font-size: 13px; color: var(--text-light); font-style: italic; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.9; }

/* ═══════════ BOOKING PREVIEW ═══════════ */
#booking-preview { background: var(--cream); }
.booking-preview-container {
  max-width: 720px; margin: 0 auto;
  background: white; border-radius: var(--radius);
  padding: 56px; box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
}
.booking-preview-container .preview-icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: var(--sage-pale); color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.booking-preview-container h3 {
  font-size: 26px; font-weight: 700; color: var(--charcoal);
  margin-bottom: 14px;
}
.booking-preview-container p {
  color: var(--text-light); font-size: 16px; margin-bottom: 28px;
  line-height: 1.9;
}
.booking-info-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 32px;
}
.booking-info-card {
  padding: 20px 16px; background: var(--cream);
  border-radius: var(--radius-sm); text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
}
.booking-info-card .bic-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--sage-pale); color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.booking-info-card .bic-label { font-size: 13px; font-weight: 600; color: var(--charcoal); }
.booking-info-card .bic-value { font-size: 12px; color: var(--text-light); margin-top: 3px; }

/* ═══════════ CONSULTATION PREVIEW ═══════════ */
#consultation-preview { background: white; }
.consultation-container {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px;
  align-items: center;
}
.consultation-info h3 {
  font-size: 30px; font-weight: 800; color: var(--charcoal);
  margin-bottom: 18px; letter-spacing: -0.01em;
}
.consultation-info p {
  color: var(--text-light); font-size: 16px; line-height: 2;
  margin-bottom: 18px;
}
.consultation-features { list-style: none; margin-bottom: 28px; }
.consultation-features li {
  padding: 10px 0; font-size: 15px;
  display: flex; align-items: center; gap: 12px;
  color: var(--text);
}
.consultation-features li::before {
  content: '';
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sage-pale);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234DBFB3' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.consultation-price-tag {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--cream); padding: 16px 28px;
  border-radius: var(--radius-sm); margin-bottom: 24px;
  border: 1px solid rgba(0,0,0,0.04);
}
.consultation-price-tag .price-amount {
  font-size: 30px; font-weight: 800; color: var(--sage-dark);
}
.consultation-price-tag .price-label {
  font-size: 14px; color: var(--text-light);
}
.consultation-visual {
  background: var(--cream);
  border-radius: var(--radius); padding: 48px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
}
.consultation-visual .cv-icon {
  width: 80px; height: 80px; border-radius: 24px;
  background: var(--sage-pale); color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.consultation-visual h4 { font-size: 20px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.consultation-visual p { font-size: 15px; color: var(--text-light); line-height: 1.8; }

/* ═══════════ EBOOK ═══════════ */
#ebook { background: var(--cream); }
.ebook-container {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px;
  align-items: center;
}
.ebook-cover {
  border-radius: var(--radius); position: relative;
  box-shadow: 0 12px 40px rgba(77,191,179,0.25);
  overflow: hidden;
}
.book-cover-img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius);
}
.ebook-info h3 { font-size: 30px; font-weight: 800; color: var(--charcoal); margin-bottom: 18px; letter-spacing: -0.01em; }
.ebook-info > p { color: var(--text-light); margin-bottom: 28px; line-height: 1.9; font-size: 16px; }
.ebook-features { list-style: none; margin-bottom: 32px; }
.ebook-features li {
  padding: 10px 0; font-size: 15px; display: flex; align-items: center; gap: 12px;
  color: var(--text);
}
.ebook-features li::before {
  content: '';
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sage-pale);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234DBFB3' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.ebook-price {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
}
.ebook-price .price { font-size: 34px; font-weight: 800; color: var(--sage-dark); }

/* ═══════════ CONTACT ═══════════ */
#contact-section { background: var(--cream); }
.contact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
}
.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.contact-info-list li:last-child { border: none; }
.contact-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--sage-pale); color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail h4 { font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.contact-detail p { font-size: 14px; color: var(--text-light); line-height: 1.8; }
.contact-detail a {
  color: var(--sage-dark); text-decoration: none; font-weight: 600;
  font-size: 20px; transition: color 0.3s;
}
.contact-detail a:hover { color: var(--sage); }
.contact-map {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); min-height: 400px;
  border: 1px solid rgba(0,0,0,0.04);
}
.contact-map iframe {
  width: 100%; height: 100%; min-height: 400px; border: 0;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--charcoal); color: white; padding: 72px 40px 36px;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px;
  margin-bottom: 48px;
}
.footer-brand h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.9; margin-top: 12px; }
.footer h4 { font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.footer a {
  display: block; color: rgba(255,255,255,0.5);
  text-decoration: none; font-size: 14px;
  padding: 5px 0; transition: color 0.3s;
}
.footer a:hover { color: var(--sage-light); }
.footer-bottom {
  text-align: center; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; color: rgba(255,255,255,0.35);
}
.footer-bottom a { display: inline; color: var(--sage-light); }

/* ═══════════ CHATBOT ═══════════ */
.chatbot-toggle {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--sage);
  border: none; cursor: pointer; color: white;
  box-shadow: 0 4px 20px rgba(118,214,203,0.35);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  display: flex; align-items: center; justify-content: center;
}
.chatbot-toggle:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(118,214,203,0.45); }
.chatbot-toggle .badge-dot {
  position: absolute; top: 2px; right: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: 2.5px solid white;
  animation: pulse 2s infinite;
}
.chatbot-window {
  position: fixed; bottom: 100px; left: 28px; z-index: 999;
  width: 380px; max-height: 540px;
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: none; flex-direction: column;
  overflow: hidden;
  animation: chatSlide 0.3s cubic-bezier(0.16,1,0.3,1);
  border: 1px solid rgba(0,0,0,0.06);
}
.chatbot-window.open { display: flex; }
@keyframes chatSlide {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-header {
  background: var(--sage);
  color: white; padding: 20px 22px;
  display: flex; align-items: center; gap: 14px;
}
.chat-header-avatar {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.chat-header-info h4 { font-size: 15px; font-weight: 600; }
.chat-header-info p { font-size: 11px; opacity: 0.75; margin-top: 2px; }
.chat-close {
  margin-right: auto; background: none; border: none;
  color: white; font-size: 20px; cursor: pointer; opacity: 0.7;
}
.chat-close:hover { opacity: 1; }
.chat-messages {
  flex: 1; padding: 20px; overflow-y: auto;
  max-height: 340px; min-height: 300px;
}
.chat-msg {
  margin-bottom: 14px; display: flex; gap: 8px;
  animation: msgIn 0.3s ease-out;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot .msg-bubble {
  background: var(--cream); color: var(--text);
  border-radius: 16px 16px 16px 4px;
  padding: 14px 18px; font-size: 14px;
  max-width: 280px; line-height: 1.8;
}
.chat-msg.user { justify-content: flex-end; }
.chat-msg.user .msg-bubble {
  background: var(--sage); color: white;
  border-radius: 16px 16px 4px 16px;
  padding: 14px 18px; font-size: 14px;
  max-width: 280px;
}
.chat-typing .msg-bubble {
  display: flex; gap: 5px; align-items: center;
  padding: 16px 22px;
}
.typing-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sage); opacity: 0.35;
  animation: typingBounce 1.4s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30% { transform: translateY(-5px); opacity: 1; }
}
.chat-quick-btns {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px;
}
.chat-quick-btn {
  padding: 7px 16px; border-radius: 50px;
  border: 1px solid var(--border); background: white;
  font-family: 'Cairo'; font-size: 12px; color: var(--sage-dark);
  cursor: pointer; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 6px;
}
.chat-quick-btn:hover { background: var(--sage-pale); border-color: var(--sage-light); }
.chat-input-area {
  padding: 16px 18px; border-top: 1px solid rgba(0,0,0,0.06);
  display: flex; gap: 10px;
}
.chat-input-area input {
  flex: 1; padding: 12px 18px;
  border: 1.5px solid var(--border); border-radius: 50px;
  font-family: 'Cairo'; font-size: 14px;
  outline: none; transition: border-color 0.3s;
  background: var(--cream);
}
.chat-input-area input:focus { border-color: var(--sage); background: white; }
.chat-send {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sage); color: white; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.chat-send:hover { background: var(--sage-dark); }
.chat-disclaimer {
  padding: 10px 18px; background: #FFFBEB;
  font-size: 11px; color: var(--text-light);
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

/* ═══════════ NOTIFICATIONS ═══════════ */
.notification-popup {
  position: fixed; top: 80px; left: 50%; transform: translateX(-50%);
  background: white; padding: 18px 28px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); z-index: 2000;
  display: none; align-items: center; gap: 14px;
  border-right: 4px solid var(--sage);
  animation: notifIn 0.4s cubic-bezier(0.16,1,0.3,1);
}
.notification-popup.show { display: flex; }
@keyframes notifIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-16px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.notif-icon { color: var(--sage); display: flex; }
.notif-text { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.notif-text span { display: block; font-size: 12px; color: var(--text-light); font-weight: 400; margin-top: 2px; }

/* ═══════════ ZAIN CASH MODAL ═══════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 3000; display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.show { display: flex; }
.modal {
  background: white; border-radius: var(--radius);
  padding: 44px; max-width: 440px; width: 90%;
  animation: modalIn 0.3s cubic-bezier(0.16,1,0.3,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; text-align: center; }
.modal .modal-sub { text-align: center; color: var(--text-light); font-size: 14px; margin-bottom: 28px; }
.zain-logo {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 28px; padding: 18px; background: var(--cream); border-radius: var(--radius-sm);
}
.zain-logo .z-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #7B2D8E, #E91E63);
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.zain-logo span { font-size: 18px; font-weight: 700; color: #7B2D8E; }
.modal .total-line {
  display: flex; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 15px;
}
.modal .total-line:last-of-type { border: none; font-weight: 700; font-size: 17px; }
.modal .btn { width: 100%; justify-content: center; margin-top: 20px; }
.modal-close {
  text-align: center; margin-top: 14px;
  background: none; border: none; color: var(--text-light);
  font-family: 'Cairo'; font-size: 14px; cursor: pointer;
  width: 100%; transition: color 0.3s;
}
.modal-close:hover { color: var(--charcoal); }

/* ═══════════ FORMS (shared) ═══════════ */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; margin-bottom: 8px;
  font-size: 14px; font-weight: 600; color: var(--charcoal);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Cairo'; font-size: 15px;
  background: white; color: var(--text);
  transition: all 0.3s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(118,214,203,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radio-group { display: flex; gap: 16px; margin-top: 8px; }
.radio-option {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 22px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  transition: all 0.3s; font-size: 14px;
}
.radio-option:hover { border-color: var(--sage-light); }
.radio-option.selected { border-color: var(--sage); background: var(--sage-pale); }
.radio-option input[type="radio"] { display: none; }

/* ═══════════ BOOKING FLOW ═══════════ */
.booking-container {
  max-width: 700px; margin: 0 auto;
  background: white; border-radius: var(--radius);
  padding: 48px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
}
.booking-steps {
  display: flex; justify-content: center; gap: 40px; margin-bottom: 44px;
}
.step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.35; transition: all 0.3s;
}
.step.active { opacity: 1; }
.step.completed { opacity: 1; }
.step-num {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream); color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  border: 2px solid var(--border);
}
.step.active .step-num { background: var(--sage); color: white; border-color: var(--sage); }
.step.completed .step-num { background: var(--sage-dark); color: white; border-color: var(--sage-dark); }
.step-label { font-size: 12px; color: var(--text-light); font-weight: 500; }

/* Calendar */
.calendar-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
  margin-top: 14px;
}
.calendar-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.calendar-header h4 { font-size: 16px; font-weight: 700; color: var(--charcoal); }
.calendar-header button {
  background: var(--cream); border: 1px solid var(--border); width: 34px; height: 34px;
  border-radius: 50%; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.calendar-header button:hover { background: var(--sage-pale); border-color: var(--sage-light); }
.calendar-day-name {
  text-align: center; font-size: 12px; font-weight: 600;
  color: var(--text-light); padding: 8px 0;
}
.calendar-day {
  text-align: center; padding: 10px 4px;
  border-radius: var(--radius-xs); cursor: pointer;
  font-size: 14px; font-weight: 500;
  transition: all 0.2s; border: 1.5px solid transparent;
  position: relative;
}
.calendar-day:hover:not(.disabled):not(.empty) {
  background: var(--sage-pale); border-color: var(--sage-light);
}
.calendar-day.selected { background: var(--sage); color: white; border-color: var(--sage); }
.calendar-day.disabled { opacity: 0.25; cursor: not-allowed; }
.calendar-day.empty { cursor: default; }
.calendar-day.today { border-color: var(--gold); }
.calendar-day .day-slots {
  font-size: 10px; color: var(--sage-dark); display: block; margin-top: 2px;
}
.calendar-day.selected .day-slots { color: rgba(255,255,255,0.8); }
.calendar-day.full { background: var(--rose-light); }
.calendar-day.full .day-slots { color: var(--rose); }

/* Time slots */
.time-slots {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-top: 10px;
}
.time-slot {
  padding: 12px 8px; text-align: center;
  border: 1.5px solid var(--border); border-radius: var(--radius-xs);
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.3s; background: white;
}
.time-slot:hover:not(.unavailable) { border-color: var(--sage-light); background: var(--sage-pale); }
.time-slot.selected { border-color: var(--sage); background: var(--sage-pale); color: var(--sage-dark); }
.time-slot.unavailable { opacity: 0.25; pointer-events: none; text-decoration: line-through; }

/* OTP */
.otp-container { text-align: center; padding: 24px 0; }
.otp-inputs { display: flex; gap: 12px; justify-content: center; margin: 24px 0; }
.otp-inputs input {
  width: 50px; height: 58px; text-align: center;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Cairo'; font-size: 22px; font-weight: 700;
  outline: none; transition: all 0.3s;
}
.otp-inputs input:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(118,214,203,0.1); }
.otp-timer { font-size: 14px; color: var(--text-light); margin-top: 14px; }
.otp-resend {
  color: var(--sage-dark); font-weight: 600; cursor: pointer;
  background: none; border: none; font-family: 'Cairo'; font-size: 14px;
  margin-top: 8px;
}
.otp-resend:hover { text-decoration: underline; }

/* ═══════════ ADMIN PANEL ═══════════ */
.admin-page { background: var(--cream); min-height: 100vh; }
.admin-header {
  background: white; padding: 20px 32px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 100;
}
.admin-header h2 { font-size: 20px; font-weight: 700; color: var(--charcoal); }
.admin-body {
  max-width: 1200px; margin: 32px auto; padding: 0 32px;
}
.admin-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px;
  margin-bottom: 32px;
}
.admin-stat-card {
  background: white; border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.admin-stat-card:hover { box-shadow: var(--shadow-sm); }
.admin-stat-card .label { font-size: 13px; color: var(--text-light); margin-bottom: 8px; }
.admin-stat-card .value { font-size: 32px; font-weight: 800; color: var(--charcoal); }
.admin-stat-card .change { font-size: 13px; color: var(--sage); margin-top: 6px; }
.admin-tabs {
  display: flex; gap: 4px; margin-bottom: 24px;
  border-bottom: 2px solid rgba(0,0,0,0.06); padding-bottom: 0;
  overflow-x: auto;
}
.admin-tab {
  padding: 14px 24px; background: none; border: none;
  font-family: 'Cairo'; font-size: 14px; font-weight: 600;
  color: var(--text-light); cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all 0.3s;
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.admin-tab:hover { color: var(--text); }
.admin-tab.active { color: var(--sage-dark); border-bottom-color: var(--sage); }
.admin-table {
  width: 100%; background: white;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}
.admin-table table { width: 100%; border-collapse: collapse; }
.admin-table th {
  text-align: right; padding: 16px 20px;
  background: var(--cream); font-size: 13px;
  font-weight: 600; color: var(--text-light);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.admin-table td {
  padding: 16px 20px; border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 14px;
}
.admin-table tr:last-child td { border: none; }
.admin-table tr:hover td { background: rgba(118,214,203,0.02); }
.badge {
  display: inline-block; padding: 5px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
}
.badge-pending { background: #FFF3E0; color: #E65100; }
.badge-confirmed { background: var(--sage-pale); color: var(--sage-dark); }
.badge-paid { background: #E8F5E9; color: #2E7D32; }
.badge-completed { background: #E3F2FD; color: #1565C0; }
.badge-cancelled { background: #FFEBEE; color: #C62828; }
.badge-responded { background: #F3E5F5; color: #7B1FA2; }
.badge-in_review { background: #FFF8E1; color: #F57F17; }
.admin-action-btn {
  padding: 7px 16px; border-radius: var(--radius-xs);
  border: 1px solid var(--border); background: white;
  font-family: 'Cairo'; font-size: 12px;
  cursor: pointer; transition: all 0.2s;
  margin-left: 4px;
  display: inline-flex; align-items: center; gap: 4px;
}
.admin-action-btn:hover { background: var(--sage-pale); border-color: var(--sage-light); }
.admin-action-btn.confirm { border-color: var(--sage); color: var(--sage-dark); }
.admin-action-btn.cancel { border-color: #D32F2F; color: #D32F2F; }
.admin-action-btn.cancel:hover { background: #FFEBEE; }

/* Admin search */
.admin-search {
  display: flex; gap: 12px; margin-bottom: 24px;
}
.admin-search input {
  flex: 1; padding: 14px 20px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Cairo'; font-size: 14px; outline: none;
  background: white; transition: all 0.3s;
}
.admin-search input:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(118,214,203,0.1); }

/* Admin login */
.admin-login {
  max-width: 420px; margin: 120px auto; padding: 0 20px;
}
.admin-login-card {
  background: white; border-radius: var(--radius);
  padding: 52px 44px; box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
}
.admin-login-card h2 {
  font-size: 24px; font-weight: 700; color: var(--charcoal);
  margin-bottom: 8px;
}
.admin-login-card p {
  color: var(--text-light); font-size: 14px; margin-bottom: 32px; line-height: 1.8;
}

/* Patient notes modal */
.notes-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 3000; display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.notes-modal.show { display: flex; }
.notes-content {
  background: white; border-radius: var(--radius);
  padding: 36px; max-width: 520px; width: 90%;
  animation: modalIn 0.3s cubic-bezier(0.16,1,0.3,1);
}
.patient-history {
  max-height: 300px; overflow-y: auto;
  margin: 16px 0;
}
.history-item {
  padding: 14px 16px; margin-bottom: 8px;
  background: var(--cream); border-radius: var(--radius-sm);
  font-size: 13px; line-height: 1.7;
  border-right: 3px solid var(--sage-light);
}
.history-item .date { font-weight: 600; color: var(--sage-dark); margin-bottom: 4px; }

/* ═══════════ ACTIVITY LOG ═══════════ */
.activity-log {
  background: white; border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.04);
  margin-top: 24px; overflow: hidden;
}
.activity-log-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; justify-content: space-between; align-items: center;
}
.activity-log-header h3 { font-size: 16px; font-weight: 700; color: var(--charcoal); }
.activity-item {
  display: flex; gap: 16px; padding: 16px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  align-items: flex-start;
  transition: background 0.2s;
}
.activity-item:hover { background: rgba(118,214,203,0.02); }
.activity-item:last-child { border: none; }
.activity-dot {
  width: 10px; height: 10px; border-radius: 50%;
  margin-top: 6px; flex-shrink: 0;
}
.activity-dot.booking { background: var(--sage); }
.activity-dot.consultation { background: #7B1FA2; }
.activity-dot.payment { background: var(--gold); }
.activity-dot.visit { background: #1565C0; }
.activity-dot.cancel { background: #D32F2F; }
.activity-content { flex: 1; }
.activity-content .activity-text { font-size: 14px; color: var(--text); line-height: 1.6; }
.activity-content .activity-time { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* ═══════════ SAHEL BADGE ═══════════ */
.sahel-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.sahel-badge span { font-weight: 700; color: var(--sage-light); }

/* ═══════════ SCROLL ANIMATIONS ═══════════ */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible {
  opacity: 1; transform: translateY(0);
}

/* ═══════════ LOADING SPINNER ═══════════ */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--sage-pale);
  border-top-color: var(--sage);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 20px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════ PAYMENT PROOF UPLOAD ═══════════ */
.proof-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--cream);
}
.proof-upload-area:hover {
  border-color: var(--sage-light);
  background: var(--sage-pale);
}
.proof-upload-area.has-file {
  border-color: var(--sage);
  border-style: solid;
}
.proof-upload-area .upload-icon {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  color: var(--sage-dark);
}
.proof-upload-area p {
  font-size: 14px; color: var(--text-light);
  margin-bottom: 8px;
}
.proof-upload-area .file-info {
  font-size: 13px; color: var(--sage-dark);
  font-weight: 600;
}
.proof-preview {
  margin-top: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-height: 200px;
}
.proof-preview img {
  width: 100%; height: auto; display: block;
  object-fit: contain; max-height: 200px;
}

/* ═══════════ EMAIL VERIFICATION ═══════════ */
.email-verify-container {
  text-align: center;
  padding: 32px 0;
}
.email-verify-container .email-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  color: var(--sage-dark);
}
.email-sent-notice {
  background: var(--sage-pale);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--sage-dark);
  line-height: 1.8;
}

/* ═══════════ ADMIN PROOF REVIEW ═══════════ */
.proof-review-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: center;
}
.proof-review-card .proof-thumb {
  width: 120px; height: 90px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.proof-review-card .proof-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.proof-review-card .proof-info h4 {
  font-size: 15px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 4px;
}
.proof-review-card .proof-info p {
  font-size: 13px; color: var(--text-light);
  line-height: 1.6;
}
.proof-review-actions {
  display: flex; gap: 8px;
}

/* ═══════════ IMAGE VIEW MODAL ═══════════ */
.image-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.image-modal.show { display: flex; }
.image-modal img {
  max-width: 90%; max-height: 90vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

/* ═══════════ ADMIN SETTINGS ═══════════ */
.admin-settings {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 24px;
  border: 1px solid rgba(0,0,0,0.04);
}
.admin-settings h3 {
  font-size: 16px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 16px;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .navbar.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; right: 0; left: 0;
    background: white; padding: 24px; gap: 16px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(0,0,0,0.04);
  }
  section { padding: 72px 20px; }
  .hero { padding: 120px 20px 72px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero p { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .trust-bar { padding: 40px 20px; }
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 280px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .consultation-container { grid-template-columns: 1fr; }
  .ebook-container { grid-template-columns: 1fr; }
  .ebook-cover { max-width: 300px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer { padding: 52px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .chatbot-window { width: calc(100vw - 40px); left: 20px; bottom: 100px; }
  .chatbot-toggle { bottom: 20px; left: 20px; }
  .booking-container { padding: 32px 20px; }
  .booking-steps { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .booking-info-cards { grid-template-columns: 1fr; }
  .admin-body { padding: 0 16px; }
  .admin-header { padding: 16px 20px; }
  .admin-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .otp-inputs input { width: 44px; height: 50px; font-size: 18px; }
  .booking-preview-container { padding: 36px 24px; }
  .proof-review-card { grid-template-columns: 1fr; }
  .proof-review-card .proof-thumb { width: 100%; height: 160px; }
}
@media (max-width: 480px) {
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .admin-stats { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 8px; }
  .otp-inputs { gap: 8px; }
  .otp-inputs input { width: 40px; height: 46px; font-size: 16px; }
  .booking-steps { gap: 12px; }
  .step-label { font-size: 11px; }
}
