/* ============================================================
   STYLE.CSS — shared stylesheet
   ------------------------------------------------------------
   Used by: index.html, speaking.html, story.html
   (Other pages like about-david.html, the-book.html, etc. still
   keep their own <style> block inside the page for now — see
   README.md in the project root for the full file map.)

   Section markers below (---- NAME ----) mark each part of the
   site this file styles: navbar, hero, buttons, each homepage
   section, footer, and the responsive rules at the bottom.
   ============================================================ */

:root {
  --deep-blue: #1A1715; 
  --mid-blue: #617D8C;  
  --light-blue: #A8C2D1; 

  --sandy: #F4EBE1;
  --beige: #E6DCD0;
  --warm-white: #FAF8F5;

  --gold: #A68A56;
  --gold-light: #C2A878;
  --gold-dark: #82693D;

  --brown: #5C4A3D;
  --stone: #4A433E;
  --text-dark: #1A1715;
  --text-mid: #3D3631;
  --text-muted: #7A6E64;

  --font-display: 'Playfair Display', Georgia, serif; 
  --font-body: 'Lora', Georgia, serif; 
  --font-ui: 'Montserrat', system-ui, sans-serif; 

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 12px rgba(26,23,21,0.08);
  --shadow-md: 0 8px 32px rgba(26,23,21,0.14);
  --shadow-lg: 0 20px 60px rgba(26,23,21,0.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  font-size: 18px;
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(13,45,78,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 12px 0;
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
}
.logo-symbol { color: var(--gold); font-size: 16px; }
.logo-text { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: 0.5px; }
.logo-text em { font-style: italic; color: var(--gold-light); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.btn-nav-donate {
  background: var(--gold);
  color: #fff;
  padding: 8px 20px;
  border-radius: 3px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background var(--transition);
}
.btn-nav-donate:hover { background: var(--gold-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: var(--transition);
}

/* ---- DROPDOWN MENU ---- */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

/* تصميم القائمة المخفية */
.dropdown-menu {
  position: absolute;
  top: 150%; /* تبدأ من تحت اللينك شوية */
  left: 0;
  background: var(--deep-blue);
  min-width: 180px;
  list-style: none;
  padding: 10px 0;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(196, 154, 60, 0.2);
  
  /* الأنيميشن للظهور */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}

/* إظهار القائمة عند الوقوف عليها بالماوس */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  top: 100%; /* تلتصق باللينك مباشرة */
}

/* تنسيق اللينكات الداخلية */
.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}

/* تأثير الـ Hover على اللينكات الداخلية */
.dropdown-menu a:hover {
  background: rgba(196, 154, 60, 0.1);
  color: var(--gold-light);
  padding-left: 26px; /* حركة خفيفة لليمين */
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background var(--transition), transform 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-primary.large { padding: 16px 40px; font-size: 14px; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.5);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color var(--transition), background var(--transition);
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-secondary.large { padding: 16px 40px; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: 3px;
  border: 1px solid var(--brown);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.btn-ghost:hover { background: var(--sandy); color: var(--stone); }

.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 14px 32px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.3);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }
.btn-outline-light.large { padding: 16px 40px; }

/* ---- SECTION TYPOGRAPHY ---- */
.section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label.light { color: rgba(196,154,60,0.9); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--brown); font-weight: 400; }
.section-title.light { color: #fff; }
.section-title.light em { color: var(--gold-light); }

.section-lead {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.section-lead strong { font-weight: 600; color: var(--text-dark); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px; 
  background: var(--deep-blue);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(97, 125, 140, 0.2) 0%, transparent 60%), 
    radial-gradient(ellipse at 80% 20%, rgba(166, 138, 86, 0.15) 0%, transparent 50%), 
    linear-gradient(160deg, var(--deep-blue) 0%, #151311 100%);
}
.hero-texture {
  position: absolute; inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}
.hero-content {
  flex: 1.2;
  position: relative;
  z-index: 2;
  text-align: left; 
}
.hero-badge {
  display: inline-block;
  background: rgba(166, 138, 86, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(166, 138, 86, 0.35);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.title-accent { display: block; font-size: 0.82em; opacity: 0.85; margin-top: 8px; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
  font-family: var(--font-body);
  max-width: 540px;
}
.hero-btns { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap; 
  justify-content: flex-start;
  margin-bottom: 24px;
}
.hero-activation-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-ui);
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  max-width: 400px;
}
.hero-activation-text em {
  color: var(--gold-light);
  font-style: italic;
}

/* -- Hero Visual (Book Image) -- */
.hero-visual {
  flex: 0.8;
  display: flex;
  justify-content: center;
  perspective: 1000px;
  z-index: 2;
}
.hero-book-wrapper {
  position: relative;
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.6s var(--transition);
  animation: floatBook 6s ease-in-out infinite;
}
.hero-book-wrapper:hover {
  transform: rotateY(0deg) rotateX(0deg);
  animation-play-state: paused;
}
.hero-book-img {
  max-width: 100%;
  width: 380px;
  height: auto;
  border-radius: 2px 6px 6px 2px;
  box-shadow: -15px 25px 50px rgba(0,0,0,0.5), inset -2px 0 5px rgba(255,255,255,0.2);
  display: block;
}

@keyframes floatBook {
  0%, 100% { transform: translateY(0) rotateY(-15deg) rotateX(5deg); }
  50% { transform: translateY(-20px) rotateY(-10deg) rotateX(8deg); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0.5;
}
.hero-scroll-hint span {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #fff, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 56px;
  }
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-sub {
    text-align: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-activation-text {
    border-left: none;
    border-top: 2px solid var(--gold);
    padding-left: 0;
    padding-top: 16px;
    text-align: center;
  }
  .hero-book-wrapper {
    animation: floatBookMobile 6s ease-in-out infinite;
  }
  .hero-book-img {
    width: 280px;
  }
}
@keyframes floatBookMobile {
  0%, 100% { transform: translateY(0) rotateY(0deg) rotateX(0deg); }
  50% { transform: translateY(-15px) rotateY(0deg) rotateX(0deg); }
}

/* ============================================
   AUDIENCE PATHWAYS SECTION
============================================ */
.pathways-section {
  padding: 80px 0 100px;
  background: var(--beige);
  border-bottom: 1px solid rgba(196, 154, 60, 0.15);
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 48px;
}

.pathway-card {
  background: #fff;
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.pathway-icon {
  width: 64px;
  height: 64px;
  background: rgba(196, 154, 60, 0.1);
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pathway-icon svg {
  width: 32px;
  height: 32px;
}

.pathway-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 12px;
}

.pathway-card p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  flex-grow: 1; /* عشان يخلي الأزرار كلها في نفس المستوى من تحت لو اختلف طول النص */
}

/* تنسيق الزرار ليكون بعرض الكارت بالكامل في الشاشات الصغيرة */
.pathway-card a {
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .pathways-section {
    padding: 60px 0 80px;
  }
  .pathways-grid {
    gap: 20px;
  }
  .pathway-card {
    padding: 40px 24px;
  }
}

/* ============================================
   SECTION 2: INVITATION (Ocean Blue Background)
============================================ */
.invitation-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--mid-blue) 0%, #4a6473 100%);
  position: relative;
  overflow: hidden;
}
.invitation-section::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");
}
.invitation-section .section-title.light { color: #fff; }
.invitation-section .section-lead.light strong { color: var(--gold-light); font-weight: 500; font-size: 1.2rem; }

.invitation-grid {
  display: flex;           
  flex-wrap: wrap;          
  justify-content: center;  
  gap: 20px;
  margin: 32px 0 48px;
}

.invitation-item {
  flex: 1 1 280px;           
  max-width: 450px;         
  
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 24px;
  border-radius: 6px;
  transition: transform var(--transition), background var(--transition);
}
.invitation-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}
.invitation-icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.invitation-icon svg { width: 16px; height: 16px; }
.invitation-item span {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: #fff;
}
.invitation-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--light-blue);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  line-height: 1.5;
}

