/* =====================================================
   Native UK – Cleanup & Consistency Layer
   Purpose: visual calm, consistency, polish
   Safe overlay – loaded LAST
===================================================== */

/* -------------------------
   GLOBAL RHYTHM & READABILITY
-------------------------- */

section {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

p {
  line-height: 1.7;
}

.lead,
section p {
  max-width: 70ch;
}

/* Prevent ultra-wide paragraphs */
.container p {
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------
   HEADINGS – DO NOT CHANGE STYLE
   Just spacing discipline
-------------------------- */

h1, h2, h3 {
  margin-bottom: 0.75em;
}

h2 + p,
h3 + p {
  margin-top: -0.25em;
}

/* -------------------------
   CARD SYSTEM (UNIFICATION)
-------------------------- */

.card,
.feature-card,
.price-box,
.review,
.tile,
.step {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 10px 28px rgba(0,0,0,.5);
  background-clip: padding-box;
}

/* Gentle hover – no chaos */
.card:hover,
.feature-card:hover,
.price-box:hover,
.tile:hover {
  transform: translateY(-4px);
}

/* -------------------------
   BUTTON DISCIPLINE
-------------------------- */

.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .2px;
}

.btn + .btn {
  margin-left: .25rem;
}

/* Primary buttons stay strong */
.btn-brand,
.btn-successish {
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
}

/* Secondary buttons calm */
.btn-ghost {
  box-shadow: none;
}

/* -------------------------
   REDUCE GLOW & SHADOW NOISE
-------------------------- */

/* Kill accidental glow */
* {
  text-shadow: none;
}

/* Allow glow ONLY where intentional */
.hero *,
.hero-card *,
.display-brand {
  text-shadow: inherit;
}

/* -------------------------
   IMAGE CONSISTENCY
-------------------------- */

img {
  border-radius: 14px;
}

.hero-image {
  border-radius: 0;
}

/* -------------------------
   NAVBAR CALM
-------------------------- */

.navbar .nav-link {
  opacity: .9;
}

.navbar .nav-link:hover {
  opacity: 1;
}

/* -------------------------
   REVIEWS – IMPROVED STRUCTURE
   (Safe to replace existing look)
-------------------------- */

.review {
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review .avatar {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.15);
}

.review .stars {
  color: #ffcc33;
  letter-spacing: 1px;
  font-size: 1rem;
  margin-top: .1rem;
}

.review p {
  font-size: 1rem;
  margin-top: 1rem;
}

/* -------------------------
   REVIEWS – IMAGE PROPORTION FIX
-------------------------- */

.review .avatar,
.review img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

/* -------------------------
   REVIEWS – ADD CONTAINMENT
-------------------------- */

.review {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Header row (image + name) */
.review .d-flex,
.review .review-header {
  align-items: center;
  gap: 0.75rem;
}

/* Avatar / flag image */
.review img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

/* Stars */
.review .stars {
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Review text */
.review p {
  margin-top: 1rem;
  font-size: 1rem;
}

/* Avatar container – fixes flag proportions */
.avatar-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/* -------------------------
   PRICE BOX SCANABILITY
-------------------------- */

.price-box h3 {
  margin-bottom: .25rem;
}

.price-tag {
  font-size: 2rem;
  font-weight: 800;
}

.price-sub {
  font-size: .95rem;
  opacity: .9;
}

/* -------------------------
   FOOTER CLEANUP
-------------------------- */

footer {
  margin-top: 3rem;
}

footer p,
footer li {
  font-size: .95rem;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* -------------------------
   MOBILE TUNING
-------------------------- */

@media (max-width: 768px) {

  section {
    padding: 2.5rem 0;
  }

  h1 {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .btn {
    width: 100%;
  }

  .btn + .btn {
    margin-left: 0;
    margin-top: .5rem;
  }
}

/* =====================================================
   Daily Real English — Mobile refinement
===================================================== */

@media (max-width: 768px) {

  /* -------------------------
     GLOBAL MOBILE TUNING
  -------------------------- */

  section {
    padding: 2.5rem 0;
  }

  h1 {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .btn {
    width: 100%;
  }

  .btn + .btn {
    margin-left: 0;
    margin-top: .5rem;
  }

  /* =====================================================
     Daily Real English — Mobile refinement
  ===================================================== */

  #daily-real-english.version-c {
    padding: 2rem 0;
  }

  #daily-real-english.version-c .content-wrapper {
    padding: 0 1.25rem;
  }

  #daily-real-english.version-c .section-subtitle {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }

  #daily-real-english.version-c .lesson-card {
    margin-left: 0;
    padding: 1.4rem;
    border-left-width: 3px;
  }

  #daily-real-english.version-c .phrase {
    font-size: 1.45rem;
    line-height: 1.3;
  }

  #daily-real-english.version-c .meta {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  #daily-real-english.version-c .definition,
  #daily-real-english.version-c .example {
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
  }

  #daily-real-english.version-c .supporting-text {
    font-size: 0.85rem;
    margin-top: 1.4rem;
    padding-top: 1rem;
  }

  #daily-real-english.version-c .lesson-image {
    float: none;
    display: block;
    width: 150px;
    max-width: 80%;
    margin: 1rem auto 0;
  }
}



