:root {
  --bg: #0c0e12;
  --bg-panel: #15181e;
  --red: #c81e2c;
  --red-dark: #9c1620;
  --text: #f4f4f4;
  --text-dim: #9aa0a8;
  --border: #262a31;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Arial', sans-serif;
  background: var(--bg);
  color: var(--text);
}

h1, h2, h3 {
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-weight: 900;
  letter-spacing: 0.5px;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.logo { display: flex; align-items: center; gap: 14px; }

.logo img {
  height: 126px;
  width: auto;
  display: block;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 38px;
}

nav a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
  position: relative;
  padding-bottom: 6px;
}

nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.support {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.support .icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.support-text { line-height: 1.3; }

.support-text .label {
  font-size: 11px;
  opacity: 0.85;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.support-text .phone { font-size: 15px; font-weight: 800; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-outline {
  border: 1px solid #3a3f47;
  color: var(--text);
  background: transparent;
}

.eyebrow {
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* PAGE HERO / BREADCRUMB */
.page-hero {
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 40px 50px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: 52px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text-dim);
  font-size: 14px;
}

.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb i { font-size: 10px; color: var(--red); }

/* CTA */
.cta {
  max-width: 1500px;
  margin: 0 auto 20px;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta h2 {
  font-size: 28px;
  text-transform: uppercase;
  max-width: 520px;
  line-height: 1.25;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  margin-top: 10px;
  max-width: 480px;
}

.cta .btn {
  background: #fff;
  color: var(--red-dark);
  padding: 16px 30px;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.footer-main {
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 50px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--text);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img { height: 56px; width: auto; }

.footer-col p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  color: var(--text-dim);
  font-size: 14px;
  transition: color 0.15s ease;
}

.footer-col ul li a:hover { color: var(--red); }

.footer-address {
  display: flex;
  gap: 12px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-address i { color: var(--red); margin-top: 3px; }

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-contact-line i { color: var(--red); width: 16px; }

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 15px;
  transition: all 0.15s ease;
}

.social-icons a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.footer-bottom { border-top: 1px solid var(--border); }

.footer-bottom-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 13px;
}

.footer-bottom-inner a { color: var(--text-dim); }
.footer-bottom-inner a:hover { color: var(--red); }

/* SIDE FLOATING BAR */
.side-bar {
  position: fixed;
  right: 0;
  top: 60%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 50;
}

.side-bar div,
.side-bar a > div {
  width: 70px;
  height: 70px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-right: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  cursor: pointer;
}

.side-bar div span.si,
.side-bar a > div span.si { font-size: 18px; color: var(--red); }

.side-bar div.top {
  background: var(--red);
  color: #fff;
}

.side-bar div.top span.si { color: #fff; }

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 100%;
  max-width: 460px;
  padding: 36px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 18px;
  color: var(--text-dim);
  cursor: pointer;
  background: none;
  border: none;
}

.modal-close:hover { color: var(--text); }

.modal-box h2 {
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modal-box .modal-sub {
  color: var(--text-dim);
  font-size: 13.5px;
  margin-bottom: 26px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  color: var(--text-dim);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #0c0e12;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.modal-box .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

@media (max-width: 1100px) {
  nav ul { display: none; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .page-hero h1 { font-size: 36px; }
}
