/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: #333;
  scroll-behavior: smooth;
}

/* NAVIGATION */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
  width: 150px;
  max-height: 90px;
}

.contact-button {
  background-color: gold;
  color: #000;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.2s ease;
}

.contact-button:hover {
  background-color: #e0b400;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #111;
}

/* MOBILE NAV */












/* HERO SECTION */
.hero {
  background: linear-gradient(to right, #4facfe, #00f2fe);
  color: white;
  padding: 80px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-button {
  background-color: #ffd700;
  color: #000;
  padding: 12px 24px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
}

.hero-image img {
  width: 420px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.service-link {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: white;
}

.service-link a {
  color: white;
  text-decoration: none;
}

.service-link a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
  }

  .hero-image {
    display: none;
  }

  .hero-container {
    text-align: center;
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 16px;
  }
}

/* SERVICES */
.insurance-cards {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.section-title1 {
  font-size: 36px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #000000;
}

.section-title {
  font-size: 36px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #ffffff;
}

.section-description {
  font-size: 18px;
  color: #555;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 40px;
}

.card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 300px;
  flex: 1 1 280px;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.card-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1A1446;
}

.card-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.card-button {
  background-color: #ffd700;
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.card-button:hover {
  background-color: #e6c200;
}

/* ABOUT US */
.our-mission {
  padding: 80px 20px;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  color: #fff;
}

.mission-flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.mission-content {
  max-width: 600px;
  text-align: center;
}

.mission-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #f9f9f9;
}

.about-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 24px;
  background-color: #ffd600;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-cta:hover {
  background-color: #e0b400;
}

.about-img img {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.about-img img:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .mission-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .mission-content {
    text-align: left;
    padding-right: 40px;
  }
}

/* FOOTER */
.site-footer {
  background-color: #ffffff;
  color: #000000;
  padding: 60px 20px 30px;
  font-size: 15px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 40px;
  gap: 2rem;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #ffd700;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #000;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-column p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 20px;
  text-align: center;
}

.footer-links a {
  margin: 0 10px;
  font-size: 14px;
  color: #aaa;
  text-decoration: none;
}

.footer-links a:hover {
  color: #000;
}
