/*
Theme Name: Magudzumela
Theme URI: https://magudzumela.co.za
Author: Bonez Booth World
Author URI: https://magudzumela.co.za
Description: Official theme for Haaks Magudzumela — the movement from the streets of Pitori.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: magudzumela
*/

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

:root {
  --gold:    #D4AF37;
  --gold2:   #F0C040;
  --green:   #2E7D32;
  --green2:  #43A047;
  --orange:  #E65100;
  --dark:    #0D0D1A;
  --dark2:   #1A1A2E;
  --white:   #FFFFFF;
  --gray:    #F5F5F5;
  --text:    #1A1A2E;
  --muted:   #666;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold2); }

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

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

.section { padding: 80px 0; }
.section-alt { background: var(--gray); }

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark2);
  margin-bottom: 12px;
}

.section-title span { color: var(--gold); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 600px;
}

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover { background: var(--gold2); color: var(--dark); transform: translateY(-2px); }

.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: var(--green2); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }

.btn-dark {
  background: var(--dark2);
  color: var(--white);
}
.btn-dark:hover { background: #2a2a4a; transform: translateY(-2px); }

/* ── NAVBAR ───────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 2px solid var(--gold);
  padding: 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar-brand .brand-main {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar-brand .brand-sub {
  font-size: 0.65rem;
  color: var(--green2);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.navbar-nav a {
  display: block;
  padding: 8px 14px;
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--gold);
  background: rgba(212,175,55,0.1);
}

.navbar-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
}

.navbar-cta:hover {
  background: var(--gold2) !important;
  color: var(--dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #0a2a1a 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(46,125,50,0.08) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 24px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-title .gold { color: var(--gold); }
.hero-title .green { color: var(--green2); }

.hero-tagline {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
  font-style: italic;
}

.hero-desc {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phones {
  position: relative;
  width: 280px;
  height: 420px;
}

.phone-mock {
  position: absolute;
  width: 180px;
  height: 360px;
  background: var(--dark2);
  border-radius: 28px;
  border: 3px solid rgba(212,175,55,0.4);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.phone-mock.phone-1 {
  top: 0; left: 0;
  transform: rotate(-6deg);
  z-index: 1;
}

.phone-mock.phone-2 {
  bottom: 0; right: 0;
  transform: rotate(6deg);
  z-index: 2;
  border-color: rgba(46,125,50,0.5);
}

.phone-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 8px;
}

.phone-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 10px;
}

.phone-1 .phone-label { background: rgba(212,175,55,0.2); color: var(--gold); }
.phone-2 .phone-label { background: rgba(46,125,50,0.2); color: var(--green2); }

.phone-icon { font-size: 2.5rem; }

.phone-text {
  font-size: 0.7rem;
  color: #888;
  text-align: center;
}

/* ── CARDS ────────────────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid #eee;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.card-icon-gold { background: rgba(212,175,55,0.15); }
.card-icon-green { background: rgba(46,125,50,0.12); }
.card-icon-orange { background: rgba(230,81,0,0.12); }

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark2);
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── HOW IT WORKS ─────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

.step {
  text-align: center;
  padding: 28px 20px;
}

.step-num {
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── APP DOWNLOAD SECTION ─────────────────────────────────────────────────── */
.app-section {
  background: linear-gradient(135deg, var(--dark2) 0%, #0a2a1a 100%);
  padding: 80px 0;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.app-card {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.1);
}

.app-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.app-card-sub {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 24px;
}

.app-features {
  list-style: none;
  margin-bottom: 28px;
}

.app-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: #ccc;
}

.app-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 10px 18px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s;
  min-width: 140px;
}

.store-btn:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  transform: translateY(-2px);
}

.store-btn-icon { font-size: 1.5rem; }

.store-btn-text { line-height: 1.2; }
.store-btn-text small { display: block; font-size: 0.65rem; color: #aaa; }
.store-btn-text strong { font-size: 0.85rem; }

/* ── SOCIAL PROOF ─────────────────────────────────────────────────────────── */
.social-proof {
  background: var(--dark);
  padding: 48px 0;
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.social-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.social-stat {
  text-align: center;
}

.social-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
}

.social-stat-platform {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ── ADVERTISE ────────────────────────────────────────────────────────────── */
.advertise-hero {
  background: linear-gradient(135deg, var(--dark2), #1a2a0a);
  padding: 80px 0 60px;
  text-align: center;
}

.advertise-hero h1 { color: var(--white); font-size: 2.4rem; font-weight: 900; margin-bottom: 12px; }
.advertise-hero h1 span { color: var(--gold); }
.advertise-hero p { color: #aaa; font-size: 1rem; max-width: 560px; margin: 0 auto; }

.ad-form-wrapper {
  max-width: 720px;
  margin: -40px auto 60px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.15);
  padding: 48px 40px;
  position: relative;
  z-index: 10;
}

.form-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--dark2);
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark2);
  margin-bottom: 6px;
}

.form-group label .req { color: var(--orange); }

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

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

.form-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 5px;
}

