/* ==========================================================================
   MANSIB IBRAHIM — THE HOST & THE STORY
   Modern Trendy Dark UI with White Brand Navbar & Corporate LEC Colors
   Primary Navy: #141c47 | Accent Red: #bf710b | Accent Gold: #e5b842
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Root Variables
   -------------------------------------------------------------------------- */
:root {
  /* Official Brand Color Palette */
  --primary-navy: #141c47;
  --primary-navy-dark: #0d1230;
  --accent-red: #bf710b;
  --accent-red-glow: rgb(228 142 24);
  --primary-gold: #d29854;
  --primary-gold-glow: rgba(229, 184, 66, 0.45);
  
  /* Backgrounds & Glass */
  --bg-dark: #070a16;
  --bg-card: rgba(20, 28, 71, 0.65);
  --bg-card-hover: rgba(7, 11, 30, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-navy: rgba(20, 28, 71, 0.4);
  --border-red: rgb(228 142 24);
  --border-gold: rgba(229, 184, 66, 0.35);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-sub: #cbd5e1;

  /* Typography */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Shadows & Effects */
  --shadow-glow: 0 12px 50px -10px rgba(228, 29, 37, 0.25);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.5);
  --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --bs-secondary-color: rgb(240 240 240 / 75%) !important;
}

/* --------------------------------------------------------------------------
   2. Global Resets & Base Styles
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  line-height: 1.65;
  position: relative;
}



[data-aos] {
  max-width: 100% !important;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-red);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold);
}

/* --------------------------------------------------------------------------
   3. Vector Graphics & Layered Background Patterns
   -------------------------------------------------------------------------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  background-image: 
    radial-gradient(rgba(228, 29, 37, 0.1) 1.5px, transparent 1.5px),
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 36px 36px, 72px 72px, 72px 72px;
  background-position: 0 0, 0 0, 0 0;
  opacity: 0.85;
}

.bg-glow-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.32;
  animation: orbFloat 16s infinite alternate ease-in-out;
}

.glow-orb-gold {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-navy), transparent 70%);
  top: -120px;
  right: -120px;
}

.glow-orb-red {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--accent-red), transparent 70%);
  top: 35%;
  left: -180px;
  animation-delay: -6s;
}

.glow-orb-blue {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, var(--primary-gold), transparent 70%);
  bottom: 5%;
  right: -180px;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 60px) scale(1.12); }
  100% { transform: translate(-30px, 30px) scale(0.92); }
}

.vector-section-divider {
  position: relative;
}

.vector-section-divider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(228, 29, 37, 0.3) 50%, transparent 100%);
}

/* --------------------------------------------------------------------------
   4. Glassmorphism Components & UI Elements
   -------------------------------------------------------------------------- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 2.2rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-red);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 50px;
  background: rgba(228, 29, 37, 0.12);
  border: 1px solid #ce9450;
  color: #ce9450;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(228, 29, 37, 0.15);
}

.text-gradient-gold {
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold) 60%, #fff7db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-red {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-red) 70%, #ff8080 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Custom Buttons */
.btn-trendy {
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-red) 0%, #9c7139 100%);
  color: #ffffff;
  box-shadow: 0 6px 25px rgb(151 83 10);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #914c08 0%, var(--accent-red) 100%);
  color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(228, 29, 37, 0.6);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: var(--accent-red);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   6. Placeholder Image Containers
   -------------------------------------------------------------------------- */
.img-placeholder-slot {
  position: relative;
  width: 100%;
  min-height: 220px;
  background: rgba(13, 20, 48, 0.6);
  border: 2px dashed rgb(228 142 24);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 26px;
  text-align: center;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.img-placeholder-slot:hover {
  border-color: var(--accent-red);
  background: rgba(20, 28, 71, 0.85);
  box-shadow: 0 0 30px rgba(228, 29, 37, 0.25);
  transform: scale(1.01);
}




.img-placeholder-slot span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.03em;
}

.img-placeholder-slot small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.img-placeholder-slot img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   7. BRAND HEADER SECTION (#2d317d Indigo Navy Background)
   -------------------------------------------------------------------------- */
.navbar-trendy {
background: #000000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #595959;
    padding: 15px 0;
    transition: var(--transition-fast);
    box-shadow: 0 4px 25px rgba(45, 49, 125, 0.35);
}

.navbar-trendy.scrolled {
  padding: 8px 0;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.4);
}

/* Header Logo Image Styling */
.header-logo-slot {
  display: flex;
  align-items: center;
}

