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

:root {
  --red: #c8102e;
  --yellow: #f5a623;
  --dark: #111111;
  --dark2: #1c1c1c;
  --gray: #2a2a2a;
  --light: #f4f4f4;
  --white: #ffffff;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: #a50d25; border-color: #a50d25; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 3rem; }

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-desc { color: #aaa; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--red);
  transition: box-shadow 0.3s;
}

#navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo { display: flex; align-items: center; gap: 0.75rem; }

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-aes {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  border: 3px solid var(--red);
  padding: 0.1em 0.3em;
  letter-spacing: 0.05em;
}

.logo-text { display: flex; flex-direction: column; }
.logo-title { font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.05em; line-height: 1.2; }
.logo-sub { font-size: 0.65rem; color: var(--yellow); letter-spacing: 0.08em; text-transform: uppercase; }

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

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ccc;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #a50d25 !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.88) 40%,
    rgba(0,0,0,0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
  max-width: 680px;
  padding-left: clamp(1.5rem, 6vw, 5rem);
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.accent { color: var(--red); }

.hero-desc {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  background: var(--red);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  box-shadow: 0 0 0 4px var(--yellow), 0 0 0 6px var(--red);
  animation: pulse 2.5s infinite;
}
.badge-sub { font-size: 0.6rem; letter-spacing: 0.05em; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--yellow), 0 0 0 6px var(--red); }
  50% { box-shadow: 0 0 0 6px var(--yellow), 0 0 0 10px rgba(200,16,46,0.3); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--red);
  padding: 1.25rem 1.5rem;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-icon { font-size: 1.2rem; }

/* ===== SERVICES ===== */
.services {
  padding: 6rem 0;
  background: var(--dark2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--dark);
  border: 1px solid #2a2a2a;
  border-top: 3px solid var(--red);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.service-card p { color: #999; font-size: 0.9rem; line-height: 1.65; }

/* ===== ABOUT ===== */
.about {
  padding: 6rem 0;
  background: var(--dark);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--red);
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  line-height: 1.1;
}

.about-img-badge .big { font-size: 2rem; font-weight: 700; }
.about-img-badge span:last-child { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }

.about-text .section-eyebrow { text-align: left; }

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.about-text p {
  color: #aaa;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-list li {
  color: #ccc;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-list li::before { color: var(--yellow); font-weight: 700; }

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 0;
  background: var(--dark2);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--dark);
  border: 1px solid #2a2a2a;
  border-top: 3px solid var(--yellow);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.contact-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.contact-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.contact-card p { color: #aaa; line-height: 1.7; }
.contact-card a { color: var(--white); font-weight: 600; font-size: 1.1rem; }
.contact-card a:hover { color: var(--yellow); }

.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #333;
  height: 380px;
}

.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ===== FOOTER ===== */
.footer {
  background: #0a0a0a;
  border-top: 3px solid var(--red);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-inner .logo-img {
  height: 50px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.footer-copy { color: #555; font-size: 0.8rem; }
.footer-phone a { color: var(--yellow); font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 0.05em; font-weight: 600; }
.footer-phone a:hover { color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== POLICIES ===== */
.policies {
  background: var(--dark2);
  padding: 6rem 0;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.policy-card {
  background: var(--gray);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--red);
  transition: transform 0.2s ease;
}

.policy-card:hover { transform: translateY(-4px); }

.policy-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.policy-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--yellow);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.policy-card p {
  font-size: 0.92rem;
  color: #ccc;
  line-height: 1.6;
}

.policy-card strong {
  color: var(--white);
}

@media (max-width: 700px) {
  .hamburger { display: block; }

  .nav-links {
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: rgba(17,17,17,0.98);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    border-bottom: 2px solid var(--red);
  }

  .nav-links.open { transform: translateY(0); }

  .logo-img { height: 60px; }

  .hero-content { padding-left: 1.5rem; }
  .hero-badge { display: none; }

  .trust-inner { justify-content: flex-start; gap: 1.2rem; }

  .footer-inner { flex-direction: column; text-align: center; gap: 1.5rem; }

  .footer-contact { align-items: center; }
}
