*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0b1f3a;
  --navy2: #1e3a5f;
  --yellow: #f5c518;
  --ylw2: #d4a800;
  --light: #f4f6fa;
  --mid: #6b7a8d;
  --white: #ffffff;
  --text: #1a2537;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.tag {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  border-left: 3px solid var(--yellow);
  padding: 2px 0 2px 10px;
  margin-bottom: 14px;
}
.tag.dark {
  color: var(--navy);
  border-color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--ylw2);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy2);
  transform: translateY(-2px);
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}
.section-title span {
  color: var(--ylw2);
}
.section-sub {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 560px;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar a:hover {
  color: var(--yellow);
}
.topbar-badge {
  background: var(--yellow);
  color: var(--navy);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}

/* ── HEADER ── */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(11, 31, 58, 0.1);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--navy2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon img {
  width: 42px;
  height: 42px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.logo-name span {
  color: var(--ylw2);
}
.logo-sub {
  font-size: 0.68rem;
  color: var(--mid);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ylw2);
}
.nav-cta {
  margin-left: 12px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid #e8edf3;
  padding: 16px 24px 20px;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 11px 0;
  border-bottom: 1px solid #eef1f6;
}
.mobile-menu a:hover {
  color: var(--ylw2);
}
.mobile-menu .btn {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}

/* ── PAGE HERO (compact) ── */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding: 80px 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(11, 31, 58, 0.96) 38%,
      rgba(11, 31, 58, 0.72) 100%
    ),
    url("https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=1800&q=80&auto=format&fit=crop")
      center/cover no-repeat;
}
.hero-stripe {
  position: absolute;
  right: -60px;
  top: 0;
  width: 520px;
  height: 100%;
  background: var(--yellow);
  opacity: 0.07;
  transform: skewX(-14deg);
  pointer-events: none;
}
.hero-stripe2 {
  position: absolute;
  right: 120px;
  top: 0;
  width: 8px;
  height: 100%;
  background: var(--yellow);
  opacity: 0.5;
  transform: skewX(-14deg);
  pointer-events: none;
}
.hero-stripe3 {
  position: absolute;
  right: 180px;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--yellow);
  opacity: 0.3;
  transform: skewX(-14deg);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.cred-badge {
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--yellow);
  padding: 5px 12px;
  border-radius: 2px;
}
.page-hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--yellow);
}
.page-hero p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 560px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--yellow);
}
.breadcrumb span {
  color: var(--yellow);
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--yellow);
  padding: 18px 0;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}
.trust-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── CONTACT MAIN ── */
.contact-main {
  padding: 96px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: start;
}

/* form side */
.form-head .section-title {
  margin-bottom: 14px;
}
.form-head .section-sub {
  margin-bottom: 34px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field label {
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy);
}
.field label .req {
  color: var(--ylw2);
}
.field input,
.field textarea {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--light);
  border: 1px solid #e1e7ef;
  border-radius: 2px;
  padding: 13px 15px;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  width: 100%;
}
.field textarea {
  resize: vertical;
  min-height: 150px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #9ca9b8;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.18);
}
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: #e05b5b;
  box-shadow: 0 0 0 3px rgba(224, 91, 91, 0.12);
}
.form-note {
  font-size: 0.82rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-note svg {
  width: 15px;
  height: 15px;
  color: var(--ylw2);
  flex-shrink: 0;
}
.contact-form .btn {
  align-self: flex-start;
}
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid var(--yellow);
  border-radius: 2px;
  padding: 16px 18px;
  font-size: 0.92rem;
  color: var(--navy);
}
.form-success.show {
  display: flex;
}
.form-success svg {
  width: 22px;
  height: 22px;
  color: var(--ylw2);
  flex-shrink: 0;
}

/* info side */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  background: var(--light);
  border-radius: 3px;
  padding: 26px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-left: 3px solid transparent;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.info-card:hover {
  border-left-color: var(--yellow);
  box-shadow: 0 12px 36px rgba(11, 31, 58, 0.1);
  transform: translateY(-3px);
}
.info-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--yellow);
}
.info-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}
.info-card p,
.info-card a {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.6;
  text-decoration: none;
}
.info-card a:hover {
  color: var(--ylw2);
}
.info-card .info-meta {
  font-size: 0.78rem;
  color: var(--mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
  font-family: "Oswald", sans-serif;
}

.info-cta {
  background: var(--navy);
  border-radius: 3px;
  padding: 28px 24px;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}
.info-cta::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(245, 197, 24, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.info-cta h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.info-cta p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.info-cta .cta-phone {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.03em;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.info-cta .cta-phone:hover {
  color: var(--white);
}

/* social */
.social-block {
  margin-top: 6px;
}
.social-block h4 {
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 44px;
  height: 44px;
  background: var(--light);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
}
.social-links a svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
  transition: color 0.2s;
}
.social-links a:hover {
  background: var(--yellow);
  transform: translateY(-3px);
}

/* ── MAP STRIP ── */
.map-strip {
  padding: 0 0 96px;
  background: var(--white);
}
.map-wrap {
  background: linear-gradient(145deg, var(--light) 0%, #e8edf5 100%);
  border-radius: 3px;
  padding: 56px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.map-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230B1F3A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.map-wrap svg.pin {
  width: 64px;
  height: 64px;
  color: var(--navy);
  opacity: 0.2;
  position: relative;
  z-index: 1;
}
.map-wrap .map-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  z-index: 1;
}
.map-wrap .map-addr {
  font-size: 0.92rem;
  color: var(--mid);
  position: relative;
  z-index: 1;
}
.map-wrap .btn {
  position: relative;
  z-index: 1;
  margin-top: 6px;
}

/* ── FULL-WIDTH CTA ── */
.cta-full {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  position: relative;
  overflow: hidden;
}
.cta-full::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(245, 197, 24, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-full .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-copy h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.cta-copy h2 span {
  color: var(--yellow);
}
.cta-copy p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.cta-phone {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.03em;
  text-decoration: none;
}
.cta-phone:hover {
  color: var(--white);
}
.cta-phone-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
  margin-top: -8px;
}

/* ── FOOTER ── */
footer {
  background: #07172a;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin: 16px 0 20px;
}
.footer-creds {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-cred {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-cred::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-col h4 {
  font-family: "Oswald", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.footer-links a::before {
  content: "›";
  color: var(--yellow);
  font-size: 1rem;
}
.footer-links a:hover {
  color: var(--yellow);
}
.fci-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fci {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.fci-icon {
  width: 32px;
  height: 32px;
  background: rgba(245, 197, 24, 0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fci-icon svg {
  width: 15px;
  height: 15px;
}
.fci-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}
.fci-text a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.fci-text a:hover {
  color: var(--yellow);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.28);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
}
.footer-legal a:hover {
  color: var(--yellow);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .topbar-left {
    display: none;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cta-full .container {
    flex-direction: column;
  }
  .cta-actions {
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .trust-strip .container {
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