/* FORCE REVIEW CARDS (FINAL FIX) */
#reviews .review {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 16px !important;
  padding: 1.25rem !important;
  height: 100%;
}
#reviews .review img {
  width: 48px !important;
  height: 48px !important;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  background: #111;
}
/* Ensure spacing AFTER prices */
#lessons-prices {
  padding-bottom: clamp(3rem, 5vw, 5rem);
}



/* -------------------------
   END CLEANUP
-------------------------- */

/* =====================================================
   ZZZ.HTML EXTRACTED STYLES
   Moved from inline <style> block for better organization
===================================================== */

/* --------------------------------------------------
   BREAKING NEWS MARQUEE
-------------------------------------------------- */
.news-scroller {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.news-scroller-content {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 24s linear infinite; /* slowed slightly */
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* --------------------------------------------------
   HERO SLOGAN FONT FIX
-------------------------------------------------- */
.hero-slogan {
  font-family: 'Bangers', cursive !important;
  letter-spacing: 1px !important;
  font-weight: normal !important;
  color: #ff4a4a !important;
  text-shadow:
    0 0 6px rgba(255, 74, 74, 0.7),
    0 0 12px rgba(255, 74, 74, 0.5);
}

/* --------------------------------------------------
   GREEN SOFT GLOW
-------------------------------------------------- */
.btn-green-glow {
  box-shadow: 0 0 12px rgba(76, 217, 100, 0.6),
              0 0 20px rgba(76, 217, 100, 0.4);
  transition: 0.3s ease;
}

.btn-green-glow:hover {
  box-shadow: 0 0 20px rgba(76, 217, 100, 0.9),
              0 0 35px rgba(76, 217, 100, 0.7);
  transform: translateY(-2px);
}

/* --------------------------------------------------
   HERO IMAGE GLOW
-------------------------------------------------- */
.hero-image-glow--clean {
  filter: none;
}


.hero-trust {
  font-size: 0.9rem;
  color: #bbbbbb;
}

/* --------------------------------------------------
   SIMPLE FADE-IN-UP ANIMATION
-------------------------------------------------- */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* --------------------------------------------------
   MOBILE FLOATING CTA BAR
-------------------------------------------------- */
.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #00c853, #4cd964);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9998;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.6);
}

.mobile-cta-bar p {
  margin: 0;
  font-size: 0.9rem;
  color: #041b08;
}

.mobile-cta-bar .btn {
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 14px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

@media (min-width: 768px) {
  .mobile-cta-bar {
    display: none;
  }
}
/* --------------------------------------------------
   ZZZ.HTML SPECIFIC BODY PADDING FIX
-------------------------------------------------- */
/* Remove black void caused by fixed-top navbar */
body {
  padding-top: 80px !important;   /* matches your navbar height */
}

body > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =====================================================
   MAJOR CSS BLOCKS MOVED FROM ZZZ.HTML STYLE TAG
   Extracted for better organization and performance
===================================================== */

/* --------------------------------------------------
   GLOBAL STYLES
-------------------------------------------------- */
body {
  font-family: 'Open Sans', sans-serif;
  background: #000;
  color: #fff;
  padding-top: 80px; /* room for fixed navbar */
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .step-title {
  font-family: 'Bangers', cursive;
  letter-spacing: 1px;
}

/* Paragraphs / normal text */
p, .display-4, .display-6, .display-7 {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
  color: #e0e0e0;
}

.display-6 {
  font-weight: 300;
}

/* --------------------------------------------------
   LINK COLOUR SYSTEM (Option 2 — Red Accent)
-------------------------------------------------- */
a {
  color: #ff4a4a;      /* clean, bright red */
  text-decoration: none;
  transition: 0.2s ease;
}
a:hover {
  color: #ff7777;      /* lighter red hover */
  text-decoration: underline;
}

/* Utility classes (keep Bootstrap's colours too) */
.text-danger { color: #ff3737 !important; }
.text-warning { color: #ffcc33 !important; }
.text-success { color: #4cd964 !important; }
.text-info { color: #3bbcff !important; }
.text-primary { color: #ff4a4a !important; }

/* Section divider — disabled (no visible section lines) */
.section-divider {
  border-top: none !important;
}



/* --------------------------------------------------
   NAVBAR - Enhanced Current Red Theme (Design 1)
-------------------------------------------------- */
.menu2 .navbar {
  background: linear-gradient(135deg, #e43f3f 0%, #c73333 100%) !important;
  padding: 0.5rem 0;
  box-shadow: 0 4px 12px rgba(228, 63, 63, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
}

.menu2 .navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

.menu2 .navbar-logo img {
  height: 2.8rem !important;
  transition: transform 0.3s ease;
}

.menu2 .navbar-logo:hover img {
  transform: scale(1.05);
}

.menu2 .navbar-caption {
  font-family: 'Bangers', cursive !important;
  font-size: 2rem !important;
  margin-left: 8px;
  color: #fff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.menu2 .navbar-nav .nav-link {
  font-family: 'Bangers', cursive !important;
  font-size: 1.25rem !important;
  letter-spacing: 1px;
  color: #fff !important;
  padding: 0.5rem 1rem !important;
  margin: 0 0.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.menu2 .navbar-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu2 .navbar-nav .nav-link:active {
  transform: translateY(0);
}

.menu2 .icons-menu .mbr-iconfont {
  color: #fff !important;
  fill: #fff !important;
  opacity: 1 !important;
  font-size: 1.4rem !important;
  transition: all 0.3s ease;
}

.menu2 .icons-menu a {
  padding: 0.5rem !important;
  margin: 0 0.2rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu2 .icons-menu a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu2 .icons-menu a:hover .mbr-iconfont {
  transform: scale(1.1);
}

.menu2 .hamburger span {
  background: #fff !important;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggler {
  border: none !important;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.15);
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Enhanced container styling */
.menu2 .container-fluid {
  position: relative;
  z-index: 2;
}

/* MOBILE NAV FIXES */
@media (max-width: 991px) {
  .menu2 .navbar-nav .nav-link {
    font-size: 1.4rem !important;
    padding-left: 0 !important;
  }
}

/* --------------------------------------------------
   PRICE BOXES — Modern Red Accent Upgrade
-------------------------------------------------- */
.price-box {
  background: linear-gradient(145deg, #0d0d0d, #111);
  border: 2px solid #1a1a1a;
  border-left: 5px solid #b10202; /* Red accent bar */
  border-radius: 18px;
  padding: 32px;
  transition: all .3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.55);
}

.price-box:hover {
  transform: translateY(-6px);
  border-left-color: #ff3b3b; /* brighter red on hover */
  box-shadow:
    0 8px 25px rgba(255, 60, 60, 0.25),
    0 0 20px rgba(255, 60, 60, 0.15);
}

.price-box h4 {
  font-family: 'Bangers';
  font-size: 2rem !important;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #ff4a4a; /* Title red */
}

.price-box p {
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  color: #cccccc;
  margin-bottom: 15px;
}

.price-box .display-5 {
  font-size: 2rem !important;
  font-weight: 700;
  color: white;
}

/* Buttons inside pricing */
.price-box .btn {
  background: #b10202 !important;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 1rem;
  transition: 0.25s ease;
}

.price-box .btn:hover {
  background: #ff3b3b !important;
  transform: translateY(-2px);
}

/* Mobile optimisation */
@media (max-width:768px) {
  .price-box {
    padding: 22px;
  }
  .price-box h4 {
    font-size: 1.7rem !important;
  }
  .price-box .display-5 {
    font-size: 1.7rem !important;
  }
}

/* ★ MOST POPULAR RIBBON ★ */
.price-box.popular {
  position: relative;
  overflow: visible;
}

.price-box.popular::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -12px;
  right: -12px;
  background: #ff3b3b;
  color: white;
  padding: 6px 14px;
  font-family: 'Bangers', cursive;
  font-size: 1rem;
  border-radius: 6px;
  transform: rotate(6deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  letter-spacing: 1px;
  z-index: 10;
}

/* ★ DISCOUNTED RIBBON — Blue, Right Corner ★ */
.price-box.discounted {
  position: relative;
  overflow: visible;
}

.price-box.discounted::before {
  content: "DISCOUNTED";
  position: absolute;
  top: -12px;
  right: -12px;
  background: #3bbcff;
  color: white;
  padding: 6px 14px;
  font-family: 'Bangers', cursive;
  font-size: 1rem;
  border-radius: 6px;
  transform: rotate(6deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  letter-spacing: 1px;
  z-index: 10;
}

/* --------------------------------------------------
   WHY-ME CARDS
-------------------------------------------------- */
#why-me .why-card {
  background: #0e0e0e;
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  text-align: center;
  box-shadow: 0 0 10px rgba(255,255,255,0.05);
}

#why-me .why-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

#why-me .why-card h5 {
  font-size: 2rem;
  min-height: 60px;
}

#why-me .why-card p {
  font-size: 1rem;
}

/* --------------------------------------------------
   STEPS SECTION
-------------------------------------------------- */
.step-num {
  font-family: 'Bangers';
  font-size: 4rem;
  line-height: 1;
}

.step-title {
  font-family: 'Bangers';
  font-size: 2.3rem;
}

.step-text {
  font-size: 1.15rem;
  line-height: 1.7;
}

/* --------------------------------------------------
   "LOOKING FOR SOMETHING ELSE?" — CARDS
-------------------------------------------------- */
#other-links .item-wrapper {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
  transition: transform .2s ease, box-shadow .2s ease;
}

#other-links .item-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}

#other-links img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

#other-links h5 {
  font-family: 'Bangers';
  font-size: 1.35rem;
  margin-top: 15px;
}

#other-links p {
  font-size: 1rem;
  opacity: 0.9;
  flex-grow: 1;
}

#other-links .btn {
  font-size: 1rem;
  border-radius: 8px;
  margin-top: 10px;
}

/* --------------------------------------------------
   REVIEWS
-------------------------------------------------- */
#reviews .rounded-3 {
  background: #111 !important;
  border: 1px solid #222 !important;
}

#reviews h5 {
  font-family: 'Bangers';
  font-size: 1.4rem;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
#footer a:hover {
  opacity: 0.8;
}

/* FIX: Grey links on black background */
a.text-secondary,
.text-secondary a {
  color: #ffb347 !important;  /* warm gold/orange */
}

a.text-dark,
.text-dark a,
a.text-muted,
.text-muted a {
  color: #bbbbbb !important;  /* light grey for contrast */
}

a.text-white,
.text-white a {
  color: #ffffff !important;
}

a.text-primary,
.text-primary a {
  color: #ff4a4a !important;
}

/* Hover fixes */
.text-secondary:hover,
.text-muted:hover,
.text-dark:hover {
  opacity: 0.9;
}

/* Make inline links red by default */
a:not(.nav-link):not(.btn):not(.icons-menu a) {
  color: #ff4a4a !important;
  text-decoration: none;
}

a:not(.nav-link):not(.btn):not(.icons-menu a):hover {
  opacity: 0.8;
}

section.menu2 {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* RESET TOP SPACING COMPLETELY */
body, section, #hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* FIX NAV HEIGHT */
.navbar {
  margin-bottom: 0 !important;
  height: auto !important;
}

/* FIRST SECTION SHOULD NEVER BE PUSHED DOWN */
section:first-of-type {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* FOOTER MULTICOLOUR LINKS */
#footer a {
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
  display: inline-block;
}

#footer li a:nth-of-type(7n+1) { color: #ff4a4a !important; }
#footer li a:nth-of-type(7n+2) { color: #ffd500 !important; }
#footer li a:nth-of-type(7n+3) { color: #4cd964 !important; }
#footer li a:nth-of-type(7n+4) { color: #3bbcff !important; }
#footer li a:nth-of-type(7n+5) { color: #ff7ae6 !important; }
#footer li a:nth-of-type(7n+6) { color: #ff9f40 !important; }
#footer li a:nth-of-type(7n+7) { color: #8e5cff !important; }

#footer a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

#footer p,
#footer .copyright,
#footer .footer-info p {
  font-size: 0.85rem !important;
  line-height: 1.4 !important;
}

#footer h4 {
  font-size: 1rem !important;
}

#footer h1, 
#footer h2, 
#footer h3 {
  font-size: 1.3rem !important;
}
#footer .footer-info p {
  font-size: 0.9rem !important;
}

.navbar-toggler .hamburger span {
  background-color: #fff !important;
}

.navbar-toggler {
  border: none !important;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none !important;
  box-shadow: none !important;
}

.icons-menu .mbr-iconfont {
  color: #fff !important;
  fill: #fff !important;
  opacity: 1 !important;
}

.icons-menu a:hover .mbr-iconfont {
  opacity: 0.85 !important;
}

/* FIX: Hamburger always visible & black */
.navbar-toggler .hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background-color: #000 !important;
  border-radius: 2px;
}

