/* ── SHARED STYLES ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #cc1f1f;
  --red-dark: #a81818;
  --red-bg:   #f9eeee;
  --white:    #ffffff;
  --light:    #f5f5f5;
  --border:   #e0e0e0;
  --text:     #333333;
  --muted:    #777777;
  --dark:     #1a1a1a;
  --dark2:    #222222;
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── TOPBAR ──────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: #aaa;
  gap: 12px;
}
.topbar a { color: var(--red); font-weight: 700; }
.topbar a:hover { text-decoration: underline; }
.topbar-right { display: flex; gap: 24px; align-items: center; flex-shrink: 0; }

/* ── NAV ─────────────────────────────────────────────── */
.site-nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-wrap {
  padding: 0 4% 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.nav-logo img {
  height: 62px;
  width: auto;
  display: block;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-menu li a {
  display: block;
  padding: 32px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white) !important;
  padding: 12px 22px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 1px;
  border-bottom: none !important;
  margin-left: 12px;
  transition: background 0.2s !important;
}
.nav-call:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 64px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204,31,31,0.15) 0%, transparent 60%);
}
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
}
.page-hero h1 span { color: var(--red); }
.breadcrumb {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); }

/* ── DIVIDERS ─────────────────────────────────────────── */
.divider {
  width: 50px; height: 3px;
  background: var(--red);
  margin: 14px auto 0;
  border-radius: 2px;
}
.divider-left {
  width: 50px; height: 3px;
  background: var(--red);
  margin: 14px 0 0;
  border-radius: 2px;
}

/* ── SECTION COMMON ──────────────────────────────────── */
.section { padding: 80px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-center { text-align: center; }

.sec-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}
.sec-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  line-height: 1.1;
}
.sec-title .red { color: var(--red); }
.sec-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 620px;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
  border: 2px solid var(--red);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.8); }

.btn-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 13px 30px;
  border-radius: 4px;
  border: 2px solid var(--red);
  transition: background 0.2s, color 0.2s;
}
.btn-outline-red:hover { background: var(--red); color: var(--white); }

/* ── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background: var(--dark);
  padding: 80px 5%;
  text-align: center;
}
.cta-banner .sec-title { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 500px; margin: 0 auto 36px; line-height: 1.75; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer { background: var(--dark2); padding: 60px 5% 28px; }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 52px; margin-bottom: 16px; background: #fff; padding: 6px 10px; border-radius: 4px; }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 300px; margin-bottom: 16px; }
.footer-phone { color: var(--red); font-family: 'Oswald', sans-serif; font-size: 1.15rem; letter-spacing: 1px; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { display: flex; align-items: center; gap: 8px; }
.footer-col li i { color: var(--red); font-size: 0.7rem; }
.footer-col a { font-size: 0.84rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--red); }

/* ── CONTACT FORM ────────────────────────────────────── */
.form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 44px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.form-box h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-box > p { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fgrp { margin-bottom: 16px; }
.fgrp label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); margin-bottom: 7px; }
.fgrp input, .fgrp select, .fgrp textarea {
  width: 100%; background: var(--light); border: 1px solid var(--border);
  border-radius: 4px; padding: 12px 14px; font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem; color: var(--text); outline: none; transition: border-color 0.2s; resize: vertical;
}
.fgrp input:focus, .fgrp select:focus, .fgrp textarea:focus { border-color: var(--red); background: var(--white); }
.fgrp input::placeholder, .fgrp textarea::placeholder { color: #bbb; }
.fgrp select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.btn-submit { width: 100%; background: var(--red); color: white; font-family: 'Oswald', sans-serif; font-size: 1.05rem; letter-spacing: 1.5px; padding: 14px; border: none; border-radius: 4px; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
.btn-submit:hover { background: var(--red-dark); }

/* ── CONTACT INFO CARDS ──────────────────────────────── */
.cinfo-list { display: flex; flex-direction: column; gap: 16px; }
.cinfo-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 22px 22px; transition: border-color 0.2s;
}
.cinfo-card:hover { border-color: var(--red); }
.cinfo-ico {
  width: 46px; height: 46px; background: var(--red-bg);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.1rem; flex-shrink: 0; border: 1px solid #f0c0c0;
}
.cinfo-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.cinfo-value { font-family: 'Oswald', sans-serif; font-size: 1.15rem; letter-spacing: 0.5px; color: var(--dark); }
.cinfo-value a { color: var(--red); }
.cinfo-value a:hover { text-decoration: underline; }
.cinfo-sub { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar-right { display: none; }
  .nav-menu { display: none; }
  .nav-wrap { height: 72px; }
  .nav-logo img { height: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
