/* =============================================================
   JabuListens.com — Stylesheet
   
   All values are written directly — no var() functions.
   To change a value, use Ctrl+H (Find & Replace) in any editor.
   
   QUICK FIND & REPLACE GUIDE:
   - To change body text size: replace all "17px" with your size
   - To change accent color: replace all "#C85A3A" with your color
   - To change heading font: replace all "'Lora'" with your font
   - To change body font: replace all "'DM Sans'" with your font
   
   COLOR REFERENCE:
   #FFF9F3 = page background (warm cream)
   #FFF1E6 = alternate section background
   #2D2016 = main text & headings (dark brown)
   #6B5D52 = secondary text (medium brown)
   #C85A3A = accent color (terracotta)
   #A84828 = accent hover (darker terracotta)
   #FCEEE8 = accent light background
   #25D366 = WhatsApp green
   #1EBE57 = WhatsApp hover green
   #E8DDD4 = borders
   
   TEXT SIZE REFERENCE:
   56px = hero headline (H1 on homepage)
   38px = section titles (H2)
   28px = card titles (H3)
   22px = nav logo, sub-headings
   19px = intro text, FAQ questions
   17px = body text, buttons
   15px = nav links, footer links
   13px = tiny labels, disclaimer
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');


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

html {
  scroll-behavior: smooth;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'DM Sans', 'Segoe UI', Tahoma, sans-serif;
  color: #2D2016;
  background-color: #FFF9F3;
  line-height: 1.7;
}

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

a {
  color: #C85A3A;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #A84828;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  color: #2D2016;
  line-height: 1.25;
  font-weight: 600;
}

h1 {
  font-size: 56px;
  margin-bottom: 24px;
}

h2 {
  font-size: 38px;
  margin-bottom: 24px;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
}

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


/* ========================
   NAVIGATION
   ======================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E8DDD4;
  padding: 16px 0;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---- NAV LOGO ---- change 22px to resize logo text */
.nav-logo {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 36px;
  font-weight: 700;
  color: #2D2016;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: #C85A3A;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

/* ---- NAV MENU LINKS ---- change 15px to resize, 500 to 700 for bold */
.nav-links a {
  color: #6B5D52;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links .active {
  color: #C85A3A;
}

/* ---- CHAT NOW BUTTON in nav ---- */
.nav-links li a.nav-cta {
  background: #25D366;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-links li a.nav-cta:hover {
  background: #1EBE57;
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* ---- MOBILE HAMBURGER ---- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2D2016;
  margin: 5px 0;
  transition: all 0.3s ease;
}


/* ========================
   HERO SECTION
   ======================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF1E6 0%, #FFF9F3 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.hero-badge {
  display: inline-block;
  background: #FCEEE8;
  color: #C85A3A;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

/* ---- HERO H1 ---- change 56px to resize the main headline */
.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: #C85A3A;
}

/* ---- HERO SUBTITLE ---- change 19px to resize */
.hero-sub {
  font-size: 19px;
  color: #6B5D52;
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  max-height: 560px;
  box-shadow: 0 24px 60px rgba(45, 32, 22, 0.08), 0 8px 20px rgba(45, 32, 22, 0.08);
}

.hero-image::after {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 3px solid #C85A3A;
  border-radius: 12px;
  z-index: -1;
  opacity: 0.3;
}


/* ========================
   BUTTONS
   ======================== */
/* ---- ALL BUTTONS ---- change 17px for text size, 16px 32px for padding */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', 'Segoe UI', Tahoma, sans-serif;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1EBE57;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn-email {
  background: #C85A3A;
  color: white;
}

.btn-email:hover {
  background: #A84828;
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #C85A3A;
  border: 2px solid #C85A3A;
}

.btn-outline:hover {
  background: #C85A3A;
  color: white;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ========================
   SECTIONS
   ======================== */
/* ---- SECTION SPACING ---- change 96px for more/less space between sections */
.section {
  padding: 96px 0;
}

.section-alt {
  background: #FFF1E6;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header p {
  color: #6B5D52;
  font-size: 19px;
}

/* ---- SECTION LABEL ---- the small uppercase text like "How It Works" */
.section-label {
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #C85A3A;
  margin-bottom: 16px;
}


/* ========================
   CARDS AND GRID
   ======================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(45, 32, 22, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(45, 32, 22, 0.08);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 22px;
}

.card p {
  color: #6B5D52;
}

/* ---- STEP NUMBERS (1, 2, 3 circles) ---- */
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #C85A3A;
  color: white;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}


