/* GLOBAL */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: white;
}


/* HEADER */

.top-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1e293b;
  padding: 20px 40px;
  flex-wrap: wrap;
}


/* BRAND */

.brand h1 {
  display: flex;
  align-items: center;
  gap: 12px;

  margin: 0;
  font-size: 32px;
}

.brand-icon {
  width: 34px;
  height: 34px;
}

.slogan {
  margin-top: 5px;
  color: #cbd5e1;
  font-size: 14px;
}


/* NAVIGATION */

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #38bdf8;
}


/* CONTACT SECTION */

.contact-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;

  margin: 5px 0;
  font-size: 13px;
  color: #cbd5e1;
}

.contact-icon {
  width: 24px;
  height: 24px;
}


/* BUTTON */

.quote-button,
.hero-button {
  background: #38bdf8;
  color: black;

  padding: 12px 18px;

  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;

  transition: 0.2s;
}

.quote-button:hover,
.hero-button:hover {
  background: #0ea5e9;
}


/* HERO SECTION */

.hero-section {
  height: 500px;

  background-image:
    linear-gradient(rgba(15, 23, 42, 0.75),
    rgba(15, 23, 42, 0.75)),
    url("assets/hero.jpg");

  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.hero-overlay {
  max-width: 700px;
  padding: 20px;
}

.hero-overlay h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-overlay p {
  font-size: 20px;
  color: #cbd5e1;
  margin-bottom: 30px;
}


/* PAGE CONTENT */

.page-container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-title {
  font-size: 36px;
  margin-bottom: 20px;
}

.section {
  background: #1e293b;
  padding: 25px;
  border-radius: 12px;
}

.section p {
  line-height: 1.7;
  color: #cbd5e1;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

#formStatus {
  margin-top: 15px;
  font-weight: bold;
}