/*
Theme Name: V2V Club - Vision to Victory
Theme URI: https://v2vclub.in
Author: Sunil Pareek
Author URI: https://v2vclub.in
Description: A premium WordPress theme for Vision to Victory (V2V Club) - Fitness Challenges, Wellness Programs & Income Opportunity by Sunil Pareek, Independent Herbalife Distributor.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Private
License URI: #
Text Domain: v2v-club
Tags: fitness, wellness, business, one-page, responsive, custom-colors, custom-logo
*/

/* ============================================================
   CSS VARIABLES & ROOT
   ============================================================ */
:root {
  /* Brand Colors */
  --primary:        #FF6B00;
  --primary-dark:   #CC5500;
  --primary-light:  #FF8C33;
  --primary-glow:   rgba(255, 107, 0, 0.18);

  --navy:           #0D1B3E;
  --navy-mid:       #162447;
  --navy-light:     #1F3463;
  --navy-card:      #1A2D52;

  --accent:         #FFD700;
  --accent-soft:    rgba(255, 215, 0, 0.15);

  --white:          #FFFFFF;
  --off-white:      #F5F7FA;
  --light-blue:     #EEF2FF;

  --text-dark:      #0D1B3E;
  --text-muted:     #5A6A85;
  --text-light:     rgba(255,255,255,0.75);
  --text-faint:     rgba(255,255,255,0.45);

  --border:         #E2E8F0;
  --border-navy:    rgba(255,255,255,0.1);

  --green:          #22C55E;
  --green-soft:     rgba(34,197,94,0.12);
  --whatsapp:       #25D366;

  /* Gradients */
  --grad-orange:    linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
  --grad-navy:      linear-gradient(135deg, #0D1B3E 0%, #1F3463 100%);
  --grad-hero:      linear-gradient(135deg, #0D1B3E 0%, #162447 50%, #1F3463 100%);
  --grad-card:      linear-gradient(135deg, #162447 0%, #1A2D52 100%);

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(13,27,62,0.08);
  --shadow-md:      0 4px 20px rgba(13,27,62,0.12);
  --shadow-lg:      0 8px 40px rgba(13,27,62,0.18);
  --shadow-orange:  0 6px 28px rgba(255,107,0,0.38);
  --shadow-navy:    0 8px 32px rgba(13,27,62,0.35);

  /* Typography */
  --font-head:      'Montserrat', sans-serif;
  --font-body:      'Nunito', sans-serif;

  /* Layout */
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --max-width:      1160px;
  --nav-height:     72px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }
input, select, textarea { font-family: var(--font-body); }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.section-pad     { padding: 100px 0; }
.section-pad-sm  { padding: 64px 0; }
.text-center     { text-align: center; }
.text-orange     { color: var(--primary); }
.text-navy       { color: var(--navy); }
.text-white      { color: var(--white); }

/* Section Label Tag */
.section-tag {
  display: inline-block;
  background: var(--primary-glow);
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255,107,0,0.25);
  margin-bottom: 16px;
}

.section-tag.light {
  background: rgba(255,107,0,0.2);
  color: #FF8C33;
  border-color: rgba(255,107,0,0.35);
}

/* Section Titles */
.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: 14px;
  color: var(--text-dark);
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 52px;
  line-height: 1.8;
}

.section-sub.light {
  color: var(--text-light);
}

/* Orange underline accent */
.title-line {
  width: 56px;
  height: 4px;
  background: var(--grad-orange);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--grad-orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255,107,0,0.5);
  color: var(--white);
}

.btn-navy {
  background: var(--grad-navy);
  color: var(--white);
  box-shadow: var(--shadow-navy);
}
.btn-navy:hover { transform: translateY(-3px); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-orange {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-orange:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  background: #1ebe5d;
  color: var(--white);
}

.btn-lg { padding: 17px 38px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(13, 27, 62, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}

#site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-badge {
  width: 44px;
  height: 44px;
  background: var(--grad-orange);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 13px;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255,107,0,0.4);
  flex-shrink: 0;
}

.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.3px;
}
.logo-sub {
  font-size: 10px;
  color: var(--primary-light);
  font-weight: 700;
  letter-spacing: 2px;
}

/* Nav Menu */
#primary-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

#primary-menu li a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}

#primary-menu li a:hover,
#primary-menu li.current-menu-item a {
  color: var(--white);
  background: rgba(255,255,255,0.09);
}

