@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --red: #CC1C1C;
  --red-dark: #9B1414;
  --red-light: #E53535;
  --black: #0A0A0A;
  --gray-dark: #1A1A1A;
  --gray-mid: #2D2D2D;
  --gray-light: #3A3A3A;
  --white: #F5F5F0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 70px;
  background: rgba(10,10,10,0.97);
  border-bottom: 2px solid var(--red);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

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

.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.15;
}

.nav-brand span { color: var(--red); }

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

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.65);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(204,28,28,0.12);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}

.nav-links .nav-cta a {
  background: var(--red);
  color: var(--white);
  padding: 8px 20px;
}

.nav-links .nav-cta a:hover {
  background: var(--red-light);
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding-top: 70px;
  height: 260px;
  background: var(--gray-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204,28,28,0.15) 0%, transparent 60%);
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  border: 60px solid rgba(204,28,28,0.07);
  border-radius: 50%;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.4);
  margin-bottom: 14px;
}

.breadcrumb a {
  color: rgba(245,245,240,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--red); }
.breadcrumb .current { color: var(--red); }

.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
}

.page-title span { color: var(--red); }

/* ===== SECTION BASE ===== */
section { padding: 90px 48px; }

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

.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.divider {
  width: 44px; height: 3px;
  background: var(--red);
  margin: 18px 0 32px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 13px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: var(--red-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(245,245,240,0.25);
  color: var(--white);
  padding: 13px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

/* ===== FOOTER ===== */
footer {
  background: var(--gray-dark);
  border-top: 2px solid rgba(204,28,28,0.3);
}

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

.footer-brand-block {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo img {
  height: 48px;
  object-fit: contain;
}

.footer-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.2;
}

.footer-logo-text span { color: var(--red); }

.footer-desc {
  font-size: 0.83rem;
  line-height: 1.7;
  color: rgba(245,245,240,0.45);
  margin-bottom: 24px;
}

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.83rem;
  color: rgba(245,245,240,0.5);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '→';
  color: var(--red);
  font-size: 0.75rem;
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.fci-icon {
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.fci-text {
  font-size: 0.82rem;
  color: rgba(245,245,240,0.5);
  line-height: 1.5;
}

.fci-text a {
  color: rgba(245,245,240,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.fci-text a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(245,245,240,0.07);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(245,245,240,0.25);
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(204,28,28,0.15);
  border: 1px solid rgba(204,28,28,0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
}

.footer-social a:hover { background: var(--red); }

/* ===== WA FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wa 2.5s infinite;
}

.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,0.65); }
}

/* ===== FADE ANIM ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-1 { animation: fadeUp 0.7s 0.1s ease both; }
.fade-up-2 { animation: fadeUp 0.7s 0.2s ease both; }
.fade-up-3 { animation: fadeUp 0.7s 0.35s ease both; }
.fade-up-4 { animation: fadeUp 0.7s 0.5s ease both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  nav { padding: 0 20px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 2px solid var(--red);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
  .nav-toggle { display: flex; }

  section { padding: 60px 20px; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 20px 24px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 12px; text-align: center; }

  .page-hero { height: 200px; }
  .page-hero-content { padding: 0 20px; }
}

@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; }
}