/* ============================================
   SECTION 3: STUCK OR BROKEN
============================================ */
.stuck-section {
  padding: 100px 0;
  background: var(--warm-white);
}
.blue-text { color: var(--mid-blue); font-weight: 600; font-size: 1.2rem; }

.stuck-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 24px;
  margin: 48px 0;
}

.stuck-card {
  flex: 1 1 240px;
  max-width: 280px; 
  
  background: #fff;
  border: 1px solid rgba(97, 125, 140, 0.15);
  border-top: 3px solid var(--mid-blue);
  border-radius: 6px;
  padding: 40px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.stuck-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(97, 125, 140, 0.15); 
}
.stuck-icon {
  width: 56px;
  height: 56px;
  background: rgba(97, 125, 140, 0.1);
  color: var(--mid-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.stuck-icon svg { width: 28px; height: 28px; }
.stuck-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}
.stuck-outro {
  font-size: 1.1rem;
  color: var(--text-mid);
  display: inline-block;
  background: var(--sandy);
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid rgba(166, 138, 86, 0.2);
}

/* ============================================
   SECTION 4: RESTORATION PATHWAY
============================================ */
.restoration-path-section {
  padding: 100px 0;
  background: var(--beige);
  border-top: 1px solid rgba(97, 125, 140, 0.15);
}
.blue-label { color: var(--mid-blue); }
.path-subtitle {
  font-size: 1.2rem;
  color: var(--text-mid);
  margin-bottom: 48px;
  font-family: var(--font-body);
}

.path-steps-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto 48px;
  padding-left: 32px;
}
.path-line {
  position: absolute;
  top: 0; bottom: 0; left: 11px;
  width: 2px;
  background: linear-gradient(to bottom, var(--mid-blue), var(--light-blue));
  opacity: 0.3;
}
.path-step {
  position: relative;
  margin-bottom: 32px;
}
.path-step:last-child { margin-bottom: 0; }
.path-dot {
  position: absolute;
  left: -32px; 
  top: 4px;
  width: 24px;
  height: 24px;
  background: var(--beige);
  border: 3px solid var(--mid-blue);
  border-radius: 50%;
  z-index: 2;
  transition: background var(--transition);
}
.path-step:hover .path-dot {
  background: var(--mid-blue);
}
.path-content {
  background: #fff;
  padding: 20px 24px;
  border-radius: 6px;
  border: 1px solid rgba(97, 125, 140, 0.15);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.path-step:hover .path-content {
  transform: translateX(5px);
  border-color: var(--mid-blue);
}
.path-content h4 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
}

