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

:root {
  --yellow: #FFD600;
  --yellow-dark: #E6C000;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --gray: #888;
  --white: #FFFFFF;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

.yellow { color: var(--yellow); }
.center { text-align: center; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.dark-bg { background: var(--dark); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-img { width: 42px; height: 42px; object-fit: contain; }
.nav-brand {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--yellow);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }
.btn-nav {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--yellow-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(255,214,0,0.08) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 5rem;
}
.hero-tag {
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.7s ease 0.3s both;
}
.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,214,0,0.35);
}
.btn-outline {
  display: inline-block;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fadeUp 0.7s ease 0.4s both;
}
.stat { display: flex; flex-direction: column; }
.stat-n {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 1;
}
.stat-l { font-size: 0.75rem; color: var(--gray); letter-spacing: 1px; margin-top: 0.2rem; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  animation: bounce 1.5s infinite;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text .section-tag { margin-bottom: 1rem; }
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.about-text p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-text .btn-primary { margin-top: 1rem; }
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.feat-card {
  background: var(--dark2);
  border: 1px solid rgba(255,214,0,0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.feat-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.feat-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.feat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feat-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ===== SECTION TAGS & TITLES ===== */
.section-tag {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: block;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 3rem;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.svc-card {
  background: var(--dark2);
  border: 1px solid rgba(255,214,0,0.08);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
  border-color: rgba(255,214,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.svc-num {
  font-family: var(--font-head);
  font-size: 3rem;
  color: rgba(255,214,0,0.15);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.svc-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.svc-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ===== SCHEDULE ===== */
.schedule-wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  margin-top: 1rem;
}
.schedule-table {
  background: var(--dark2);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,214,0,0.1);
}
.sch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.sch-row:last-child { border-bottom: none; }
.sch-row:hover:not(.header-row) { background: rgba(255,214,0,0.05); }
.header-row {
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
}
.sch-row.special { background: rgba(255,214,0,0.08); }
.sch-time { font-weight: 600; font-size: 0.95rem; }
.schedule-cta {
  background: var(--dark2);
  border: 1px solid rgba(255,214,0,0.2);
  border-radius: 12px;
  padding: 2rem;
  min-width: 240px;
  text-align: center;
}
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,200,100,0.15);
  border: 1px solid rgba(0,200,100,0.3);
  color: #00c864;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.open-dot {
  width: 8px; height: 8px;
  background: #00c864;
  border-radius: 50%;
  animation: pulse-green 1.5s infinite;
}
.schedule-cta h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.schedule-cta p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ===== REVIEWS ===== */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.big-rating {
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--yellow);
  line-height: 1;
}
.stars { font-size: 1.5rem; color: var(--yellow); margin-bottom: 0.3rem; }
.rating-summary p { color: var(--gray); font-size: 0.9rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--dark2);
  border: 1px solid rgba(255,214,0,0.1);
  border-radius: 12px;
  padding: 1.8rem;
  transition: border-color 0.3s, transform 0.3s;
}
.review-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.review-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 1rem; }
.review-text {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 0.8rem; }
.reviewer-avatar {
  width: 40px; height: 40px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.9rem; }
.review-author span { font-size: 0.78rem; color: var(--gray); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.2rem; }
.info-item strong { display: block; font-weight: 700; margin-bottom: 0.3rem; }
.info-item p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.6; }
.info-item a { color: var(--yellow); text-decoration: none; }
.social-links { display: flex; flex-direction: column; gap: 0.8rem; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.social-btn:hover { transform: translateX(4px); opacity: 0.9; }
.instagram {
  background: linear-gradient(135deg, #E1306C, #833AB4, #FD1D1D);
  color: #fff;
}
.facebook {
  background: #1877F2;
  color: #fff;
}
.map-container iframe { width: 100%; height: 380px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,214,0,0.15);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo { width: 48px; height: 48px; object-fit: contain; }
.footer-brand h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--yellow);
  letter-spacing: 1px;
}
.footer-brand p { font-size: 0.8rem; color: var(--gray); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--yellow); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; }
.footer-bottom p { font-size: 0.8rem; color: var(--gray); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 3px;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: var(--yellow);
  font-size: 2rem;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .schedule-wrapper { grid-template-columns: 1fr; }
  .schedule-cta { min-width: auto; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 3.2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .about-cards { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.2rem; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .hero-title { font-size: 2.8rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  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.5);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.7);
  animation: none;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.85); }
}