/* ========================
   TESTIMONIALS
   ======================== */
.testimonial {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(45, 32, 22, 0.08);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 72px;
  color: #C85A3A;
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  font-size: 19px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: #2D2016;
  font-style: normal;
}

.testimonial-meta {
  color: #6B5D52;
  font-size: 15px;
}

.stars {
  color: #F59E0B;
  font-size: 19px;
  margin-bottom: 8px;
}


/* ========================
   PRICING
   ======================== */
.pricing-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 64px 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(45, 32, 22, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: #C85A3A;
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #C85A3A;
  color: white;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* ---- PRICING BIG NUMBER ---- change 52px for size */
.pricing-amount {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 52px;
  font-weight: 700;
  color: #C85A3A;
  margin: 16px 0;
}

.pricing-amount span {
  font-size: 17px;
  color: #6B5D52;
  font-family: 'DM Sans', 'Segoe UI', Tahoma, sans-serif;
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid #E8DDD4;
  color: #6B5D52;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '\2713';
  color: #25D366;
  font-weight: 700;
  font-size: 19px;
}


/* ========================
   FAQ ACCORDION
   ======================== */
.faq-item {
  border-bottom: 1px solid #E8DDD4;
}

/* ---- FAQ QUESTION TEXT ---- change 19px for size */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: 'DM Sans', 'Segoe UI', Tahoma, sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #2D2016;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #C85A3A;
}

.faq-question::after {
  content: '+';
  font-size: 28px;
  font-weight: 300;
  color: #C85A3A;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: #6B5D52;
  line-height: 1.8;
}


/* ========================
   ABOUT / PROFILE IMAGE
   ======================== */
.about-image {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  max-height: 500px;
  box-shadow: 0 12px 40px rgba(45, 32, 22, 0.08);
}


/* ========================
   FLOATING WHATSAPP BUTTON
   ======================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}


/* ========================
   CTA BANNER
   ======================== */
.cta-banner {
  background: linear-gradient(135deg, #C85A3A 0%, #A84828 100%);
  color: white;
  text-align: center;
  padding: 96px 24px;
  border-radius: 12px;
  margin: 0 24px;
}

.cta-banner h2 {
  color: white;
  font-size: 38px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 19px;
  max-width: 560px;
  margin: 0 auto 24px;
}

.cta-banner .btn-whatsapp {
  background: white;
  color: #C85A3A;
}

.cta-banner .btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #A84828;
}


/* ========================
   FOOTER
   ======================== */
.footer {
  background: #2D2016;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 40px;
}

/* ---- FOOTER TITLE ---- change 19px for size */
.footer h4 {
  color: white;
  font-size: 19px;
  margin-bottom: 16px;
}

/* ---- FOOTER LINKS ---- change 15px for size */
.footer a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 15px;
}

/* ---- FOOTER DISCLAIMER ---- change 13px for size */
.footer-disclaimer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  line-height: 1.6;
}


/* ========================
   TRUST BADGES
   ======================== */
.trust-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6B5D52;
  font-size: 15px;
  font-weight: 500;
}

.trust-item span:first-child {
  font-size: 24px;
}


/* ========================
   RESPONSIVE — TABLET (under 900px)
   ======================== */
@media (max-width: 900px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  h3 { font-size: 24px; }
  .hero h1 { font-size: 38px; }
  .cta-banner h2 { font-size: 30px; }
  .section { padding: 64px 0; }

  .hero-grid,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image::after {
    display: none;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFF9F3;
    padding: 24px;
    border-bottom: 1px solid #E8DDD4;
    box-shadow: 0 8px 24px rgba(45, 32, 22, 0.08);
  }
}

/* ========================
   RESPONSIVE — SMALL PHONE (under 480px)
   ======================== */
@media (max-width: 480px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .hero h1 { font-size: 32px; }
  .cta-banner h2 { font-size: 26px; }
  .section { padding: 48px 0; }
  .cta-banner { padding: 48px 24px; }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-group {
    flex-direction: column;
  }
}


/* ========================
   ANIMATIONS
   ======================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.fade-up-delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}

.fade-up-delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
}

.fade-up-delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
}

/* ---- SUBPAGE H1 ---- smaller than homepage hero, change 38px to resize */
.page-title {
  font-size: 38px;
}