.path-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-secondary-blue {
  display: inline-block;
  background: transparent;
  color: var(--mid-blue);
  padding: 14px 32px;
  border-radius: 3px;
  border: 2px solid var(--mid-blue);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-secondary-blue:hover {
  background: var(--mid-blue);
  color: #fff;
}
.btn-secondary-blue.large { padding: 16px 40px; }

/* Responsive */
@media (max-width: 768px) {
  .invitation-grid { grid-template-columns: 1fr; }
  .path-steps-container { padding-left: 24px; }
  .path-line { left: 7px; }
  .path-dot { left: -24px; width: 20px; height: 20px; }
  .path-cta { flex-direction: column; align-items: center; }
  .path-cta a { width: 100%; max-width: 300px; text-align: center; }
}
/* ---- BOOK ---- */
/* ---- EXPERIENCE SECTION ---- */
.experience-section {
  padding: 100px 0;
  background: var(--warm-white);
  border-top: 1px solid rgba(122, 98, 72, 0.1);
}
.experience-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.experience-body {
  max-width: 800px;
  margin: 0 auto 48px;
  background: var(--sandy);
  padding: 48px;
  border-radius: 6px;
  border: 1px solid rgba(122, 98, 72, 0.15);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.experience-body:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.experience-body p {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.8;
}
.experience-body p:last-of-type {
  margin-bottom: 0;
}
.experience-body strong {
  color: var(--text-dark);
}
.highlight-text {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 8px;
}
.experience-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--deep-blue);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-top: 24px;
  line-height: 1.5;
}
.experience-footer {
  text-align: center;
}
.experience-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.supporting-line {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .experience-body {
    padding: 32px 24px;
  }
  .experience-quote {
    font-size: 1.2rem;
  }
  .experience-btns {
    flex-direction: column;
    align-items: center;
  }
}
/* ---- IMPACT ---- */
/* ---- RESTORATION SECTION ---- */
.restoration-section {
  padding: 100px 0;
  background: var(--beige);
  border-top: 1px solid rgba(122, 98, 72, 0.1);
}
.restoration-header {
  text-align: center;
  margin-bottom: 56px;
}
.restoration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}
.restoration-card {
  background: var(--warm-white);
  border: 1px solid rgba(122, 98, 72, 0.12);
  border-radius: 6px;
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 1;
}
.restoration-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.restoration-card .card-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
  position: absolute;
  top: -10px;
  right: -10px;
  transition: opacity var(--transition), transform var(--transition);
  z-index: -1;
}
.restoration-card:hover .card-num {
  opacity: 0.2;
  transform: scale(1.05);
}
.restoration-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 12px;
  margin-top: 20px;
  line-height: 1.3;
}
.restoration-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.restoration-footer {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .restoration-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .restoration-card {
    padding: 32px 24px;
  }
  .restoration-footer {
    flex-direction: column;
    align-items: center;
  }
  .restoration-footer a {
    width: 100%;
    text-align: center;
    max-width: 300px;
  }
}

