/* ═══════════════════════════════════════════════════
   HADILA GROUP — STATIC SITE STYLESHEET
   Brand Colors: Dark Navy #0A1628 | Orange #E8820C | White #FFFFFF
═══════════════════════════════════════════════════ */

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

:root {
  --navy:        #0A1628;
  --navy-mid:    #0F1F3D;
  --navy-light:  #162447;
  --orange:      #E8820C;
  --orange-dark: #C46A08;
  --orange-light:#F5A623;
  --gold:        #D4A017;
  --white:       #FFFFFF;
  --white-70:    rgba(255,255,255,0.70);
  --white-40:    rgba(255,255,255,0.40);
  --white-15:    rgba(255,255,255,0.15);
  --white-08:    rgba(255,255,255,0.08);
  --font-ar:     'Cairo', sans-serif;
  --font-en:     'Montserrat', sans-serif;
  --radius:      12px;
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.4);
  --shadow-md:   0 8px 30px rgba(0,0,0,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ar);
  background: var(--navy);
  color: var(--white);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-orange { color: var(--orange); }
.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ── SECTION HEADERS ─────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,130,12,0.12);
  border: 1px solid rgba(232,130,12,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-subtitle {
  color: var(--white-70);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232,130,12,0.2);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10,22,40,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo {
  width: 48px; height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(232,130,12,0.4);
}
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}
.nav-brand-sub {
  font-family: var(--font-en);
  font-size: 8px;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--white-70);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-link:hover { color: var(--white); background: var(--white-08); }
.nav-link-special {
  color: var(--orange) !important;
  border: 1px solid rgba(232,130,12,0.3);
}
.nav-link-special:hover { background: rgba(232,130,12,0.15) !important; }
.btn-whatsapp-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.btn-whatsapp-nav:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,130,12,0.4);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.55) 0%,
    rgba(10,22,40,0.35) 40%,
    rgba(10,22,40,0.75) 80%,
    rgba(10,22,40,0.98) 100%
  );
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 900px;
  padding: 60px 24px;
  animation: fadeUp 1s ease forwards;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
}
.hero-title {
  font-family: var(--font-en);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 24px;
}
.hero-title-white {
  display: block;
  font-size: clamp(4rem, 12vw, 9rem);
  color: var(--white);
  letter-spacing: -2px;
}
.hero-title-orange {
  display: block;
  font-size: clamp(4rem, 12vw, 9rem);
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
}
.hero-slogan-en {
  font-family: var(--font-en);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-slogan-ar {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1rem;
  color: var(--white-70);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(232,130,12,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(232,130,12,0.55);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-08);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  border: 1px solid var(--white-40);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--white-15);
  transform: translateY(-3px);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: bounce 2s infinite;
}

/* ══════════════════════════════════════════════
   STATS
══════════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border-top: 1px solid rgba(232,130,12,0.2);
  border-bottom: 1px solid rgba(232,130,12,0.2);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 20px; }
.stat-number {
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
}
.stat-label {
  font-size: 14px;
  color: var(--white-70);
  margin-top: 8px;
  font-weight: 600;
}

/* ══════════════════════════════════════════════
   HUBS
══════════════════════════════════════════════ */
.hubs-section {
  padding: 100px 0;
  background: var(--navy);
}
.hubs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.hub-card {
  position: relative;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.hub-card:hover .hub-bg-img { transform: scale(1.08); }
.hub-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,22,40,0.97) 0%,
    rgba(10,22,40,0.6) 50%,
    rgba(10,22,40,0.15) 100%
  );
  transition: background 0.4s;
}
.hub-card:hover .hub-overlay {
  background: linear-gradient(
    to top,
    rgba(10,22,40,0.98) 0%,
    rgba(10,22,40,0.7) 55%,
    rgba(10,22,40,0.25) 100%
  );
}
.hub-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.hub-eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,130,12,0.15);
  border: 1px solid rgba(232,130,12,0.3);
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  width: fit-content;
}
.hub-title {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}
.hub-ar {
  font-size: 13px;
  color: var(--white-70);
  margin-bottom: 12px;
}
.hub-divider {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  margin-bottom: 12px;
  border-radius: 2px;
}
.hub-desc {
  font-size: 13px;
  color: var(--white-70);
  line-height: 1.6;
  margin-bottom: 16px;
}
.hub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--white-70);
  background: var(--white-08);
  border: 1px solid var(--white-15);
  padding: 4px 12px;
  border-radius: 20px;
}
.hub-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-hub-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(232,130,12,0.35);
}
.btn-hub-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(232,130,12,0.5);
}
.btn-hub-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-hub-whatsapp:hover {
  background: #1EB858;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}

/* ══════════════════════════════════════════════
   WHY SECTION
══════════════════════════════════════════════ */
.why-section {
  padding: 100px 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white-08);
  border: 1px solid var(--white-15);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}
