/* ===== GOOGLE FONTS & RESET ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #ff4500;
  --secondary: #ff6a00;
  --accent: #ff8c00;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --dark4: #222222;
  --text: #e0e0e0;
  --text-muted: #888;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #ff4500, #ff8c00);
  --gradient2: linear-gradient(135deg, #ff8c00, #ff4500);
  --card-bg: #161616;
  --border: rgba(255,69,0,0.2);
  --shadow: 0 10px 40px rgba(255,69,0,0.15);
  --transition: all 0.3s ease;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gradient); border-radius: 3px; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.5s ease;
}
#loader.hide { opacity: 0; pointer-events: none; }
.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.loader-logo {
  font-size: 2rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.loader-bar {
  width: 200px; height: 3px; background: var(--dark3); border-radius: 2px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; background: var(--gradient); border-radius: 2px;
  animation: loadFill 1.5s ease forwards;
}
@keyframes loadFill { from { width: 0; } to { width: 100%; } }

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }

.nav-logo {
  font-size: 1.4rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}
.nav-logo span { color: var(--white); -webkit-text-fill-color: var(--white); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text);
  position: relative; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gradient);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gradient); color: var(--white) !important;
  padding: 8px 20px; border-radius: 25px; font-weight: 600 !important;
  -webkit-text-fill-color: var(--white) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,69,0,0.4); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 25px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,0.98); backdrop-filter: blur(10px);
    flex-direction: column; gap: 0; padding: 0;
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { max-height: 400px; }
  .nav-links a { padding: 16px 5%; border-bottom: 1px solid rgba(255,255,255,0.05); width: 100%; }
  .nav-cta { margin: 12px 5%; width: calc(100% - 10%); text-align: center; border-radius: 8px; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  border: none; transition: var(--transition); text-decoration: none;
}
.btn-primary {
  background: var(--gradient); color: var(--white);
  box-shadow: 0 4px 20px rgba(255,69,0,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,69,0,0.5); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }

/* ===== SECTION COMMONS ===== */
section { padding: 90px 5%; }
.section-tag {
  display: inline-block; background: rgba(255,69,0,0.1);
  color: var(--primary); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; border: 1px solid var(--border);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 16px;
}
.section-title span { background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; max-width: 600px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&q=80') center/cover no-repeat;
  padding-top: 70px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 50%, rgba(255,69,0,0.1) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,69,0,0.15); border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 30px; margin-bottom: 24px;
  font-size: 0.85rem; color: var(--accent);
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 20px;
}
.hero h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 36px; max-width: 550px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== STATS ===== */
.stats { background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 60px 5%; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px; text-align: center; }
.stat-item { position: relative; }
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 900;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 8px; font-weight: 500; }

/* ===== WHY CHOOSE US ===== */
.why { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.why-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); transform: scaleX(0); transition: var(--transition);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--primary); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,69,0,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.6rem; color: var(--primary);
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--gradient); color: var(--white); border-color: transparent; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ===== BMI CALCULATOR ===== */
.bmi { background: var(--dark2); }
.bmi-wrapper {
  max-width: 600px; margin: 0 auto;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 48px 40px;
}
.bmi-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.input-group label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.input-group input {
  width: 100%; padding: 14px 16px; background: var(--dark3);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--white); font-family: 'Poppins', sans-serif; font-size: 1rem;
  transition: var(--transition);
}
.input-group input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,69,0,0.1); }
.bmi-result {
  margin-top: 24px; padding: 20px; border-radius: 12px;
  background: rgba(255,69,0,0.08); border: 1px solid var(--border);
  text-align: center; display: none;
}
.bmi-result.show { display: block; }
.bmi-value { font-size: 3rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.bmi-category { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-top: 4px; }
.bmi-advice { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }

/* ===== PROGRAMS ===== */
.programs { background: var(--dark); }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.program-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  transition: var(--transition); cursor: pointer; position: relative; overflow: hidden;
}
.program-card::after {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient); opacity: 0; transition: var(--transition);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.program-card:hover::after { opacity: 0.05; }
.program-icon { font-size: 2.2rem; margin-bottom: 16px; }
.program-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.program-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.program-card .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-size: 0.85rem; font-weight: 600;
  margin-top: 16px; transition: var(--transition);
}
.program-card:hover .arrow { gap: 10px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px; transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary); }
.stars { color: var(--accent); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.author-role { font-size: 0.8rem; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gradient); padding: 80px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1920&q=80') center/cover;
  opacity: 0.1;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

/* ===== ABOUT PAGE ===== */
.about-hero {
  min-height: 50vh; display: flex; align-items: center;
  background: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&q=80') center/cover;
  position: relative; padding-top: 70px;
}
.about-hero .hero-overlay { background: rgba(0,0,0,0.85); }
.page-hero-content { position: relative; z-index: 1; text-align: center; width: 100%; }
.page-hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--white); }
.page-hero-content p { color: var(--text-muted); font-size: 1.05rem; margin-top: 12px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--primary); }