/* ---- CARS ---- */
/* ---- C.A.R.S. NETWORK SECTION ---- */
.cars-network-section {
  padding: 100px 0;
  position: relative;
  background: var(--deep-blue);
  color: #fff;
  text-align: center;
}
.cars-network-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(196, 154, 60, 0.12) 0%, transparent 60%);
}
.relative-z {
  position: relative;
  z-index: 2;
}
.section-lead.light {
  color: rgba(255, 255, 255, 0.8);
}
.cars-network-body {
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}
.cars-network-body strong {
  color: #fff;
}
.committed-banner {
  margin-top: 32px;
  padding: 16px 24px;
  border: 1px solid rgba(196, 154, 60, 0.3);
  background: rgba(196, 154, 60, 0.1);
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold);
}
.cars-metrics-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 48px 24px;
  margin-bottom: 56px;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.since-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cars-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.c-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.c-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.c-label {
  font-family: var(--font-ui);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}
.compassion-line {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 32px;
}
.cars-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cars-network-body {
    font-size: 1.05rem;
  }
  .committed-banner {
    font-size: 12px;
    padding: 16px;
  }
  .cars-metrics-wrapper {
    padding: 40px 24px;
  }
  .c-num {
    font-size: 2.5rem;
  }
  .compassion-line {
    font-size: 1.3rem;
  }
  .cars-btns {
    flex-direction: column;
    align-items: center;
  }
  .cars-btns a {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* ---- STORIES ---- */
/* ---- SECTION 8: STORY FOCUS ---- */
.story-focus-section {
  padding: 100px 0;
  background: var(--sandy);
}
.story-focus-inner {
  max-width: 800px;
  margin: 0 auto;
  background: var(--warm-white);
  padding: 64px 48px;
  border-radius: 8px;
  border: 1px solid rgba(122, 98, 72, 0.15);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
}
.story-quote-mark {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
  background: var(--sandy);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}
.story-focus-body {
  margin: 32px 0 40px;
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.story-focus-body p {
  margin-bottom: 16px;
}
.story-focus-body strong {
  color: var(--text-dark);
  font-size: 1.25rem;
}
.story-conclusion {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--deep-blue);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(196, 154, 60, 0.2);
}
.story-focus-footer {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- SECTION 9: PARTNERS ---- */
.partners-section {
  padding: 100px 0;
  background: var(--warm-white);
  border-top: 1px solid rgba(122, 98, 72, 0.1);
}
.partners-header {
  text-align: center;
  margin-bottom: 48px;
}
.partners-benefits-grid {
  display: flex;
  flex-direction: row;     
  flex-wrap: nowrap;      
  justify-content: center; 
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 48px;
  overflow-x: auto;        
  padding-bottom: 10px;    
}

.benefit-item {
  flex: 0 0 auto;          
  width: 220px;            
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--sandy);
  padding: 24px;
  border-radius: 6px;
  border: 1px solid rgba(122, 98, 72, 0.12);
  transition: transform 0.3s ease;
}
.benefit-item:hover {
  transform: translateY(-3px);
}
.benefit-icon {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}
.benefit-text {
  font-size: 1.05rem;
  color: var(--text-mid);
}
.benefit-text strong {
  color: var(--deep-blue);
}
.partners-footer {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .partners-benefits-grid {
    flex-wrap: wrap;       
    justify-content: flex-start;
  }
  
  .benefit-item {
    width: 100%;
  }
}

/* ============================================
   SECTION 10: MODERN CTA (CARD STYLE)
============================================ */
.modern-cta-section {
  padding: 120px 0;
  background: var(--beige); 
  position: relative;
  background-image: radial-gradient(rgba(122, 98, 72, 0.08) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.cta-invitation-card {
  background: linear-gradient(145deg, var(--deep-blue) 0%, #112a46 100%);
  border-radius: 8px;
  padding: 70px 60px;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(196, 154, 60, 0.25);
  position: relative;
  overflow: hidden;
}

.cta-invitation-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 154, 60, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content-side {
  flex: 1;
  position: relative;
  z-index: 2;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.cta-body {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 500px;
}

.cta-body .gold-text {
  color: var(--gold);
  font-weight: 500;
  font-size: 1.2rem;
}

.cta-action-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 280px;
  position: relative;
  z-index: 2;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 60px;
}

.cta-btn {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 992px) {
  .cta-invitation-card {
    flex-direction: column;
    padding: 56px 40px;
    text-align: center;
    gap: 48px;
  }
  .cta-body {
    margin: 0 auto;
  }
  .cta-action-side {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-top: 48px;
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  .cta-invitation-card {
    padding: 40px 24px;
  }
}

/* ============================================
   SITE FOOTER (Classic Layout)
============================================ */
.site-footer {
  background-color: #05101a; 
  border-top: 4px solid var(--gold);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-ui);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

/* -- Column 1: Brand -- */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 8px;
}
.footer-logo .logo-symbol { color: var(--gold); font-size: 18px; }
.footer-logo .logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.footer-logo .logo-text em { font-style: italic; color: var(--gold-light); }

.footer-tagline {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 32px;
}

.footer-scripture {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 4px 4px 0;
  max-width: 380px;
}
.footer-scripture blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 8px;
}
.footer-scripture cite {
  font-size: 12px;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* -- General Columns (Links & Contact) -- */
.footer-heading {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-menu, .footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li, .footer-contact-info li {
  margin-bottom: 14px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}
.footer-col a:hover {
  color: var(--gold);
  transform: translateX(4px); 
}
.highlight-link {
  color: var(--gold) !important;
  font-weight: 500;
}

/* -- Socials -- */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #fff;
  transition: background var(--transition), transform var(--transition);
}
.footer-socials a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}
.footer-socials svg {
  width: 18px;
  height: 18px;
}

/* -- Bottom Bar -- */
.footer-bottom-bar {
  background: #030a10;
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom-bar p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
  margin: 0;
}

/* -- Responsive Footer -- */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .brand-col {
    grid-column: 1 / -1; 
  }
  .footer-scripture {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-scripture {
    border-left: none;
    border-top: 3px solid var(--gold);
    border-radius: 0 0 4px 4px;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-col a:hover {
    transform: none; 
  }
  .footer-socials {
    justify-content: center;
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(13,45,78,0.98);
    padding: 20px 24px;
    gap: 18px;
  }
  .hamburger { display: flex; }
  .hero { padding: 100px 24px 70px; }
  .book-inner { flex-direction: column; align-items: flex-start; }
  .book-3d { transform: rotateY(0); }
  .cars-flow { gap: 6px; }
  .final-btns { flex-direction: column; align-items: center; }
  .steps-container { margin: 36px 0 36px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .cars-flow { justify-content: center; }
}


/* ============================================
   ABOUT DAVID - BIOGRAPHY PAGE STYLES
============================================ */

/* Helper Classes */
.text-center { text-align: center; }
.mt-4 { margin-top: 48px; }
.max-w-800 { max-width: 800px; margin: 0 auto; }

/* Bio Section Typography */
.bio-heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 24px;
  line-height: 1.2;
}

.bio-heading em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
}

/* Part 1: Grid & Photo */
.bio-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

.bio-image-wrapper {
  position: relative;
  padding-top: 20px;
  padding-left: 20px;
}

.bio-image-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 4px;
  z-index: 1;
}

.bio-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
  transform: translate(-15px, -15px);
  transition: transform var(--transition);
  display: block;
  object-fit: cover;
}

.bio-image-wrapper:hover .bio-img {
  transform: translate(-5px, -5px);
}

.bio-text-col p, .bio-text-centered p {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Part 2: Ministry Cards */
.bio-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.bio-card {
  background: #fff;
  padding: 48px 40px;
  border-radius: 6px;
  border: 1px solid rgba(196,154,60,0.15);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.bio-card p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}

.bio-card p:last-child {
  margin-bottom: 0;
}

/* Part 3: Author Highlight */
.bio-highlight {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--deep-blue) !important; /* Overriding default text color */
  border-top: 2px solid rgba(196,154,60,0.3);
  border-bottom: 2px solid rgba(196,154,60,0.3);
  padding: 32px 0;
  margin-top: 40px;
}

/* Responsive Styles for Bio Page */
@media (max-width: 992px) {
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .bio-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
  .bio-cards-grid {
    grid-template-columns: 1fr;
  }
  .bio-card {
    padding: 32px 24px;
  }
}

/* ============================================
   SPEAKING PAGE STYLES (Topics & Forms)
============================================ */

/* Topics Grid */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.topic-card {
  background: #fff;
  border: 1px solid rgba(97, 125, 140, 0.15);
  border-radius: 6px;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}

.topic-icon {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.topic-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin: 0;
  line-height: 1.4;
}

/* Booking Form Wrapper */
.booking-wrapper {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(196,154,60,0.2);
}

.booking-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 16px;
}

