/* ===== HOME.CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1a3c6e;
  --blue-light: #2563eb;
  --yellow: #f59e0b;
  --yellow-light: #fcd34d;
  --white: #ffffff;
  --gray: #f1f5f9;
  --dark: #0f172a;
  --text: #334155;
}

html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text); overflow-x: hidden; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: rgba(10, 30, 60, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--yellow);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { font-size: 28px; }
.brand-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 26px; color: var(--yellow);
  letter-spacing: 3px;
}
.nav-links { display: flex; list-style: none; gap: 8px; }
.nav-links a {
  color: #cbd5e1; text-decoration: none; font-weight: 700;
  font-size: 14px; padding: 8px 16px; border-radius: 6px;
  letter-spacing: 1px; text-transform: uppercase;
  transition: all 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--yellow); color: var(--dark);
}
.hamburger { display: none; background: none; border: 2px solid var(--yellow); color: var(--yellow); font-size: 20px; padding: 4px 10px; border-radius: 6px; cursor: pointer; }

/* MOBILE MENU */
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: rgba(10,30,60,0.97);
  padding: 20px; gap: 10px;
}
.mobile-menu a { color: var(--white); text-decoration: none; font-weight: 700; padding: 12px 16px; border-radius: 8px; text-align: center; border: 1px solid #1e3a5f; transition: all 0.2s; }
.mobile-menu a:hover { background: var(--yellow); color: var(--dark); }
.mobile-menu.open { display: flex; }

/* HERO */
.hero {
  min-height: 100vh;
  background: url('armada5.jpeg') center center / cover no-repeat;
  position: relative;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 100px 60px 60px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,20,50,0.92) 0%, rgba(10,20,50,0.6) 60%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-sub {
  color: var(--yellow); font-weight: 800; font-size: 13px;
  letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 14px;
  animation: fadeUp 0.6s ease forwards;
}
.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(64px, 10vw, 110px);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.2s forwards; opacity: 0;
}
.hero-title span { color: var(--yellow); }
.hero-desc {
  font-size: 17px; color: #cbd5e1; line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.4s forwards; opacity: 0;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.6s forwards; opacity: 0; }
.btn-primary {
  background: var(--yellow); color: var(--dark);
  padding: 14px 30px; border-radius: 50px; font-weight: 800;
  font-size: 15px; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 6px 24px rgba(245,158,11,0.4);
}
.btn-primary:hover { background: var(--yellow-light); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(245,158,11,0.5); }
.btn-outline {
  border: 2px solid var(--white); color: var(--white);
  padding: 14px 30px; border-radius: 50px; font-weight: 700;
  font-size: 15px; text-decoration: none; transition: all 0.3s;
}
.btn-outline:hover { background: var(--white); color: var(--dark); transform: translateY(-3px); }

/* HERO BADGES */
.hero-badges {
  position: absolute; bottom: 50px; right: 60px; z-index: 2;
  display: flex; gap: 20px;
  animation: fadeUp 0.8s ease 0.8s forwards; opacity: 0;
}
.badge {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245,158,11,0.4);
  border-radius: 16px; padding: 20px 28px;
  text-align: center; color: var(--white);
}
.badge-num { display: block; font-family: 'Bebas Neue', cursive; font-size: 36px; color: var(--yellow); line-height: 1; }
.badge-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; opacity: 0.85; }

/* WHY US */
.why-us { padding: 100px 60px; background: var(--gray); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 48px; color: var(--blue);
  letter-spacing: 2px; margin-bottom: 12px;
}
.section-header p { font-size: 17px; color: #64748b; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px; max-width: 1100px; margin: 0 auto;
}
.why-card {
  background: var(--white); border-radius: 20px;
  padding: 40px 30px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s; border-top: 4px solid transparent;
}
.why-card:hover { transform: translateY(-8px); border-top-color: var(--yellow); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.why-icon { font-size: 48px; margin-bottom: 20px; }
.why-card h3 { font-size: 20px; color: var(--blue); font-weight: 800; margin-bottom: 12px; }
.why-card p { font-size: 15px; color: #64748b; line-height: 1.7; }

/* PROMO */
.promo {
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
  text-align: center; position: relative; overflow: hidden;
}
.promo::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(245,158,11,0.15); border-radius: 50%;
}
.promo-inner { position: relative; z-index: 1; }
.promo h2 { font-family: 'Bebas Neue', cursive; font-size: 52px; color: var(--yellow); letter-spacing: 3px; margin-bottom: 16px; }
.promo p { font-size: 18px; color: #bfdbfe; margin-bottom: 32px; }
.btn-white {
  background: var(--white); color: var(--blue);
  padding: 14px 36px; border-radius: 50px; font-weight: 800;
  font-size: 16px; text-decoration: none;
  transition: all 0.3s; display: inline-block;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.btn-white:hover { background: var(--yellow); color: var(--dark); transform: scale(1.05); }

/* FOOTER */
.footer {
  background: var(--dark); color: #94a3b8;
  text-align: center; padding: 30px 20px;
  font-size: 14px; line-height: 2;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero { padding: 90px 24px 160px; justify-content: center; text-align: center; }
  .hero-badges { right: 50%; transform: translateX(50%); gap: 12px; }
  .badge { padding: 12px 16px; }
  .badge-num { font-size: 26px; }
  .why-us { padding: 60px 24px; }
}