@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Montserrat:wght@800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --brand-blue: #0047ab;
  --brand-blue-dark: #003784;
  --brand-orange: #ff6600;
  --brand-orange-dark: #d95300;
  --bg-light: #f4f6f8;
  --text-dark: #1c2733;
  --text-muted: #526173;
  --card-shadow: 0 12px 30px rgba(0, 71, 171, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 102, 0, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(0, 71, 171, 0.11) 0%, transparent 34%),
    linear-gradient(180deg, #f9fbfd 0%, #f4f6f8 100%);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-title {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
}

a {
  text-decoration: none;
}

.section-title {
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 760px;
}

.site-navbar {
  background: linear-gradient(100deg, var(--brand-blue-dark), var(--brand-blue));
  box-shadow: 0 8px 22px rgba(0, 44, 112, 0.18);
}

.top-contact-bar {
  background-color: #07213f;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.top-contact-bar i {
  color: var(--brand-orange);
}

.top-contact-link {
  color: #ffffff;
  font-weight: 700;
}

.top-contact-link:hover {
  color: #ffd2b3;
}

.site-navbar .navbar-brand img {
  max-height: 64px;
  width: auto;
}

.site-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
}

.brand-frame {
  background: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.52);
  border-radius: 14px;
  padding: 0.35rem 0.75rem;
  box-shadow: 0 10px 24px rgba(7, 19, 34, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.brand-frame img {
  display: block;
  max-height: 64px;
  width: auto;
}

.brand-wordmark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.brand-wordmark-blue {
  color: #002d72;
}

.brand-wordmark-orange {
  color: #ff6600;
}

.footer-brand-frame {
  display: inline-flex;
  padding: 0.5rem 0.85rem;
}

.site-navbar .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  border-radius: 8px;
  padding: 0.5rem 0.85rem;
  transition: all 0.2s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.16);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.22);
}

.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(0, 71, 171, 0.97), rgba(0, 55, 132, 0.95)),
    url('https://images.unsplash.com/photo-1613654592592-9f8f487f6f6d?auto=format&fit=crop&w=1600&q=80') center / cover;
  padding: 6.5rem 0 5.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 660px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.93);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.btn-brand {
  background-color: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--brand-orange-dark);
  border-color: var(--brand-orange-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 102, 0, 0.28);
}

.btn-outline-light:hover {
  transform: translateY(-1px);
}

.section-space {
  padding: 5rem 0;
}

.product-card,
.feature-card,
.info-card,
.value-card {
  background-color: #fff;
  border: 1px solid rgba(0, 71, 171, 0.08);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover,
.feature-card:hover,
.info-card:hover,
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 71, 171, 0.12);
}

.product-img,
.placeholder-image {
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.12), rgba(255, 102, 0, 0.16));
  min-height: 190px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--brand-blue-dark);
  font-weight: 700;
}

.icon-bubble {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(0, 71, 171, 0.14), rgba(255, 102, 0, 0.2));
  color: var(--brand-blue);
  font-size: 1.6rem;
}

.cta-band {
  background: linear-gradient(110deg, var(--brand-blue-dark), var(--brand-blue));
  color: #fff;
  border-radius: 18px;
  padding: 2.6rem;
  box-shadow: 0 18px 35px rgba(0, 52, 125, 0.23);
}

.page-hero {
  background: linear-gradient(115deg, var(--brand-blue-dark), var(--brand-blue));
  color: #fff;
  padding: 4.3rem 0 3.3rem;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.site-footer {
  background: #0f1f33;
  color: rgba(255, 255, 255, 0.87);
  margin-top: 4rem;
}

.site-footer .footer-link {
  color: rgba(255, 255, 255, 0.87);
  transition: color 0.2s ease;
}

.site-footer .footer-link:hover {
  color: var(--brand-orange);
}

.site-footer img {
  max-height: 54px;
}

.contact-list i {
  color: var(--brand-orange);
}

.contact-list a {
  color: var(--brand-blue);
  font-weight: 700;
}

.contact-list a:hover {
  color: var(--brand-orange-dark);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(0, 71, 171, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(0, 71, 171, 0.15);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 991.98px) {
  .site-navbar .navbar-brand img {
    max-height: 54px;
  }

  .brand-frame {
    padding: 0.35rem 0.65rem;
    border-radius: 12px;
  }

  .brand-wordmark {
    font-size: 1.25rem;
  }

  .hero {
    padding: 5.4rem 0 4.6rem;
  }
}

@media (max-width: 575.98px) {
  .top-contact-bar {
    font-size: 0.88rem;
  }

  .hero p {
    font-size: 1.03rem;
  }

  .cta-band {
    padding: 2rem 1.4rem;
  }

  .section-space {
    padding: 4rem 0;
  }
}