.booking-desc strong {
  color: var(--gold-dark);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 8px;
}

/* Form Styles */
.custom-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  gap: 24px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-group label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--deep-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(97, 125, 140, 0.3);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,60,0.1);
}

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

/* Responsive Styles for Form & Topics */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 24px;
  }
  .booking-wrapper {
    padding: 40px 24px;
  }
}


/* ============================================
   THE BOOK - LANDING PAGE STYLES
============================================ */

/* Premium Hero Section */
.book-premium-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 80px; 
  background: var(--deep-blue);
  background-image: radial-gradient(circle at 70% 50%, rgba(196,154,60,0.15) 0%, transparent 60%);
}

.book-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.book-hero-text {
  flex: 1.2;
}

.book-hero-sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
}

.book-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Book Image & Glow Effect */
.book-hero-visual {
  flex: 0.8;
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.book-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(196,154,60,0.6) 0%, rgba(196,154,60,0) 70%);
  filter: blur(40px);
  z-index: 0;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.book-large-img {
  width: 420px;
  max-width: 100%;
  z-index: 2;
  position: relative;
}

/* Trailer Section */
.book-trailer-section {
  padding: 100px 0;
  background: #0d1a26; /* Darker blue for cinematic feel */
  color: #fff;
}

.book-trailer-section .section-title {
  color: #fff;
}