/* --------------------------------------------------
   WHATSAPP FLOATING BUTTON
-------------------------------------------------- */
.whatsapp-wrapper {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9999;
}
.whatsapp-button {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}

/* =====================================================
   FREE SPOTS SECTION — RESTORED STYLES
===================================================== */

.spots-card-v2 {
  background: linear-gradient(145deg, #0d0d0d, #111);
  border-radius: 20px;
  padding: 2.5rem;

  /* Strong decision frame */
  outline: 4px solid rgba(255, 74, 74, 0.6);
  outline-offset: -4px;

  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 20px 50px rgba(0,0,0,0.6);
}


/* Price */
.price-highlight {
  font-family: 'Bangers', cursive;
  font-size: 4rem;
  color: #ff4a4a;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow:
    0 0 10px rgba(255,74,74,0.6),
    0 0 25px rgba(255,74,74,0.4);
}

/* Feature list */
.feature-list-red {
  list-style: none;
  padding-left: 0;
}

.feature-list-red li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
}

.feature-list-red li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff4a4a;
  font-weight: bold;
}

/* Availability dots */
.availability-dot-red {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff4a4a;
  box-shadow:
    0 0 6px rgba(255,74,74,0.8),
    0 0 14px rgba(255,74,74,0.6);
  animation: pulseRed 1.8s infinite;
}

