* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

/* Header Wrapper */
.glass-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}

/* Navigation Container */
.nav-container {
  padding: 10px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, #1d3333 0%, #2e4f4f 100%);
  backdrop-filter: blur(10px);
}

/* Logo */
.logo img {
  height: 42px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a.active {
  font-weight: 600;
  position: relative;
}

.nav-links a.active::before {
  content: "•";
  position: absolute;
  left: -12px;
  color: white;
}

/* Contact Button */
.contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.08);
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.contact-btn:hover {
  background: rgba(255,255,255,0.15);
}

.mobile-nav {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .nav-container {
    padding: 10px 20px;
  }

  /* Show hamburger */
  .menu-toggle {
    display: flex;
  }

  /* Hide menu */
  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #1d3333 0%, #2e4f4f 100%);
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  /* Open */
  .mobile-nav.active {
    max-height: 500px;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }

  /* Remove dot */
  .nav-links a.active::before {
    display: none;
  }
}

/* Hero section */

.hero-section {
  padding: 100px 60px 0px 60px;
  background: radial-gradient(circle at 20% 10%, #2c4b4a, #0f1e1d 70%);
  color: #fff;
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  top: 0;
}

/* Grid overlay background */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04)),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04));
  background-size: 60px 60px;
  z-index: 0;
}

.hero-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  max-width: 52%;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-text h1 span {
  font-size: 48px;
  color: #3fa38c;
}

.hero-text p {
  font-size: 18px;
  color: #cfd4d4;
  margin-bottom: 30px;
}

/* CTA Button */
.cta-btn {
  background: linear-gradient(135deg, #2ecc71, #1abc9c);;
  padding: 15px 35px;
  border-radius: 35px;
  border: none;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 17px;
}

.cta-btn .arrow {
  background: #fff;
  color: #000;
  padding: 5px 10px;
  margin-left: 10px;
  border-radius: 50%;
  font-weight: 800;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.hero-stats h3 {
  font-size: 28px;
  margin-bottom: 5px;
}

.hero-stats span {
  font-size: 14px;
  color: #b8dbe4;
}


/* Badge */
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Right side hero image */
.hero-img img {
  width: 720px;
 -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  filter: drop-shadow(0 18px 0px rgba(0, 0, 0, 0.15));
}

/* Responsive */
@media(max-width: 920px) {
  .hero-wrap {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-img img {
    margin-top: 40px;
    width: 320px;
  }
}

/* About section */

.about-section {
  padding: 100px 20px;
  background: #ffffff;
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image */
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

/* Content */
.about-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.about-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-title sup {
  font-size: 18px;
  vertical-align: super;
}

.about-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

/* Button */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2ecc71, #1abc9c);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Cards */
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #f7f8fa;
  border-radius: 16px;
  align-items: center;
}

.info-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #3fa38c;
}

.info-card h4 {
  font-size: 20px;
  margin-bottom: 4px;
}

.info-card p {
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-title {
    font-size: 36px;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }
}

/* Services Section */

.services-section {
  padding: 100px 20px;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.services-header {
  margin-bottom: 50px;
}

.services-header h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}

.services-header h2 span {
  color: #3fa38c;
}

.services-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.insurance-section {
  background: #f7f8fa;
  padding: 80px 20px;
}

.insurance-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Card */
.insurance-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: calc(25% - 22.5px);
  transition: transform 0.3s ease;
  display: block;
  text-decoration: none;
}

.insurance-card:hover {
  transform: translateY(-6px);
}

/* Image */
.card-image {
  position: relative;
  height: 200px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Icon */
.card-icon {
  position: absolute;
  bottom: -25px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  font-size: 22px;
  color: #3fa38c;
}

.card-icon:hover {
  background: #3fa38c;
  color: #fff;
}

/* Content */
.card-content {
  padding: 40px 25px 30px;
}

.card-content .line {
  display: inline-block;
  width: 35px;
  height: 3px;
  background: #3fa38c;
  margin-bottom: 15px;
  border-radius: 2px;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0b1f33;
}

.card-content h3:hover {
  color: #3fa38c;
}

.card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #6c757d;
}

/* Responsive */
@media (max-width: 1024px) {
  .insurance-card {
    width: calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .insurance-card {
    width: 100%;
  }
}

/* FAQ Section */

.faq-section {
  padding: 80px 40px;
  background: #e7f8f0;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left Side */
.faq-left .faq-tag {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  color: #111;
}

.faq-left h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
}

.faq-left h2 span {
  color: #1aa37a;
}

.faq-left p {
  margin-top: 16px;
  color: #666;
  max-width: 400px;
}

/* Right Side */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 18px;
  color: #1aa37a;
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-left h2 {
    font-size: 36px;
  }
}


/* Contact Us section */
.contact-gradient {
  padding: 120px 20px;
  font-family: "Inter", sans-serif;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* Left */
.contact-left h2 {
  font-size: 44px;
  font-weight: 600;
  color: #111;
  margin-bottom: 18px;
}

.contact-left h2 span {
  color: #1aa37a;
}

.subtitle {
  font-size: 16px;
  color: #666;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.meta-item {
  display: flex;
  gap: 14px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.meta-item span {
  font-size: 18px;
}

/* Right Card */
.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
  transition: border 0.25s ease;
}

.contact-card textarea {
  min-height: 120px;
  resize: none;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: #7c3aed;
}

/* Gradient Button */
.contact-card button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, #2ecc71, #1abc9c);
  transition: opacity 0.3s ease;
}

.contact-card button:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-left h2 {
    font-size: 34px;
  }
}


/* footer section */
.site-footer {
  background: linear-gradient(180deg, #1d3333 0%, #2e4f4f 100%);
  padding: 80px 0 30px;
  font-family: "Inter", sans-serif;
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  opacity: 0.8;
}

/* Links */
.footer-links {
  display: flex;
  gap: 80px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 14px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #000;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #eee;
  margin-top: 60px;
  padding-top: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-links {
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}