.icon-boxlogo img {
  height: 50px;
  width: auto;
  max-height: 50px;
  object-fit: contain;
  display: block;
  transition: var(--transition-fast);
  position: relative;
  top: -2px;
}

/* Desktop Navigation Links on #2d317d Header */
.nav-link-trendy {
  color: #f8fafc !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px !important;
  border-radius: 30px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link-trendy:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.15);
}

.nav-link-trendy.active {
  color: #ffffff !important;
}

.nav-link-trendy.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

/* Mobile Toggler Icon for White Header */
.navbar-trendy .navbar-toggler {
  color: var(--primary-navy) !important;
}

/* Offcanvas Mobile Drawer */
.offcanvas-dark {
  background: #070b17 !important;
  color: var(--text-main);
  border-left: 1px solid var(--border-glass);
}

/* --------------------------------------------------------------------------
   8. Hero Section (PDF Page 1)
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 130px 0 100px;
  position: relative;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1;
  margin-top: 15px;
  margin-bottom: 22px;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  color: var(--text-sub);
  max-width: 640px;
  margin-bottom: 35px;
}

.hero-profile-card {
  border: 1px solid var(--border-red);
  background: linear-gradient(145deg, rgba(228, 29, 37, 0.12) 0%, rgba(20, 28, 71, 0.75) 100%);
  border-radius: 28px;
  padding: 18px;
  position: relative;
  box-shadow: var(--shadow-glow);
}

.hero-img-slot {
  min-height: 550px;
  border-radius: 20px;
}

/* --------------------------------------------------------------------------
   9. Profile & Details Section (PDF Page 2)
   -------------------------------------------------------------------------- */
.profile-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(10, 16, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition-fast);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.profile-detail-item:hover {
  background: rgba(22, 33, 75, 0.95);
  border-color: #d29854;
  transform: translateX(6px);
  box-shadow: 0 8px 25px rgba(210, 152, 84, 0.25);
}

.profile-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(210, 152, 84, 0.25) 0%, rgba(228, 29, 37, 0.25) 100%);
  border: 1px solid rgba(210, 152, 84, 0.5);
  color: #d29854;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  transition: var(--transition-fast);
}

.profile-detail-item:hover .profile-icon {
  background: #d29854;
  color: #050811;
  border-color: #d29854;
  transform: scale(1.1) rotate(4deg);
}

.detail-label {
  color: #d29854 !important;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.detail-value {
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  display: block;
}

.detail-sub {
  color: #cbd5e1 !important;
  font-size: 0.825rem;
  display: block;
  margin-top: 4px;
  font-weight: 500;
}

.quote-box {
  border-left: 4px solid var(--accent-red);
  padding: 22px 26px;
  background: rgba(228, 29, 37, 0.06);
  border-radius: 0 18px 18px 0;
  font-size: 1.18rem;
  font-style: italic;
  color: #fff;
  margin-top: 28px;
  box-shadow: inset 0 0 20px rgba(228, 29, 37, 0.05);
}

/* --------------------------------------------------------------------------
   10. Conversation Guidelines (PDF Page 3) - Vector Background & Card Styling
   -------------------------------------------------------------------------- */
#guidelines {
  position: relative;
  overflow: hidden;
}

