/* Fonts loaded via <link> in HTML for better reliability */

:root {
  --yellow: #F5A800;
  --yellow-dark: #D4900A;
  --black: #1A1A1A;
  --dark: #222222;
  --dark2: #333333;
  --gray: #666666;
  --gray-light: #999999;
  --white: #FFFFFF;
  --off-white: #F9F7F3;
  --border: #E0E0E0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: #FFFFFF;
  color: var(--dark);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 70px;
}

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

.nav-logo-box {
  background: var(--yellow);
  padding: 4px 10px;
  display: flex; flex-direction: column; align-items: center; line-height: 1;
}

.nav-logo-box .brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 900;
  color: var(--black);
  letter-spacing: 2px;
}

.nav-logo-box .brand-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 8px; font-weight: 700;
  color: var(--black);
  letter-spacing: 3px;
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--gray-light);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.nav-wa {
  background: #25D366;
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 4px !important;
  border-bottom: none !important;
  display: flex; align-items: center; gap: 6px;
}

.nav-wa:hover { background: #1eb358 !important; color: white !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px;
}

.hamburger span {
  width: 25px; height: 2px;
  background: var(--yellow);
  transition: all 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0;
  background: var(--black);
  z-index: 999;
  padding: 20px;
  border-bottom: 3px solid var(--yellow);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--gray-light);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover, .mobile-menu a.active { color: var(--yellow); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 998;
  background: #25D366;
  color: white;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse 2s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.7);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ── PAGE WRAPPER ── */
.page-wrap { padding-top: 70px; }

/* ── SECTION HELPERS ── */
.section { padding: 80px 40px; }
.section-dark { background: var(--dark); color: var(--white); }
.section-black { background: var(--black); color: var(--white); }
.section-yellow { background: var(--yellow); color: var(--black); }

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

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  display: block;
}

.section-dark .section-label,
.section-black .section-label { color: var(--yellow); }

.section-yellow .section-label { color: rgba(0,0,0,0.5); }

h1, h2, h3, h4 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.1; }

.section-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-title .accent { color: var(--yellow); }
.section-dark .section-title, .section-black .section-title { color: var(--white); }
.section-yellow .section-title { color: var(--black); }

.divider-line {
  width: 60px; height: 4px;
  background: var(--yellow);
  margin-bottom: 40px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: none; cursor: pointer;
  transition: all 0.2s;
}

.btn-yellow {
  background: var(--yellow); color: var(--black);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-outline:hover { background: var(--yellow); color: var(--black); }

.btn-black {
  background: var(--black); color: var(--yellow);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-black:hover { background: var(--dark2); }

.btn-wa {
  background: #25D366; color: white;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-wa:hover { background: #1eb358; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 4px solid var(--yellow);
  color: var(--white);
  padding: 60px 40px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-logo-box {
  background: var(--yellow);
  padding: 8px 16px;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo-box .brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 900;
  color: var(--black);
  letter-spacing: 3px;
  display: block; line-height: 1;
}

.footer-logo-box .brand-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 700;
  color: var(--black);
  letter-spacing: 4px;
  display: block;
}

footer p { color: var(--gray-light); font-size: 14px; line-height: 1.7; }

.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--gray-light); text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--yellow); }

.footer-contact-item {
  display: flex; gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item .icon { color: var(--yellow); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item p { color: var(--gray-light); font-size: 13px; }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
}

.footer-bottom p { color: var(--gray); font-size: 13px; }

/* ── CARDS ── */
.card {
  background: white;
  border: 1px solid #E5E5E5;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--black);
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 40%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(245,168,0,0.06) 8px,
    rgba(245,168,0,0.06) 16px
  );
}

.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--yellow); text-decoration: none; font-size: 13px; font-weight: 600; }
.breadcrumb span { color: var(--gray-light); font-size: 13px; }

/* ── ANIMATE ON SCROLL ── */
.aos {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.aos.visible {
  opacity: 1;
  transform: translateY(0);
}
.aos-delay-1 { transition-delay: 0.1s; }
.aos-delay-2 { transition-delay: 0.2s; }
.aos-delay-3 { transition-delay: 0.3s; }
.aos-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 20px; }
  .page-hero { padding: 60px 20px 40px; }
  footer { padding: 40px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .navbar { padding: 0 20px; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