#primary-menu li.menu-cta a {
  background: var(--grad-orange);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(255,107,0,0.35);
}
#primary-menu li.menu-cta a:hover { box-shadow: 0 6px 22px rgba(255,107,0,0.5); }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--navy);
  z-index: 999;
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  padding: 13px 16px;
  border-radius: 9px;
  transition: 0.2s;
}
.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.mobile-nav .btn-primary { text-align: center; margin-top: 8px; }

/* Announcement Bar */
.top-bar {
  background: var(--grad-orange);
  color: var(--white);
  text-align: center;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 24px;
  letter-spacing: 0.5px;
}
.top-bar a { color: var(--accent); text-decoration: underline; margin-left: 8px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
}

.hero-orb-1 {
  position: absolute;
  top: -180px; left: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.13) 0%, transparent 65%);
  pointer-events: none;
}

.hero-orb-2 {
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  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: 64px 64px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 90px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.18);
  border: 1px solid rgba(255,107,0,0.38);
  color: #FF8C33;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 40px;
  margin-bottom: 22px;
}

.hero-eyebrow i { font-size: 13px; color: var(--primary); }

.hero-title {
  font-size: clamp(38px, 5.5vw, 64px);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  font-weight: 900;
}

.hero-title .line-orange { color: var(--primary); display: block; }
.hero-title .line-accent { color: var(--accent); display: block; }

.hero-tagline {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 38px;
  line-height: 1.8;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 44px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  width: fit-content;
}

.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
}

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

/* Hero Right - Photo Frame */
.hero-visual { position: relative; }

.hero-photo-wrap {
  width: 100%;
  max-width: 420px;
  height: 520px;
  margin: 0 auto;
  position: relative;
}

.hero-photo-frame {
  width: 100%;
  height: 100%;
  background: var(--grad-card);
  border: 2px solid rgba(255,107,0,0.35);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  inset: 0;
}

.hero-photo-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.45);
}

.hero-photo-placeholder i { font-size: 64px; color: rgba(255,107,0,0.4); margin-bottom: 10px; }
.hero-photo-placeholder p { font-family: var(--font-head); font-size: 13px; font-weight: 600; }

.hero-name-tag {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,27,62,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 20px;
  text-align: center;
  min-width: 200px;
}

.hero-name-tag strong {
  display: block;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}
.hero-name-tag span { font-size: 12px; color: var(--primary-light); font-weight: 600; }

/* Floating badges */
.float-badge {
  position: absolute;
  background: rgba(13,27,62,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  color: var(--white);
  white-space: nowrap;
  box-shadow: var(--shadow-navy);
}

.float-badge .fi { font-size: 20px; color: var(--primary); }
.float-badge .fb-label { font-size: 10px; color: rgba(255,255,255,0.5); font-weight: 500; display: block; }

.float-1 { top: 40px; left: -30px; }
.float-2 { bottom: 100px; right: -24px; }

/* ============================================================
   AUDIENCE SECTION
   ============================================================ */
.audience-section { background: var(--light-blue); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.audience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 22px 28px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.audience-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-orange);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,107,0,0.2);
}
.audience-card:hover::after { transform: scaleX(1); }

.aud-icon {
  font-size: 38px;
  margin-bottom: 14px;
  display: block;
}

.audience-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.audience-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

.aud-pill {
  display: inline-block;
  margin-top: 14px;
  background: var(--primary-glow);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-head);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ============================================================
   CHALLENGE CARDS
   ============================================================ */
.challenges-section { background: var(--white); }

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.challenge-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: all 0.35s ease;
}
.challenge-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }

.challenge-thumb {
  height: 210px;
  background: var(--grad-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.challenge-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-orange);
  opacity: 0.55;
}

.challenge-thumb-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.challenge-thumb-inner i { font-size: 52px; display: block; margin-bottom: 8px; }
.challenge-thumb-inner span {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.challenge-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  mix-blend-mode: multiply;
}

.duration-pill {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
}

.challenge-body { padding: 26px; }
.challenge-body h3 { font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.challenge-body > p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }

.challenge-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.challenge-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text-muted);
}
.challenge-list li i { color: var(--green); font-size: 14px; flex-shrink: 0; }

/* ============================================================
   BEFORE / AFTER + VIDEO
   ============================================================ */
.ba-section { background: var(--off-white); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.ba-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.ba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 220px;
  position: relative;
}