#guidelines::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(210, 152, 84, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(228, 29, 37, 0.12) 0%, transparent 45%),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.guideline-card-no {
  border: 1px solid rgba(228, 29, 37, 0.35);
  background: 
    radial-gradient(circle at 90% 10%, rgba(228, 29, 37, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(20, 28, 71, 0.6) 0%, transparent 50%),
    rgba(10, 16, 38, 0.85);
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(228, 29, 37, 0.25);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.guideline-card-yes {
  border: 1px solid rgba(210, 152, 84, 0.35);
  background: 
    radial-gradient(circle at 10% 10%, rgba(210, 152, 84, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 90% 90%, rgba(20, 28, 71, 0.6) 0%, transparent 50%),
    rgba(10, 16, 38, 0.85);
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(210, 152, 84, 0.25);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Translucent Background Vector Watermark Icons */
.vector-watermark-icon {
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 12rem;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  user-select: none;
}

.vector-watermark-gold {
  color: #d29854;
}

.vector-watermark-red {
  color: #bf710b;
}

.guideline-pill-no {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 5px 5px;
  border-radius: 12px;
  background: rgba(228, 29, 37, 0.05);
  border: 1px solid rgba(228, 29, 37, 0.15);
  color: #f8fafc;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition-fast);
  position: relative;
  z-index: 1;
}

.guideline-pill-no:hover {
  background: rgba(228, 29, 37, 0.16);
  border-color: #bf710b;
  transform: translateX(4px);
  color: #ffffff;
}

.guideline-pill-yes {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 5px 5px;
  border-radius: 12px;
  background: rgba(210, 152, 84, 0.05);
  border: 1px solid rgba(210, 152, 84, 0.15);
  color: #f8fafc;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition-fast);
  position: relative;
  z-index: 1;
}

.guideline-pill-yes:hover {
  background: rgba(210, 152, 84, 0.16);
  border-color: #d29854;
  transform: translateX(4px);
  color: #ffffff;
}

.guideline-icon-no {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(228, 29, 37, 0.2);
  color: #ff4d55;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(228, 29, 37, 0.25);
}

.guideline-icon-yes {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(210, 152, 84, 0.2);
  color: #d29854;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(210, 152, 84, 0.25);
}

/* Bottom Image Container in Guideline Card */
.guideline-bottom-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(228, 29, 37, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
  transition: var(--transition-fast);
}

.guideline-bottom-img-wrap:hover {
  border-color: var(--accent-red);
  transform: scale(1.01);
  box-shadow: 0 15px 40px rgba(228, 29, 37, 0.3);
}

.guideline-bottom-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.privacy-banner-card {
  background: linear-gradient(135deg, rgba(20, 28, 71, 0.9) 0%, rgba(13, 20, 48, 0.95) 100%);
  border: 1px solid rgb(228 142 24);
  border-radius: 20px;
  padding: 20px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.pillar-card {
  text-align: center;
  padding: 24px 14px;
  border-radius: 20px;
  background: rgba(10, 16, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  height: 100%;
}

.pillar-card:hover {
  background: rgba(22, 33, 75, 0.95);
  border-color: #d29854;
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(210, 152, 84, 0.25);
}

.pillar-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(210, 152, 84, 0.22) 0%, rgba(228, 29, 37, 0.22) 100%);
  border: 1px solid rgba(210, 152, 84, 0.45);
  color: #d29854;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: var(--transition-fast);
}

.pillar-icon svg {
  width: 58px;
  height: 58px;
  stroke: #d29854;
  transition: var(--transition-fast);
}

.pillar-card:hover .pillar-icon {
  background: #d29854;
  color: #050811;
  border-color: #d29854;
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 10px 25px rgba(210, 152, 84, 0.45);
}

.pillar-card:hover .pillar-icon svg {
  stroke: #050811;
}

/* --------------------------------------------------------------------------
   11. Impact & Stats (PDF Page 4) - 3 in a Row Grid Layout
   -------------------------------------------------------------------------- */
.stat-box-modern {
  padding: 26px 18px;
  border-radius: 22px;
  background: 
    radial-gradient(circle at 10% 10%, rgba(210, 152, 84, 0.1) 0%, transparent 50%),
    rgba(10, 16, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  height: 100%;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.stat-box-modern:hover {
  border-color: #d29854;
  transform: translateY(-8px);
  background: 
    radial-gradient(circle at 50% 0%, rgba(210, 152, 84, 0.2) 0%, transparent 60%),
    rgba(18, 26, 60, 0.95);
  box-shadow: 0 15px 40px rgba(210, 152, 84, 0.25);
}

.stat-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(210, 152, 84, 0.22) 0%, rgba(228, 29, 37, 0.22) 100%);
  border: 1px solid rgba(210, 152, 84, 0.45);
  color: #d29854;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.stat-icon-wrap svg {
  width: 36px;
  height: 36px;
  stroke: #d29854;
  transition: var(--transition-fast);
}

.stat-box-modern:hover .stat-icon-wrap {
  background: #d29854;
  color: #050811;
  border-color: #d29854;
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 10px 25px rgba(210, 152, 84, 0.45);
}

.stat-box-modern:hover .stat-icon-wrap svg {
  stroke: #050811;
}

.stat-number {
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-label {
  color: #cbd5e1;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 4px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(20, 28, 71, 0.75) 0%, rgba(10, 14, 38, 0.9) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-fast);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(229, 184, 66, 0.2);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-gold) 0%, var(--accent-red) 100%);
  border-radius: 4px 0 0 4px;
  opacity: 0.85;
  transition: var(--transition-fast);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(229, 184, 66, 0.12) 0%, transparent 70%);
  pointer-events: none;
  transition: var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 184, 66, 0.65);
  box-shadow: 0 18px 45px -10px rgba(210, 152, 84, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.testimonial-card:hover::before {
  opacity: 1;
  box-shadow: 0 0 12px rgba(229, 184, 66, 0.8);
}

.testimonial-card:hover::after {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(229, 184, 66, 0.25) 0%, transparent 70%);
}

.star-rating i {
  font-size: 0.85rem;
  color: var(--primary-gold);
  filter: drop-shadow(0 0 4px rgba(229, 184, 66, 0.4));
}

.quote-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(229, 184, 66, 0.12);
  border: 1px solid rgba(229, 184, 66, 0.3);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition-fast);
}

.testimonial-card:hover .quote-icon-badge {
  background: var(--primary-gold);
  color: var(--primary-navy-dark);
  transform: rotate(-10deg) scale(1.08);
  box-shadow: 0 0 15px rgba(229, 184, 66, 0.5);
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: #f8fafc !important;
  margin-bottom: 0;
}

.border-gold-subtle {
  border-color: rgba(229, 184, 66, 0.18) !important;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(229, 184, 66, 0.2) 0%, rgba(228, 29, 37, 0.2) 100%);
  border: 1px solid rgba(229, 184, 66, 0.4);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.testimonial-card:hover .author-avatar {
  border-color: var(--primary-gold);
  box-shadow: 0 0 12px rgba(229, 184, 66, 0.35);
}

.author-name {
  font-family: var(--font-heading);
  font-size: 0.925rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--primary-gold) !important;
}

