:root {
  --primary: #0a1628;
  --accent: #e8b84b;
  --accent2: #1a73e8;
  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(232, 184, 75, 0.25);
  --text: #e8eaf0;
  --muted: #8a92a8;
  --surface: #0f1f3d;
  --surface2: #162240;
  --danger: #e84b4b;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--primary);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 10%, rgba(26, 115, 232, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(232, 184, 75, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
}

main,
header,
section,
footer {
  position: relative;
  z-index: 1;
}

/* ====== EMERGENCY BAR ====== */
.emergency-bar {
  background: var(--danger);
  text-align: center;
  padding: 10px 20px;
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 100;
  animation: pulse-bar 2s ease-in-out infinite;
}

.emergency-bar a {
  color: #fff;
  text-decoration: none;
}

.emergency-bar a:hover {
  text-decoration: underline;
}

@keyframes pulse-bar {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.86;
  }
}

/* ====== NAV ====== */
nav {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent);
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: #000 !important;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 800 !important;
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 184, 75, 0.35);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 6px;
  padding: 10px 12px;
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* Mobile nav behavior */
@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .nav-links {
    display: none;
  }

  body.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 18px 5%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  body.nav-open .nav-links a {
    font-size: 15px;
  }
}

/* ====== BUTTONS ====== */
.btn-primary {
  background: var(--accent);
  color: #000;
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #f5cc6a;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 184, 75, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* ====== HERO (HOME) ====== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 80px 5%;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(26, 115, 232, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 115, 232, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 184, 75, 0.12);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-media {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(420px, 38vw);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

/* ====== STRIPS & SECTIONS ====== */
.areas-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 5%;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.areas-label {
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  white-space: nowrap;
}

.areas-list {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.area-item::before {
  content: "📍";
  font-size: 14px;
}

.section-pad {
  padding: 92px 5%;
}

.section-label {
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 17px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 760px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 26px;
}

.card h3 {
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.card .card-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.card .card-link:hover {
  text-decoration: underline;
}

.section-subtitle {
  margin-top: 56px;
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.photo-grid figure {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.photo-grid img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.photo-grid figcaption {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ====== PAGE HERO ====== */
.page-hero {
  padding: 72px 5% 48px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.page-hero h1 {
  margin-top: 18px;
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.page-hero p {
  margin-top: 18px;
  max-width: 780px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
}

.content {
  padding: 0 5% 92px;
}

.content h2 {
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 44px 0 14px;
}

.content h3 {
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 28px 0 12px;
}

.content p,
.content li {
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
}

.content ul {
  margin-top: 12px;
  padding-left: 18px;
}

.content .highlight {
  background: rgba(232, 184, 75, 0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  margin-top: 22px;
}

/* ====== FORMS ====== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  padding: 12px 12px;
  border-radius: 8px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(232, 184, 75, 0.6);
  box-shadow: 0 0 0 3px rgba(232, 184, 75, 0.12);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.small-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

/* ====== CTA SECTION ====== */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #d4a420 100%);
  padding: 76px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-section h2 {
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
  line-height: 1;
  margin-bottom: 14px;
  position: relative;
}

.cta-section p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 28px;
  position: relative;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: var(--accent);
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 18px 44px;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  transition: all 0.2s;
}

.cta-phone:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* ====== FOOTER ====== */
footer {
  background: #05101f;
  border-top: 1px solid var(--border);
  padding: 60px 5% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h4 {
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--accent);
}

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

.footer-col ul a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ====== FLOATING CALL BTN ====== */
.floating-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--danger);
  color: #fff;
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(232, 75, 75, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float-btn 3s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-call:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 16px 48px rgba(232, 75, 75, 0.5);
}

@keyframes float-btn {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(232, 75, 75, 0.4);
  }
  50% {
    box-shadow: 0 16px 48px rgba(232, 75, 75, 0.6);
  }
}

/* ====== FADE-IN ====== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
  .hero-media {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 5%;
    min-height: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }

  .cta-phone {
    font-size: 22px;
    padding: 16px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