.why-card:hover {
  background: rgba(232,130,12,0.08);
  border-color: rgba(232,130,12,0.3);
  transform: translateY(-4px);
}
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.why-ar {
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 10px;
  font-weight: 600;
}
.why-card p:last-child {
  font-size: 13px;
  color: var(--white-70);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   LEADS SECTION
══════════════════════════════════════════════ */
.leads-section {
  padding: 100px 0;
  background: var(--navy);
}
.leads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.lead-card {
  background: var(--navy-mid);
  border: 1px solid var(--white-15);
  border-radius: 20px;
  overflow: hidden;
}
.lead-card-header {
  background: linear-gradient(135deg, var(--navy-light), rgba(232,130,12,0.1));
  border-bottom: 1px solid rgba(232,130,12,0.2);
  padding: 28px;
  text-align: center;
}
.lead-icon { font-size: 2.5rem; display: block; margin-bottom: 10px; }
.lead-card-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.lead-card-header p {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lead-form { padding: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white-70);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white-08);
  border: 1px solid var(--white-15);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-ar);
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(232,130,12,0.05);
}
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-group textarea { resize: vertical; }
.btn-form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-ar);
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
  margin-top: 8px;
}
.btn-form-submit:hover {
  background: #1EB858;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
}

/* ══════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(232,130,12,0.15);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-logo {
  width: 80px; height: 80px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid rgba(232,130,12,0.4);
  margin-bottom: 24px;
}
.contact-title {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-desc {
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
  line-height: 1.5;
}
.contact-value:hover { color: var(--orange); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-08);
  border: 1px solid var(--white-15);
  border-radius: 10px;
  color: var(--white-70);
  transition: all 0.3s;
}
.social-btn:hover {
  background: rgba(232,130,12,0.15);
  border-color: rgba(232,130,12,0.4);
  color: var(--orange);
  transform: translateY(-3px);
}
.social-btn-whatsapp:hover {
  background: rgba(37,211,102,0.15) !important;
  border-color: rgba(37,211,102,0.4) !important;
  color: #25D366 !important;
}
.contact-cta-box {
  background: linear-gradient(135deg, var(--navy-light), rgba(232,130,12,0.08));
  border: 1px solid rgba(232,130,12,0.2);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
}
.contact-cta-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-cta-box p {
  color: var(--white-70);
  margin-bottom: 32px;
  line-height: 1.7;
}
.btn-whatsapp-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 14px;
  margin-bottom: 14px;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(37,211,102,0.35);
}
.btn-whatsapp-large:hover {
  background: #1EB858;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37,211,102,0.5);
}
.btn-email-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white-08);
  border: 1px solid var(--white-15);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 14px;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.btn-email-large:hover {
  background: var(--white-15);
  transform: translateY(-2px);
}
.quran-cta { margin-top: 8px; }
.btn-quran {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212,160,23,0.2), rgba(232,130,12,0.2));
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 0.3s;
}
.btn-quran:hover {
  background: linear-gradient(135deg, rgba(212,160,23,0.3), rgba(232,130,12,0.3));
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: #060E1C;
  border-top: 1px solid rgba(232,130,12,0.2);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  width: 70px; height: 70px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid rgba(232,130,12,0.3);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 15px;
  font-weight: 700;
  color: var(--white-70);
  line-height: 1.8;
}
.footer-tagline em {
  font-style: normal;
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 1px;
}
.footer h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  font-size: 13px;
  color: var(--white-70);
  transition: color 0.2s;
}
.footer ul li a:hover { color: var(--orange); }
.footer-hubs ul li {
  font-size: 13px;
  color: var(--white-70);
}
.footer-contact p {
  font-size: 13px;
  color: var(--white-70);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-contact a { color: var(--white-70); transition: color 0.2s; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--white-08);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--white-40);
}

/* ══════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  z-index: 999;
  transition: all 0.3s;
  animation: pulse 3s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(37,211,102,0.65);
}

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 35px rgba(37,211,102,0.75); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hubs-grid { grid-template-columns: 1fr; }
  .hub-card { height: 400px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(10,22,40,0.98); padding: 20px; gap: 4px; border-bottom: 1px solid rgba(232,130,12,0.2); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-whatsapp-nav span { display: none; }
  .btn-whatsapp-nav { padding: 10px 14px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .leads-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hub-card { height: 380px; }
}

@media (max-width: 480px) {
  .hero-title-white, .hero-title-orange { font-size: clamp(3rem, 16vw, 5rem); }
  .hub-content { padding: 20px; }
  .hub-actions { flex-direction: column; }
  .btn-hub-primary, .btn-hub-whatsapp { width: 100%; justify-content: center; }
}