.author-role {
  font-size: 0.775rem;
  letter-spacing: 0.02em;
  color: #94a3b8;
}

.badge-pill-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(229, 184, 66, 0.12);
  border: 1px solid rgba(229, 184, 66, 0.4);
  color: var(--primary-gold);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   12. Featured Conversations (PDF Page 5)
   -------------------------------------------------------------------------- */
.conversation-slot {
  min-height: 350px;
  border-radius: 20px;
}

/* --------------------------------------------------------------------------
   13. Popular Episodes / Reels (6 in a row Desktop, Horizontal Slider Mobile/Tablet)
   -------------------------------------------------------------------------- */
.reels-grid-slider {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.reel-card-col {
  width: 100%;
}

.reel-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: #080d19;
  transition: var(--transition-smooth);
}

.reel-card:hover {
  border-color: var(--accent-red);
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

/* Tablet View (768px - 991px): ~4.2 slides visible */
@media (max-width: 991px) {
  .reels-grid-slider {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 20px;
    padding-left: 4px;
    padding-right: 4px;
    scrollbar-width: none;
  }

  .reels-grid-slider::-webkit-scrollbar {
    display: none;
  }

  .reels-grid-slider .reel-card-col {
    flex: 0 0 calc(23.8% - 12px);
    min-width: calc(23.8% - 12px);
    scroll-snap-align: start;
  }
}

/* Mobile View (<575px): ~2.3 slides visible */
@media (max-width: 575px) {
  .reels-grid-slider .reel-card-col {
    flex: 0 0 calc(43.5% - 10px);
    min-width: calc(43.5% - 10px);
    scroll-snap-align: start;
  }

  .reel-iframe-wrapper {
    height: 300px !important;
  }

  .reel-grid-iframe {
    height: 480px !important;
    top: -42px !important;
    transform: translateX(-50%) scale(0.72) !important;
  }
}

.reel-slot {
  min-height: 380px;
  border-radius: 0;
  border: none;
}

.reel-card-interactive {
  cursor: pointer;
}

.reel-iframe-wrapper {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  background: #000;
  border-radius: 22px;
}

.reel-grid-iframe {
  position: absolute;
  top: -50px;
  left: 50%;
  width: 142%;
  height: 530px;
  border: none;
  pointer-events: none;
  transform: translateX(-50%) scale(1.15);
}

.reel-card-info {
  position: absolute;
  bottom: 50px;
  left: 12px;
  right: 12px;
  z-index: 3;
  background: rgba(7, 10, 22, 0.85);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.instagram-corner-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: var(--transition-fast);
}

.youtube-corner-badge {
  display: none !important;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ff0000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: var(--transition-fast);
}

.reel-card:hover .instagram-corner-badge,
.reel-card:hover .youtube-corner-badge {
  transform: scale(1.15) rotate(10deg);
}

.youtube-embed-iframe {
  position: absolute;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none;
  pointer-events: none;
  transform: none !important;
  object-fit: cover;
}

.reel-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-card:hover .reel-grid-img {
  transform: scale(1.08);
}

.reel-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  background: rgba(20, 28, 71, 0.92);
  backdrop-filter: blur(10px);
  padding: 4px 12px;
  border-radius: 30px;
  border: 1px solid var(--border-gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.775rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.88) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: var(--transition-fast);
}