.about-intro { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; border-radius: 20px; object-fit: cover;
  height: 550px; filter: brightness(0.9);
}
.about-img-badge {
  position: absolute; bottom: 30px; left: -20px;
  background: var(--gradient); padding: 20px 24px; border-radius: 16px;
  text-align: center; box-shadow: 0 10px 30px rgba(255,69,0,0.4);
}
.about-img-badge .num { font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.about-img-badge .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.85); }
.about-text .section-tag { margin-bottom: 12px; }
.about-text p { color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; font-size: 0.95rem; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.highlight-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); }
.highlight-item i { color: var(--primary); font-size: 1rem; }

.philosophy { background: var(--dark2); }
.philosophy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.philosophy-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px; transition: var(--transition);
}
.philosophy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary); }
.philosophy-num {
  font-size: 3rem; font-weight: 900; line-height: 1;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.philosophy-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.philosophy-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.journey { background: var(--dark); }
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
  width: 2px; background: var(--gradient);
}
.timeline-item { display: flex; gap: 32px; margin-bottom: 40px; position: relative; }
.timeline-dot {
  width: 42px; height: 42px; border-radius: 50%; background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0; position: relative; z-index: 1;
}
.timeline-content { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; flex: 1; }
.timeline-year { font-size: 0.8rem; color: var(--primary); font-weight: 600; margin-bottom: 6px; }
.timeline-content h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.timeline-content p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ===== SERVICES PAGE ===== */
.services-hero {
  min-height: 50vh; display: flex; align-items: center;
  background: url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=1920&q=80') center/cover;
  position: relative; padding-top: 70px;
}
.services-hero .hero-overlay { background: rgba(0,0,0,0.85); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); transform: scaleX(0); transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--primary); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 65px; height: 65px; border-radius: 16px;
  background: rgba(255,69,0,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--primary); margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gradient); color: var(--white); border-color: transparent; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.service-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }
.service-tag {
  display: inline-block; margin-top: 16px;
  background: rgba(255,69,0,0.1); color: var(--primary);
  font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 20px;
}

/* ===== GALLERY PAGE ===== */
.gallery-hero {
  min-height: 50vh; display: flex; align-items: center;
  background: url('https://images.unsplash.com/photo-1540497077202-7c8a3999166f?w=1920&q=80') center/cover;
  position: relative; padding-top: 70px;
}
.gallery-hero .hero-overlay { background: rgba(0,0,0,0.85); }
.gallery-filter { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 22px; border-radius: 25px; border: 1px solid var(--border);
  background: transparent; color: var(--text-muted); font-family: 'Poppins', sans-serif;
  font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--gradient); color: var(--white); border-color: transparent; }
.gallery-grid {
  columns: 3; column-gap: 16px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 16px;
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; display: block; transition: transform 0.4s ease;
  border-radius: var(--radius);
}
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(255,69,0,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition); border-radius: var(--radius);
}
.gallery-overlay i { font-size: 2rem; color: var(--white); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  z-index: 9000; display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 2rem; color: var(--white); cursor: pointer; transition: var(--transition);
}
.lightbox-close:hover { color: var(--primary); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,69,0,0.2); border: 1px solid var(--border);
  color: var(--white); width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.2rem; transition: var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gradient); border-color: transparent; }

@media (max-width: 768px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }

/* ===== CONTACT PAGE ===== */
.contact-hero {
  min-height: 50vh; display: flex; align-items: center;
  background: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1920&q=80') center/cover;
  position: relative; padding-top: 70px;
}
.contact-hero .hero-overlay { background: rgba(0,0,0,0.85); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info h3 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(255,69,0,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--primary); flex-shrink: 0;
}
.contact-item-text .label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.contact-item-text .value { font-size: 0.95rem; color: var(--white); font-weight: 500; }
.contact-item-text a { color: var(--white); transition: var(--transition); }
.contact-item-text a:hover { color: var(--primary); }
.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-link {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--card-bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-muted); transition: var(--transition);
}
.social-link:hover { background: var(--gradient); color: var(--white); border-color: transparent; transform: translateY(-3px); }

.contact-form-wrap {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
}
.contact-form-wrap h3 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 16px; background: var(--dark3);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--white); font-family: 'Poppins', sans-serif; font-size: 0.95rem;
  transition: var(--transition); resize: none;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,69,0,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }

.map-section { background: var(--dark2); padding: 0 5% 90px; }
.map-wrap { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); height: 400px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark2); border-top: 1px solid var(--border);
  padding: 60px 5% 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .nav-logo { font-size: 1.6rem; display: inline-block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-col h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--text-muted); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-item i { color: var(--primary); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: var(--text-muted);
}
.footer-bottom span { color: var(--primary); }

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
  position: fixed; bottom: 90px; right: 24px; z-index: 500;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition); animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}
.back-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gradient); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; border: none;
  box-shadow: 0 4px 20px rgba(255,69,0,0.4);
  opacity: 0; transform: translateY(20px); transition: var(--transition);
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { transform: translateY(-3px); }

/* ===== AOS ANIMATIONS ===== */
[data-aos] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.85); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 400px; }
  .about-img-badge { left: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 70px 5%; }
  .hero h1 { font-size: 2.2rem; }
  .bmi-inputs { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .timeline::before { left: 16px; }
  .timeline-dot { width: 34px; height: 34px; font-size: 0.75rem; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .bmi-wrapper { padding: 32px 20px; }
  .contact-form-wrap { padding: 28px 20px; }
}
