/* GLOBAL STYLES
-------------------------------------------------- */

body {
  color: #5a5a5a;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

.top-header {
  background-color: rgba(248, 248, 248, 1);
  border-width: 1px;
  line-height: 1.25rem;
}

.nav-link {
  text-transform: uppercase;
}

/* CALL TO ACTION BUTTONS */

.cta,
.cta-btn,
.snd-btn {
  background-color: rgb(15, 29, 77);
  border-radius: 4px;
  border: 1px solid rgb(15, 29, 77);
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.cta-btn:hover,
.snd-btn:hover {
  background-color: rgb(64, 64, 64);
  border-color: rgb(64, 64, 64);
  color: #ffffff;
}

.cta-btn:active {
  position: relative;
  top: 1px;
}

.cta-text {
  font-size: 1.2rem;
}

/* GLOBAL LINK STYLES */

a,
p a,
a:visited {
  text-decoration: none;
  cursor: pointer;
  color: #818181;
}

a:hover,
a:active {
  color: #0f1d4d;
}

a.btn {
  color: #ffffff;
}

.contact-us-link {
  font-size: 1.5rem;
}

/* CARD IMAGE */

.card-img-top {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

/* MARKETING SECTIONS */

.marketing {
  margin: 3rem 0;
}

footer {
  font-size: 0.8rem;
}

/* CAROUSEL SPACING FOR LARGE SCREENS */

@media (min-width: 992px) {
  #mainCarousel {
    margin-top: -58.59px;
  }
}

/* HEADINGS */

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.618rem;
  line-height: 2.5rem;
  font-weight: 500;
}

h2 {
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.618rem;
  line-height: 1.5rem;
  font-weight: 400;
}

h4 {
  font-size: 1.2rem;
  line-height: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}

h6 {
  font-size: 0.5rem;
  line-height: 1.5;
  font-weight: 400;
}

/* ICON COLOR */

div > i {
  color: #0f1d4d;
}

/* LAYOUT UTILITIES */

.full-page {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  text-align: center;
  max-width: 350px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.card img {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* HERO SECTION (shared by vaulters & vaulting) */

.hero-section {
  background: #f8f9fa;
  padding: 3rem 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.hero-section h1 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-section p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* TEXT CONTENT */

.contact-subtext-left {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* FORM CONTAINER */

.right-section .container {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 2rem !important;
  height: 100%;
}

/* FORM FIELDS LAYOUT */

@media (min-width: 768px) {
  #quoteForm .col-sm-6 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  /* Group city, state, zip side-by-side if used */
  #quoteForm .form-row {
    display: flex;
    gap: 1rem;
  }

  #quoteForm .form-row .form-group {
    flex: 1;
  }
}

/* BUTTON HOVER */

.btn-primary:hover {
  background-color: #004085;
  border-color: #003766;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* BULLET LISTS WITH CHECKMARKS */

ul.benefits-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

ul.benefits-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: #212529;
}

ul.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: 700;
}