.reel-card:hover .play-overlay {
  opacity: 1;
}

.play-btn-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent-red);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 0 30px rgba(228, 29, 37, 0.7);
  transition: var(--transition-fast);
}

.reel-card:hover .play-btn-circle {
  transform: scale(1.18);
}

/* --------------------------------------------------------------------------
   14. Journey & Milestones (PDF Page 7) — Masonry Gallery
   -------------------------------------------------------------------------- */
.event-slot {
  min-height: 240px;
  border-radius: 18px;
}

.journey-masonry-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: #080d19;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: var(--transition-smooth);
}

.journey-masonry-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-gold);
  box-shadow: 0 18px 40px rgba(210, 152, 84, 0.3);
}

.journey-masonry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Mobile View (<768px): Journey Gallery Horizontal Slider (~1.8 slides visible) */
@media (max-width: 768px) {
  .journey-grid-slider {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px !important;
    padding-bottom: 16px;
    padding-left: 4px;
    padding-right: 4px;
    scrollbar-width: none;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .journey-grid-slider::-webkit-scrollbar {
    display: none;
  }

  .journey-grid-slider > [class*="col-"] {
    flex: 0 0 calc(58% - 10px) !important;
    min-width: calc(58% - 10px) !important;
    max-width: calc(58% - 10px) !important;
    width: auto !important;
    scroll-snap-align: start;
  }

  .journey-grid-slider .journey-masonry-card {
    height: 220px !important;
    min-height: 220px !important;
  }
}

.award-box {
  background: linear-gradient(135deg, rgba(228, 29, 37, 0.18) 0%, rgba(20, 28, 71, 0.85) 100%);
  border: 1px solid var(--border-red);
  border-radius: 22px;
  padding: 26px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   15. Media Presence & Call To Action Model (PDF Page 8)
   -------------------------------------------------------------------------- */
.media-cta-card {
  background: linear-gradient(135deg, rgba(228, 29, 37, 0.12) 0%, rgba(13, 18, 48, 0.95) 50%, rgba(210, 152, 84, 0.12) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.mobile-mockup-wrapper img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.7));
}

.mobile-mockup-wrapper:hover img {
  transform: translateY(-8px) scale(1.03);
}

.social-channel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

.social-channel-card:hover {
  background: rgba(228, 29, 37, 0.12);
  border-color: var(--primary-gold);
  transform: translateX(6px);
}

.social-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.icon-fb { background: rgba(24, 119, 242, 0.18); color: #1877f2; }
.icon-ig { background: rgba(225, 48, 108, 0.18); color: #e1306c; }
.icon-yt { background: rgba(255, 0, 0, 0.18); color: #ff0000; }
.icon-tt { background: rgba(255, 255, 255, 0.18); color: #fff; }

.social-circle-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, color 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.social-circle-btn:hover {
  transform: translateY(-2px) scale(1.12);
  background: var(--primary-gold);
  color: #000000;
}

.qr-slot {
  width: 175px;
  height: 175px;
  margin: 0 auto;
  border-radius: 18px;
}

/* --------------------------------------------------------------------------
   16. Contact & Footer (PDF Page 9)
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 90px 0 70px;
  background: radial-gradient(circle at 80% 20%, rgba(228, 29, 37, 0.12) 0%, rgba(8, 13, 25, 0.98) 70%);
  border-top: 1px solid var(--border-glass);
}

.contact-main-card {
  background: linear-gradient(135deg, rgba(13, 18, 48, 0.95) 0%, rgba(4, 7, 18, 0.98) 100%);
  border: 1px solid var(--border-gold);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(24px);
}

.contact-host-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.contact-host-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-gold) !important;
}

.form-control-trendy {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border-glass);
  color: #fff;
  padding: 13px 20px;
  border-radius: 14px;
  transition: var(--transition-fast);
}

.form-control-trendy:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-gold);
  color: #fff;
  box-shadow: 0 0 20px rgba(210, 152, 84, 0.25);
  outline: none;
}

.form-control-trendy option {
  background: #080d19;
  color: #ffffff;
}

.form-control-trendy::placeholder {
  color: var(--text-muted);
}

.footer-trendy {
  background: #050814;
  border-top: 1px solid rgba(210, 152, 84, 0.35);
  padding: 40px 0;
  color: #e5e7eb;
}

.footer-nav-link {
  color: #e5e7eb !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav-link:hover {
  color: var(--primary-gold) !important;
  transform: translateY(-1px);
}

/* Floating Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-red);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  box-shadow: 0 6px 25px rgba(228, 29, 37, 0.5);
  border: none;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  background: #ffffff;
  color: var(--accent-red);
}

/* Spin animation for form submitting */
.spin {
  animation: spin 1s infinite linear;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================================================
   17. MOBILE UI & SPACING OPTIMIZATION (Responsive Breakpoints)
   ========================================================================== */

/* Tablet Improvements (<991px) */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .media-cta-card {
    padding: 32px 24px !important;
  }
}

/* Mobile Screens Optimization (<767px) */
@media (max-width: 767px) {
  /* Section Vertical Spacing */
  section.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .contact-section {
    padding: 50px 0 40px !important;
  }

  /* Typography Scale */
  .hero-title {
    font-size: 2.3rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }

  .hero-lead {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
  }

  .display-5 {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }

  .display-6 {
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
  }

  .badge-pill {
    font-size: 0.75rem !important;
    padding: 6px 14px !important;
  }

  /* Glass Cards Padding & Margins */
  .glass-card {
    padding: 22px 18px !important;
    border-radius: 20px !important;
  }

  .media-cta-card,
  .contact-main-card {
    padding: 24px 18px !important;
    border-radius: 24px !important;
  }

  .contact-host-card {
    padding: 18px 14px !important;
  }

  .contact-form-box {
    padding: 24px 18px !important;
    border-radius: 20px !important;
  }

  /* Profile Details Grid */
  .profile-detail-item {
    gap: 12px !important;
    padding: 10px 12px !important;
  }

  .detail-label {
    font-size: 0.7rem !important;
  }

  .detail-value {
    font-size: 0.85rem !important;
  }

  /* Stat Cards */
  .stat-box-modern {
    padding: 18px 16px !important;
    border-radius: 18px !important;
  }

  .stat-number {
    font-size: 1.85rem !important;
  }

  .stat-label {
    font-size: 0.85rem !important;
  }

  /* 7 Pillars Grid */
  .pillar-card {
    padding: 14px 0px !important;
    border-radius: 10px !important;
  }

  .pillar-icon {
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 10px !important;
  }



  /* Floating Back To Top Button on Mobile */
  .back-to-top {
    bottom: 20px !important;
    right: 20px !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 1.15rem !important;
  }
}

/* Small Mobile Phones (<575px) */
@media (max-width: 575px) {
  .hero-title {
    font-size: 2.05rem !important;
  }



  .social-channel-card {
    padding: 14px 16px !important;
  }

  .social-icon-box {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.25rem !important;
  }

  .form-control-trendy {
    padding: 11px 16px !important;
    font-size: 0.875rem !important;
  }
}
@media (max-width: 90000px) and (min-width: 768px) {
.d-flex.flex-wrap.gap-2.mb-2.aos-init.aos-animate {
    margin-bottom: 30px !important;
}h1.hero-title.aos-init.aos-animate {
    width: 500px;
}
}
@media (max-width: 768px) and (min-width: 100px) {
  .nombobile {
    display: none !important;
  }
.nav-link-trendy.active::after {
        left: 62px !important;
        bottom: 0px !important;
        background: red !important;
        width: 44px;
    }
      /* Buttons & Action Elements */
  .btn-trendy,
  .btn-gold,
  .btn-glass {
        padding: 12px 12px !important;
        font-size: 0.825rem !important;
        height: 45px !important;
  }
  .mobiletop {
    margin-top: 20px !important;
  }
    .hero-img-slot {
    min-height: 410px !important;
  }
  .mobiledivtwo .col-lg-4.col-md-6.aos-init.aos-animate {
    width: 50% !important;
  }

  /* Section 5 Featured Conversations Mobile 1.5 Slide Horizontal Scroller */
  .conversation-grid-slider {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px !important;
    padding-bottom: 16px;
    scrollbar-width: none;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .conversation-grid-slider::-webkit-scrollbar {
    display: none;
  }

  .conversation-grid-slider > [class*="col-"] {
    flex: 0 0 calc(65% - 10px) !important;
    min-width: calc(65% - 10px) !important;
    max-width: calc(65% - 10px) !important;
    width: auto !important;
    scroll-snap-align: start;
  }

  .conversation-grid-slider .conversation-slot {
    min-height: 240px !important;
    height: 240px !important;
  }
}