/* Responsive Video Container (For YouTube Iframes) */
.video-container-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(196,154,60,0.3);
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Features List */
.book-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.book-features-list li {
  font-size: 1.1rem;
  color: var(--deep-blue);
  margin-bottom: 12px;
  font-weight: 500;
}

/* Video Testimonials Grid */
.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.video-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

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

.video-responsive-sm {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-responsive-sm iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-card-body {
  padding: 24px;
}

.star-rating {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.video-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--deep-blue);
  margin-bottom: 8px;
}

.video-card-body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .book-hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .book-hero-sub {
    margin: 0 auto 40px;
  }
  .book-hero-actions {
    justify-content: center;
  }
  .book-large-img {
    width: 320px;
  }
  .cta-action-side {
    flex-direction: column !important;
  }
}

/* ============================================
   VIP INVITATION PAGE STYLES (3-COLUMN HERO)
============================================ */
.vip-body {
  background: var(--deep-blue);
  background-image: radial-gradient(circle at 50% 0%, rgba(196,154,60,0.1) 0%, transparent 70%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.vip-section {
  width: 100%;
  position: relative;
}

.vip-glow-bg-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(196,154,60,0.15) 0%, rgba(196,154,60,0) 70%);
  filter: blur(60px);
  z-index: 0;
}

/* 3-Column Grid */
.vip-card {
  max-width: 1250px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr; /* القسم الأوسط أكبر عشان الكتاب */
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(196,154,60,0.4);
  animation: vipFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes vipFadeIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- Left Side: Details --- */
.vip-details-side {
  background: var(--warm-white);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.details-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--deep-blue);
  margin-bottom: 24px;
  text-align: center;
}

.details-heading em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
}

.vip-message {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.8;
  text-align: center;
  border-bottom: 1px solid rgba(196,154,60,0.2);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.vip-info-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.vip-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  font-size: 24px;
}