.ba-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ba-before { background: #EEF0F5; }
.ba-after  { background: var(--grad-orange); }

.ba-img i { font-size: 34px; }
.ba-before i { color: #C0C8D8; }
.ba-after  i { color: rgba(255,255,255,0.4); }

/* If real images uploaded */
.ba-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-label-pill {
  position: absolute;
  bottom: 10px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.ba-before .ba-label-pill { background: rgba(0,0,0,0.12); color: #555; }
.ba-after  .ba-label-pill { background: rgba(255,255,255,0.22); color: var(--white); }

.ba-sep {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 2;
}

.ba-info { padding: 18px 22px; }
.ba-info h4 { font-size: 15px; color: var(--navy); margin-bottom: 3px; }
.ba-info p { font-size: 13px; color: var(--text-muted); }

.ba-result-pill {
  display: inline-block;
  margin-top: 8px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  font-family: var(--font-head);
  padding: 4px 12px;
  border-radius: 20px;
}

/* Video Testimonials */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.video-placeholder {
  background: var(--grad-navy);
  border-radius: var(--radius-lg);
  height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 2px dashed rgba(255,107,0,0.4);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,107,0,0.1) 0%, transparent 70%);
}

.video-placeholder:hover { border-color: var(--primary); transform: scale(1.02); }

.play-ring {
  width: 64px; height: 64px;
  background: var(--grad-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 0 0 14px rgba(255,107,0,0.14);
  position: relative;
  z-index: 1;
}

.video-placeholder h4 {
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-head);
  position: relative;
  z-index: 1;
}

.video-placeholder span {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   INCOME OPPORTUNITY
   ============================================================ */
.income-section {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.income-section::before {
  content: '';
  position: absolute;
  top: -250px; right: -250px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.income-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.income-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.income-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.income-feat-icon {
  width: 46px; height: 46px;
  background: rgba(255,107,0,0.18);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.income-feat h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.income-feat p { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.6; }

.income-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 38px;
}

.income-box h3 { color: var(--white); font-size: 20px; margin-bottom: 28px; }

.steps-list { display: flex; flex-direction: column; gap: 22px; }

.step-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-circle {
  width: 38px; height: 38px;
  background: var(--grad-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 14px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255,107,0,0.35);
}

.step-row h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.step-row p  { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.6; }

.income-disclaimer-box {
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.28);
  border-radius: 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testi-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); background: var(--white); }

.testi-stars { color: var(--accent); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }

.testi-quote {
  font-size: 42px;
  color: var(--primary);
  opacity: 0.25;
  font-family: Georgia, serif;
  line-height: 0.9;
  margin-bottom: 10px;
}

.testi-card p {
  font-size: 15px;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 22px;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.author-av {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
  flex-shrink: 0;
  overflow: hidden;
}
.author-av img { width: 100%; height: 100%; object-fit: cover; }

.author-av-navy { background: var(--grad-navy); }

.author-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 1px; }
.author-loc  { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   AWARDS
   ============================================================ */
.awards-section { background: var(--light-blue); }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
}

.award-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.award-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.award-img-wrap {
  width: 100%;
  height: 170px;
  background: var(--light-blue);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 2px dashed var(--border);
  overflow: hidden;
  gap: 8px;
}
.award-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.award-img-wrap i { font-size: 36px; color: #B0BAD0; }
.award-img-wrap span { font-size: 11px; color: #B0BAD0; font-family: var(--font-head); font-weight: 600; }

.award-card h4 { font-size: 14px; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.award-card p  { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.about-photo-col { position: relative; }

.about-photo-main {
  width: 100%;
  height: 500px;
  background: var(--grad-navy);
  border-radius: var(--radius-xl);
  border: 2px dashed rgba(255,107,0,0.38);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
}

.about-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-photo-main .ph-icon { font-size: 72px; color: rgba(255,107,0,0.35); }
.about-photo-main .ph-text { font-family: var(--font-head); font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 600; }

.about-badge {
  position: absolute;
  bottom: -22px; right: -22px;
  background: var(--grad-orange);
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-orange);
  font-family: var(--font-head);
}

.about-badge strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.about-badge span { font-size: 11px; color: rgba(255,255,255,0.85); font-weight: 700; line-height: 1.4; display: block; margin-top: 4px; }

.about-text .section-tag { display: block; text-align: left; margin-bottom: 12px; }
.about-text .section-title { margin-bottom: 16px; }

.about-text > p { color: var(--text-muted); font-size: 16px; margin-bottom: 18px; }

.about-grid-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0;
}

.hl-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}
.hl-item i { color: var(--primary); flex-shrink: 0; margin-top: 2px; font-size: 15px; }

.about-contact-list { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }

.aci {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-dark);
}

.aci-icon {
  width: 40px; height: 40px;
  background: var(--primary-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

.about-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
}

.contact-info-col h3 { font-size: 26px; color: var(--navy); margin-bottom: 14px; }
.contact-info-col > p { color: var(--text-muted); margin-bottom: 28px; font-size: 16px; }

.contact-cards { display: flex; flex-direction: column; gap: 14px; }

.cc-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.25s;
}
.cc-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateX(4px); }

.cc-icon {
  width: 46px; height: 46px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cc-orange { background: var(--primary-glow); color: var(--primary); }
.cc-green  { background: rgba(37,211,102,0.1); color: var(--whatsapp); }
.cc-blue   { background: rgba(0,100,210,0.1);  color: #0064D2; }

.cc-card h4 { font-size: 14px; color: var(--navy); font-weight: 700; margin-bottom: 2px; }
.cc-card p  { font-size: 13px; color: var(--text-muted); }

.whats-next-box {
  background: var(--primary-glow);
  border: 1px solid rgba(255,107,0,0.22);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-top: 28px;
}

.whats-next-box h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.whats-next-box ul { display: flex; flex-direction: column; gap: 8px; }
.whats-next-box li { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.whats-next-box li i { color: var(--green); }

/* Lead Form */
.lead-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.lead-form-wrap h3 { font-size: 24px; color: var(--navy); margin-bottom: 6px; }
.lead-form-wrap > p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  font-family: var(--font-head);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 17px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: all 0.22s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--grad-orange);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  box-shadow: var(--shadow-orange);
}
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(255,107,0,0.5); }

.form-privacy {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding-top: 70px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  transition: all 0.2s;
  text-decoration: none;
}
.footer-social:hover { background: var(--primary); color: var(--white); }

.footer-col-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--primary); }
.footer-links i { font-size: 12px; color: var(--primary); }