@keyframes pulseRed {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}
/* =====================================================
   FREE SPOTS — MOBILE OVERRIDES (FINAL, PRODUCTION)
   Purpose:
   - Improve hierarchy on mobile
   - Safely override Bootstrap utilities
   - Do NOT affect desktop
===================================================== */
@media (max-width: 768px) {

  /* Card spacing (override Bootstrap p-4) */
  #free-spots .spots-card-v2.p-4 {
    padding: 1.25rem !important;
    border-radius: 16px;
  }

  /* Price balance */
  #free-spots .price-highlight {
    font-size: 3rem !important;
    text-align: center;
    margin-bottom: 0.25rem;
  }

  /* Text alignment */
  #free-spots p,
  #free-spots small {
    text-align: center;
  }

  /* Feature list */
  #free-spots .feature-list-red {
    margin-top: 1rem;
    padding-left: 0;
  }

  #free-spots .feature-list-red li {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }

  /* CTA button (override btn-lg) */
  #free-spots .btn.btn-lg {
    font-size: 1.05rem !important;
    padding: 14px !important;
    border-radius: 14px;
  }

  /* Availability indicator */
  #free-spots .availability-dot-red {
    margin: 0 auto;
  }
}
/* =====================================================
   FREE SPOTS — MOBILE DECISION FRAME
   Ensures the same "HERE I AM" presence on mobile
===================================================== */
@media (max-width: 768px) {

  #free-spots .spots-card-v2 {
    padding: 1.5rem !important;
    outline-width: 4px;          /* lock thickness */
    outline-offset: -4px;        /* keep it inside */
  }

  #free-spots .price-highlight {
    font-size: 3rem !important;
    text-align: center;
  }

  #free-spots p,
  #free-spots small {
    text-align: center;
  }

  #free-spots .btn.btn-lg {
    font-size: 1.05rem !important;
    padding: 14px !important;
    border-radius: 14px;
  }
}
/* =====================================================
   Daily Real English — Version C (Editorial)
===================================================== */