.vip-info-item strong {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--gold-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.vip-info-item p {
  color: var(--deep-blue);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.vip-gift-note {
  background: var(--beige);
  padding: 16px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(196,154,60,0.3);
}

.vip-gift-note p {
  font-size: 0.95rem;
  color: var(--deep-blue);
  margin: 0;
}

.vip-gift-note em {
  color: var(--gold-dark);
  font-size: 0.85rem;
}

/* --- Center Side: HERO BOOK --- */
.vip-book-hero-side {
  background: var(--deep-blue);
  position: relative;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.vip-glow-bg-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(196,154,60,0.4) 0%, transparent 65%);
  z-index: -1;
}

.vip-label-gold {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.vip-title-light {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
}

.vip-title-light em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.vip-hero-book-wrapper {
  margin: 32px 0;
  perspective: 1000px;
}

.vip-hero-book-img {
  width: 280px;
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.7), inset -2px 0 5px rgba(255,255,255,0.2);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.vip-hero-book-img:hover {
  transform: translateY(-8px) scale(1.02);
}

.vip-honoree-light {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.vip-link-light {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 1.5px;
}

.vip-link-light:hover {
  color: #fff;
}

/* --- Right Side: RSVP Form --- */
.vip-rsvp-side {
  background: #fff;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rsvp-header {
  text-align: center;
  margin-bottom: 32px;
}

.rsvp-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--deep-blue);
  margin-bottom: 8px;
}

.rsvp-header p {
  font-family: var(--font-ui);
  color: var(--gold-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

.rsvp-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
  text-align: center;
}

.date-selector {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.date-option {
  cursor: pointer;
  flex: 1;
}

.date-option input {
  display: none;
}

.date-card {
  border: 1px solid rgba(97, 125, 140, 0.2);
  border-radius: 6px;
  padding: 12px 4px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--warm-white);
}

.date-option input:checked + .date-card {
  background: var(--deep-blue);
  border-color: var(--deep-blue);
}

.d-month {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 1px;
}

.d-day {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep-blue);
  line-height: 1.2;
}

.d-weekday {
  font-size: 9px;
  color: var(--text-mid);
}

/* حالة التحديد (Checked) */
.date-option input:checked + .date-card .d-month,
.date-option input:checked + .date-card .d-day,
.date-option input:checked + .date-card .d-weekday {
  color: #fff;
}
.date-option input:checked + .date-card .d-month {
  color: var(--gold);
}

.vip-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(97, 125, 140, 0.3);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 16px;
  background: var(--warm-white);
}

.guest-counter-group {
  margin-top: 24px;
  text-align: center;
}

.counter-widget {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(97, 125, 140, 0.3);
  border-radius: 30px;
  overflow: hidden;
  background: var(--warm-white);
}

.counter-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--deep-blue);
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.counter-btn:hover {
  background: rgba(196,154,60,0.1);
}

.counter-widget input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--deep-blue);
  pointer-events: none;
}

.vip-submit {
  width: 100%;
  margin-top: 24px;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(196,154,60,0.3);
}

/* --- Responsive adjustments for Mobile/Tablet --- */
@media (max-width: 1024px) {
  .vip-card {
    grid-template-columns: 1fr;
    margin: 0 20px;
  }
  .vip-book-hero-side {
    order: -1; /* يخلي الكتاب يظهر أول حاجة فوق في الموبايل */
    border-left: none;
    border-right: none;
    border-bottom: 2px solid var(--gold);
  }
}

/* ============================================
   OVERVIEW & PURPOSE SECTION
============================================ */
.overview-section {
  padding: 100px 0;
  background: var(--warm-white);
  border-top: 1px solid rgba(97, 125, 140, 0.1); /* لمسة من الأزرق الهادئ */
}

.overview-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.goals-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.goal-item {
  flex: 1 1 300px;
  max-width: 400px;
  background: #fff;
  border: 1px solid rgba(97, 125, 140, 0.15);
  border-left: 4px solid var(--gold); /* خط ذهبي مميز على اليسار */
  border-radius: 6px;
  padding: 32px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}

.goal-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-left-color: var(--mid-blue); /* يتغير للأزرق عند مرور الماوس */
}

.goal-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--mid-blue);
  line-height: 1;
  opacity: 0.9;
  margin-top: -4px;
}

.goal-item p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.6;
}