.footer-bottom-bar {
  padding: 28px 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.footer-disclaimers { flex: 1; }

.disc-block {
  font-size: 11px;
  color: rgba(255,255,255,0.32);
  line-height: 1.75;
  margin-bottom: 8px;
}
.disc-block strong { color: rgba(255,255,255,0.45); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: right;
  white-space: nowrap;
  line-height: 1.7;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-btn {
  width: 62px; height: 62px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.55);
  transition: all 0.3s;
}
.wa-btn:hover { transform: scale(1.12); box-shadow: 0 6px 32px rgba(37,211,102,0.65); color: var(--white); }

.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  opacity: 0;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.55); }
}

.wa-tooltip {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  display: none;
  white-space: nowrap;
  box-shadow: var(--shadow-navy);
}
.wa-float:hover .wa-tooltip { display: block; }

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   WORDPRESS DEFAULTS
   ============================================================ */
.wp-block-image { margin: 0; }
.aligncenter { text-align: center; }
.alignleft  { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }

.site-main { padding-top: var(--nav-height); }

.entry-content h1 { font-size: clamp(28px,4vw,42px); margin-bottom: 16px; }
.entry-content h2 { font-size: clamp(22px,3vw,34px); margin-bottom: 14px; }
.entry-content h3 { font-size: clamp(18px,2.5vw,26px); margin-bottom: 12px; }
.entry-content p  { margin-bottom: 18px; color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner    { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-stats    { margin: 0 auto 40px; }
  .hero-actions  { justify-content: center; }
  .hero-visual   { order: -1; }
  .hero-photo-wrap { max-width: 320px; height: 400px; }
  .float-1, .float-2 { display: none; }
  .hero-eyebrow  { margin: 0 auto 22px; }
  .hero-tagline  { margin: 0 auto 34px; }

  .income-grid   { grid-template-columns: 1fr; }
  .about-grid    { grid-template-columns: 1fr; }
  .about-badge   { position: static; display: inline-block; margin-top: 20px; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr 1fr; }
  .footer-bottom-bar { flex-direction: column; }
  .footer-copy   { text-align: left; }
}

@media (max-width: 640px) {
  #primary-menu, .nav-toggle-hide { display: none; }
  .nav-toggle   { display: flex; }
  .section-pad  { padding: 64px 0; }
  .container    { padding: 0 18px; }
  .form-row     { grid-template-columns: 1fr; }
  .about-grid-highlights { grid-template-columns: 1fr; }
  .footer-top   { grid-template-columns: 1fr; }
  .hero-stats   { flex-direction: column; gap: 0; width: 100%; }
  .stat-divider { display: none; }
  .hero-stats > .stat-item { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero-stats > .stat-item:last-child { border-bottom: none; }
  .lead-form-wrap { padding: 28px 20px; }
}
