/*
Theme Name: Aldoha Academy
Theme URI: https://aldoha-academy.com
Author: Aldoha Academy
Description: قالب أكاديمية الضحي - تعليم اللغة العربية والعلوم الشرعية
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: aldoha
Tags: rtl-language, education, islamic
*/

/* ==============================
   CSS VARIABLES
============================== */
:root {
  --green-dark:   #4A0404 !important; /* Maroon from logo */
  --green:        #800000 !important; /* Dark Red */
  --green-light:  #fff5f5 !important;
  --beige:        #F5F0E6 !important;
  --gold:         #f8b004 !important; /* Yellow from logo */
  --gold-light:   #fff9e6 !important;
  --white:        #FFFFFF !important;
  --text-dark:    #1a1a2e !important;
  --text-mid:     #3d4f47 !important;
  --text-light:   #7a8c84 !important;
  --border:       #e0ddd5 !important;
  --shadow-sm:    0 2px 12px rgba(74,4,4,0.08) !important;
  --shadow-md:    0 8px 32px rgba(74,4,4,0.13) !important;
  --shadow-lg:    0 20px 60px rgba(74,4,4,0.18) !important;
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --transition:   all 0.35s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  direction: rtl;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ==============================
   TYPOGRAPHY
============================== */
h1, h2, h3, h4, h5 {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

.section-tag {
  display: inline-block;
  background: #fff9e6 !important;
  color: #4A0404 !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-title span { color: #800000 !important; }

.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ==============================
   LAYOUT
============================== */
.container {
  width: min(1200px, 94%);
  margin: 0 auto;
}

section { padding: 90px 0; display: block !important; visibility: visible !important; opacity: 1 !important; }

/* ==============================
   BUTTONS
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: #f8b004 !important;
  color: var(--text-dark);
  border-color: #f8b004 !important;
}
.btn-primary:hover {
  background: #c49540;
  border-color: #c49540;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,87,0.4);
}

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

.btn-green {
  background: #800000 !important;
  color: var(--white);
  border-color: #800000 !important;
}
.btn-green:hover {
  background: #4A0404 !important;
  border-color: #4A0404 !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: #800000 !important;
  border-color: #800000 !important;
}
.btn-ghost:hover {
  background: #800000 !important;
  color: var(--white);
}

/* ==============================
   NAVBAR
============================== */
#navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 18px 0;
}

#navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-icon {
  width: 44px; height: 44px;
  background: #f8b004 !important;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #4A0404 !important;
  font-size: 1.3rem;
}

.nav-logo .logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  transition: var(--transition);
}

#navbar.scrolled .nav-logo .logo-text { color: var(--text-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-switcher {
  margin-inline-start: 10px;
}
.lang-btn {
  background: var(--gold);
  color: var(--white) !important;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}
[dir="ltr"] .hero-inner {
  grid-template-columns: 1fr 1fr;
}
[dir="ltr"] .hero-content {
  text-align: left;
}
[dir="ltr"] .hero-badge {
  justify-content: flex-start;
}
[dir="ltr"] .hero-btns {
  justify-content: flex-start;
}
[dir="ltr"] .hero-stats {
  text-align: center;
}
[dir="ltr"] .about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
}
[dir="ltr"] .about-card h4 i {
  margin-left: 0 !important;
  margin-right: 6px;
}
[dir="ltr"] .contact-channel {
  flex-direction: row;
}
[dir="ltr"] .cc-icon {
  margin-right: 14px;
}

.nav-links a {
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}

#navbar.scrolled .nav-links a { color: var(--text-mid); }

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links a.active {
  background: #fff5f5 !important;
  color: #4A0404 !important;
}

.nav-cta { margin-inline-start: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
#navbar.scrolled .hamburger span { background: var(--text-dark); }

/* ==============================
   HERO
============================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #4A0404 0%, #300000 40%, #200000 100%) !important;
  padding-top: 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,168,87,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(12,124,89,0.15) 0%, transparent 40%);
  pointer-events: none;
}

.hero-ornament {
  position: absolute;
  opacity: 0.04;
  font-size: 28rem;
  color: #f8b004 !important;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-family: 'Cairo', serif;
  font-weight: 900;
  line-height: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,87,0.15);
  border: 1px solid rgba(212,168,87,0.3);
  color: #f8b004 !important;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.25;
}

.hero-title .accent { color: #f8b004 !important; }

.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  transition: var(--transition);
}
.stat-item:hover {
  background: rgba(212,168,87,0.12);
  border-color: rgba(212,168,87,0.3);
}

.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #f8b004 !important;
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  gap: 12px;
}

.hero-img-placeholder i { font-size: 3rem; }

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 { bottom: -16px; right: -16px; }
.hero-float-card.card-2 { top: -16px; left: -16px; animation-delay: 1.5s; }

.hero-float-card .fc-icon {
  width: 36px; height: 36px;
  background: #fff5f5 !important;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #800000 !important;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-float-card .fc-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
}
.hero-float-card .fc-text span {
  font-size: 0.72rem;
  color: var(--text-light);
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ==============================
   ABOUT
============================== */
#about { background: var(--beige); }

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

.about-img-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #fff5f5 !important, #c8e8df);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: #800000 !important;
  font-size: 5rem;
  box-shadow: var(--shadow-lg);
}

.about-badge-float {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: #4A0404 !important;
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge-float strong { display: block; font-size: 1.5rem; color: #f8b004 !important; }
.about-badge-float span  { font-size: 0.78rem; opacity: 0.8; }

.about-text .section-sub { margin: 0 0 32px; text-align: right; }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid #800000 !important;
  transition: var(--transition);
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.about-card h4 { font-size: 0.95rem; color: #4A0404 !important; margin-bottom: 8px; }
.about-card p  { font-size: 0.82rem; color: var(--text-light); line-height: 1.7; }

/* ==============================
   PROGRAMS
============================== */
#programs { background: var(--white); }

.programs-header { text-align: center; }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
}

.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, #800000 !important, #f8b004 !important);
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition);
}