.goal-item p strong {
  color: var(--text-dark);
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ---- NAV INVITE BUTTON (TEAL) ---- */
.btn-nav-invite {
  background: var(--gold); /* لون Teal احترافي */
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background var(--transition), transform 0.2s;
  border: 1px solid transparent;
}

.btn-nav-invite:hover {
  background: var(--gold-dark); /* درجة Teal أغمق عند مرور الماوس */
  color: #ffffff;
  transform: translateY(-2px);
}

/* مسافة علوية للصفحات الداخلية لتعويض الـ Navbar الثابت */
.page-top-spacing {
  padding-top: 100px;
}

/* تأكد من وجود باقي أكواد هذه الصفحة (story-moments-section و moment-card 
و story-pull-quote) التي أرسلتها لك في الرسالة السابقة في ملف الـ style.css 
*/
/* ============================================
   SECTION 4: THE STORY MOMENTS
============================================ */
.story-moments-section {
  padding: 100px 0;
  background: var(--warm-white); /* نفس لون خلفية الموقع المريحة للعين */
}

.story-moments-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 2-Column Grid Setup */
.story-moments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

/* Story Card Styling */
.moment-card {
  background: #fff;
  border: 1px solid rgba(97, 125, 140, 0.15); /* إطار خفيف جداً */
  border-radius: 6px;
  padding: 32px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

/* Numbered Circle */
.moment-num {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Card Content */
.moment-content h4 {
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  margin-top: 6px; /* لضبط المحاذاة مع الدائرة */
  line-height: 1.4;
}

.moment-content p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

/* توسيط الكارت السابع (لأنهم عدد فردي) */
.card-centered {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   TEAL PULL QUOTE
============================================ */
.story-pull-quote {
  background: rgba(15, 110, 86, 0.08); /* لون Teal فاتح جداً للخلفية */
  border-left: 6px solid #0F6E56;      /* إطار Teal سميك على اليسار */
  padding: 48px 40px;
  border-radius: 0 6px 6px 0;
  text-align: left;
}

.story-pull-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: #0F6E56; /* نص الاقتباس بلون الـ Teal الداكن */
  line-height: 1.5;
  margin-bottom: 16px;
}

.story-pull-quote cite {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive / التوافق مع الشاشات الصغيرة */
@media (max-width: 992px) {
  .story-pull-quote blockquote {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .story-moments-grid {
    grid-template-columns: 1fr; /* تحويل لعمود واحد في الموبايل */
    gap: 24px;
  }
  .card-centered {
    max-width: 100%;
    grid-column: auto;
  }
  .moment-card {
    padding: 24px 20px;
    gap: 16px;
  }
  .story-pull-quote {
    padding: 32px 24px;
  }
  .story-pull-quote blockquote {
    font-size: 1.3rem;
  }
}

/* ============================================
   INTERNAL PAGE HERO (Dark Theme - Reusable)
============================================ */
.page-hero {
  position: relative;
  min-height: 60vh; /* طول مناسب لبداية الصفحات الداخلية */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 80px;
  background: var(--deep-blue);
  overflow: hidden;
  text-align: center;
}

/* الإضاءة الذهبية في المنتصف */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(166, 138, 86, 0.12) 0%, transparent 60%),
              linear-gradient(180deg, var(--deep-blue) 0%, #0d0b0a 100%);
}

/* شبكة المربعات الخفيفة (Grid Texture) */
.page-hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
}

/* البادج الصغير (مثل: INVITE TO SPEAK) */
.page-hero-badge {
  display: inline-block;
  border: 1px solid rgba(166, 138, 86, 0.4);
  background: rgba(0, 0, 0, 0.2);
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 24px;
}

/* العنوان الرئيسي */
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

/* النص الفرعي */
.page-hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* ============================================================
   NAV LOGO — final consolidated rules
   ------------------------------------------------------------
   Supports both HTML variants used across the site:

     A) canonical (index.html and 7 other pages):
        <a class="nav-logo">
          <img class="logo-img" ...>
          <div class="logo-text">
            <span class="logo-title">David</span>
            <span class="logo-subtitle">Soliman</span>
          </div>
        </a>

     B) legacy (footer of all pages, plus speaking.html navbar):
        <a class="nav-logo/footer-logo">
          <span class="logo-symbol">✦</span>
          <span class="logo-text">BHG <em>America</em></span>
        </a>

   NOTE: earlier revisions of this file had 6 overlapping copies
   of these rules with different logo sizes (42px, 46px, 80px,
   100px). The last-declared one (100px square) was making the
   navbar overflow. All duplicates removed; this is the single
   source of truth.
   ============================================================ */

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}

/* Variant A — image logo */
.nav-logo .logo-img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}
.nav-logo:hover .logo-img { transform: scale(1.05); }

/* Variant A — two-line name */
.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.nav-logo .logo-subtitle {
  margin-top: 3px;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold-light);
}

/* --- Tablet --- */
@media (max-width: 900px) {
  .nav-logo { gap: 10px; }
  .nav-logo .logo-img { height: 38px; max-width: 120px; }
  .nav-logo .logo-title { font-size: 1.1rem; }
  .nav-logo .logo-subtitle { font-size: 0.62rem; letter-spacing: 2px; }
}

/* --- Phone --- */
@media (max-width: 480px) {
  .nav-logo { gap: 8px; }
  .nav-logo .logo-img { height: 32px; max-width: 100px; }
  .nav-logo .logo-title { font-size: 0.95rem; }
  .nav-logo .logo-subtitle { font-size: 0.55rem; letter-spacing: 1.5px; }
}