#daily-real-english.version-c {
  background: #000;
  padding: 3.5rem 0 3rem; /* 👈 increased top padding slightly */
  color: #fff;
}


#daily-real-english.version-c .content-wrapper {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

#daily-real-english.version-c h2 {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #fff;
}

#daily-real-english.version-c .section-subtitle {
  font-size: 1.1rem;
  color: #999;
  margin-bottom: 2.5rem;
  font-style: italic;
}

#daily-real-english.version-c .lesson-card {
  background: #0a0a0a;
  border-left: 4px solid #ff4a4a;
  padding: 2rem 2.5rem;
  margin-left: 1rem;
  border-radius: 14px;
  position: relative;
}

#daily-real-english.version-c .phrase {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

#daily-real-english.version-c .meta {
  font-size: 1rem;
  color: #ff7777;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

#daily-real-english.version-c .definition,
#daily-real-english.version-c .example {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

#daily-real-english.version-c .definition-label,
#daily-real-english.version-c .example-label {
  color: #ccc;
  font-weight: 600;
  margin-right: 0.5rem;
}

#daily-real-english.version-c .definition-text,
#daily-real-english.version-c .example-text {
  color: #e0e0e0;
}

#daily-real-english.version-c .supporting-text {
  font-size: 0.95rem;
  color: #888;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid #333;
  font-style: italic;
}

/* Image — editorial, secondary */
#daily-real-english.version-c .lesson-image {
  float: right;
  width: 200px;
  max-width: 40%;
  height: auto;
  margin: 0 0 1rem 1.5rem;
  border-radius: 10px;
}

@media (max-width: 768px) {
  #daily-real-english.version-c .lesson-card {
    padding: 1.5rem;
    margin-left: 0;
  }

  #daily-real-english.version-c h2 {
    font-size: 2rem;
  }

  #daily-real-english.version-c .phrase {
    font-size: 1.5rem;
  }

  #daily-real-english.version-c .lesson-image {
    float: none;
    display: block;
    width: 160px;
    max-width: 70%;
    margin: 1rem auto 0;
  }
}
/* 🔥 HARD KILL HERO GLOW ON MOBILE */
@media (max-width: 768px) {
  .hero-image-glow {
    filter: none !important;
    box-shadow: none !important;
  }
}