.program-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.program-card:hover::before { transform: scaleX(1); }

.prog-icon {
  width: 56px; height: 56px;
  background: #fff5f5 !important;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #800000 !important;
  margin-bottom: 20px;
  transition: var(--transition);
}
.program-card:hover .prog-icon {
  background: #800000 !important;
  color: var(--white);
}

.program-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.prog-subtitle {
  font-size: 0.8rem;
  color: #f8b004 !important;
  font-weight: 700;
  margin-bottom: 12px;
}

.program-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.prog-features {
  margin-bottom: 24px;
}

.prog-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-mid);
  padding: 4px 0;
}

.prog-features li::before {
  content: '✓';
  color: #800000 !important;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ==============================
   WHY US
============================== */
#why { background: var(--beige); }

.why-header { text-align: center; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 68px; height: 68px;
  background: #fff5f5 !important;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: #800000 !important;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: #800000 !important;
  color: var(--white);
}

.why-card h3 { font-size: 1rem; margin-bottom: 10px; }
.why-card p  { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ==============================
   STEPS
============================== */
#steps { background: #4A0404 !important; }

#steps .section-tag { background: rgba(212,168,87,0.2); color: #f8b004 !important; }
#steps .section-title { color: var(--white); }
#steps .section-sub   { color: rgba(255,255,255,0.6); }

.steps-header { text-align: center; }

.steps-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: linear-gradient(90deg, #f8b004 !important 0%, rgba(212,168,87,0.2) 100%);
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(212,168,87,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #f8b004 !important;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step-item:hover .step-circle {
  background: #f8b004 !important;
  color: var(--text-dark);
  border-color: #f8b004 !important;
  transform: scale(1.1);
}

.step-num {
  position: absolute;
  top: -8px; left: -8px;
  width: 22px; height: 22px;
  background: #f8b004 !important;
  color: var(--text-dark);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

.step-item h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 6px; }
.step-item p  { color: rgba(255,255,255,0.55); font-size: 0.8rem; }

/* ==============================
   TESTIMONIALS
============================== */
#testimonials { background: var(--white); }
.testimonials-header { text-align: center; }

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

.testi-card {
  background: var(--beige);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testi-quote {
  font-size: 3rem;
  color: #800000 !important;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -8px;
  font-family: serif;
}

.testi-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #800000 !important;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-author strong { display: block; font-size: 0.88rem; }
.testi-author span   { font-size: 0.75rem; color: var(--text-light); }

.testi-stars {
  color: #f8b004 !important;
  font-size: 0.75rem;
  margin-top: 3px;
}

/* ==============================
   FAQ
============================== */
#faq { background: var(--beige); }
.faq-header { text-align: center; }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.faq-q:hover { color: #800000 !important; }

.faq-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff5f5 !important;
  color: #800000 !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  background: #800000 !important;
  color: var(--white);
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* ==============================
   CONTACT
============================== */
#contact { background: var(--white); }

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

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: #4A0404 !important;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

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

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--beige);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-channel:hover {
  background: #fff5f5 !important;
  transform: translateX(-4px);
}

.cc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.cc-icon.wa  { background: #25D366; }
.cc-icon.tg  { background: #0088CC; }
.cc-icon.ig  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

.cc-text strong { display: block; font-size: 0.88rem; }
.cc-text span   { font-size: 0.78rem; color: var(--text-light); }

.contact-form-wrap {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--text-mid); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Cairo', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  direction: rtl;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #800000 !important;
  box-shadow: 0 0 0 3px rgba(12,124,89,0.1);
}

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

/* ==============================
   FOOTER
============================== */
#footer {
  background: var(--text-dark);
  padding: 70px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  width: 40px; height: 40px;
  background: #800000 !important;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.footer-logo .logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}

.footer-about p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--white);
  transition: var(--transition);
}
.social-btn:hover { transform: translateY(-3px); }
.social-btn.wa  { background: #25D366; }
.social-btn.tg  { background: #0088CC; }
.social-btn.ig  { background: linear-gradient(45deg,#f09433,#dc2743,#bc1888); }
.social-btn.yt  { background: #FF0000; }

.footer-col h4 {
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f8b004 !important;
  display: inline-block;
}

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

.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '←';
  font-size: 0.7rem;
  color: #f8b004 !important;
  opacity: 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-right: 4px;
}
.footer-links a:hover::before { opacity: 1; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: #f8b004 !important;
  transition: var(--transition);
}
.footer-bottom a:hover { color: var(--white); }

/* ==============================
   FLOATING BUTTONS
============================== */
.float-btns {
  position: fixed;
  bottom: 28px;
  left: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: var(--transition);
  cursor: pointer;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.wa  { background: #25D366; }
.float-btn.tg  { background: #0088CC; }

/* ==============================
   ANIMATIONS
============================== */
.fade-up {
  opacity: 1;
  transform: none;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ==============================
   MOBILE NAV MENU
============================== */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: #4A0404 !important;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  padding: 10px 20px;
}

.mobile-close {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-image    { display: none; }
  .hero-stats    { grid-template-columns: repeat(2, 1fr); }
  .about-inner   { grid-template-columns: 1fr; }
  .about-img-stack { display: none; }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 30px; }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 1.7rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .why-grid  { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-timeline { flex-direction: column; align-items: center; }
  .steps-timeline::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .about-cards { grid-template-columns: 1fr; }
}