.file-upload-area {
  border: 2px dashed #e0e0e0;
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.file-upload-area:hover { border-color: var(--gold); background: rgba(212,175,55,0.03); }
.file-upload-area input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.file-upload-icon { font-size: 2rem; margin-bottom: 8px; }
.file-upload-text { font-size: 0.9rem; color: var(--muted); }
.file-upload-text strong { color: var(--gold); }

.media-types {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.media-type-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  font-family: inherit;
}

.media-type-btn:hover,
.media-type-btn.active {
  border-color: var(--gold);
  background: rgba(212,175,55,0.08);
  color: var(--dark2);
}

.media-type-icon { font-size: 1.4rem; display: block; margin-bottom: 4px; }
.media-type-label { font-size: 0.78rem; font-weight: 600; }
.media-type-price { font-size: 0.7rem; color: var(--muted); }

#map-preview {
  width: 100%;
  height: 280px;
  border-radius: var(--radius);
  border: 1.5px solid #e0e0e0;
  margin-top: 8px;
  display: none;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  margin-top: 8px;
}

.form-submit-btn:hover { background: var(--gold2); transform: translateY(-1px); }
.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.4rem; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* ── ABOUT ────────────────────────────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 80px 0;
  text-align: center;
}

.about-hero h1 { color: var(--white); font-size: 2.4rem; font-weight: 900; margin-bottom: 12px; }
.about-hero h1 span { color: var(--gold); }
.about-hero p { color: #aaa; max-width: 600px; margin: 0 auto; }

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

.about-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark2);
}

.about-text h2 span { color: var(--gold); }

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-visual {
  background: linear-gradient(135deg, var(--dark2), #0a2a1a);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  border: 1px solid rgba(212,175,55,0.2);
}

.about-tagline {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
}

.about-tagline .line1 { color: var(--orange); }
.about-tagline .line2 { color: var(--green2); }
.about-tagline .line3 { color: var(--gold); }

.about-tagline-meaning {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
}

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

.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.pillar-icon { font-size: 1.8rem; margin-bottom: 12px; }
.pillar h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark2); }
.pillar p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── SHOP ─────────────────────────────────────────────────────────────────── */
.shop-hero {
  background: linear-gradient(135deg, var(--dark2) 0%, #2a0a0a 100%);
  padding: 80px 0;
  text-align: center;
}

.shop-hero h1 { color: var(--white); font-size: 2.4rem; font-weight: 900; margin-bottom: 12px; }
.shop-hero h1 span { color: var(--gold); }
.shop-hero p { color: #aaa; max-width: 560px; margin: 0 auto 32px; }

.coming-soon-box {
  max-width: 560px;
  margin: 60px auto;
  background: var(--white);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}

.coming-soon-icon { font-size: 4rem; margin-bottom: 20px; }
.coming-soon-box h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 12px; color: var(--dark2); }
.coming-soon-box p { color: var(--muted); margin-bottom: 28px; line-height: 1.7; }

.social-follow {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
  color: var(--white);
}

.social-btn:hover { transform: translateY(-2px); color: var(--white); }
.social-btn-fb { background: #1877F2; }
.social-btn-tt { background: #000; }
.social-btn-yt { background: #FF0000; }
.social-btn-wa { background: #25D366; }

/* ── CONTACT ──────────────────────────────────────────────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 80px 0;
  text-align: center;
}

.contact-hero h1 { color: var(--white); font-size: 2.4rem; font-weight: 900; margin-bottom: 12px; }
.contact-hero h1 span { color: var(--gold); }
.contact-hero p { color: #aaa; max-width: 520px; margin: 0 auto; }

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

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--dark2);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray);
  border-radius: var(--radius);
  margin-bottom: 16px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
  border: 1px solid transparent;
}

.contact-item:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.05);
  color: var(--text);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-icon-wa { background: rgba(37,211,102,0.15); }
.contact-item-icon-email { background: rgba(212,175,55,0.15); }
.contact-item-icon-fb { background: rgba(24,119,242,0.12); }
.contact-item-icon-tt { background: rgba(0,0,0,0.08); }
.contact-item-icon-yt { background: rgba(255,0,0,0.1); }

.contact-item-label { font-size: 0.75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.contact-item-value { font-size: 0.95rem; font-weight: 600; color: var(--dark2); }

.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid #eee;
}

.contact-form-card h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; color: var(--dark2); }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 2px solid rgba(212,175,55,0.2);
  padding: 56px 0 24px;
}

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

.footer-brand-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-brand-tag {
  font-size: 0.75rem;
  color: var(--green2);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #ccc;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social a:hover { background: var(--gold); color: var(--dark); }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.875rem;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; color: #666; }

/* ── WHATSAPP FLOAT ───────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: all 0.3s;
  animation: wa-pulse 2.5s infinite;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

.wa-float svg { width: 30px; height: 30px; fill: white; }

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

/* ── ALERTS ───────────────────────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert-success { background: rgba(46,125,50,0.1); color: var(--green); border: 1px solid rgba(46,125,50,0.3); }
.alert-error { background: rgba(198,40,40,0.08); color: #c62828; border: 1px solid rgba(198,40,40,0.25); }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-visual { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .app-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section-title { font-size: 1.6rem; }
  .navbar-nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--dark); padding: 16px; border-bottom: 1px solid rgba(212,175,55,0.2); }
  .navbar-nav.open { display: flex; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ad-form-wrapper { padding: 28px 20px; margin: -20px 16px 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
