/* ==================================================
   RESET
================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}


body {
  font-family: "Inter", sans-serif;
  color: #172033;
  background: #ffffff;
  overflow-x: hidden;

  /* Fixed topbar + header space */
  padding-top: 112px;
}


body.menu-open {
  overflow: hidden;
}


.container {
  width: 90%;
  max-width: 1180px;
  margin: auto;
}


/* ==================================================
   COLORS

   Navy Blue : #03315b
   Logo Blue : #064387
   Green     : #20b878
   Light BG  : #f5f9fc
================================================== */


/* ==================================================
   FIXED HEADER
================================================== */

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 2000;

  background: #ffffff;
}


/* ==================================================
   TOP BAR
================================================== */

.topbar {
  height: 38px;

  background: #03315b;

  display: flex;
  align-items: center;
}


.topbar-inner {
  height: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;
}


.top-contact {
  display: flex;
  align-items: center;
  gap: 8px;

  color: #ffffff;

  text-decoration: none;

  font-size: 13px;

  font-weight: 500;
}


.top-contact i {
  color: #20b878;
}


/* ==================================================
   MAIN HEADER
================================================== */

.main-header {
  height: 74px;

  background: #ffffff;

  border-bottom: 1px solid #e7edf3;

  box-shadow:
    0 3px 15px rgba(0, 0, 0, 0.06);
}


.navbar {
  height: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;
}


/* ==================================================
   LOGO
================================================== */

.logo {
  display: flex;

  flex-direction: column;

  justify-content: center;

  text-decoration: none;

  line-height: 1;

  min-width: 185px;
}


.logo img {
  max-width: 190px;
  max-height: 52px;
  object-fit: contain;
}


.logo-main {
  color: #064387;

  font-size: 25px;

  font-weight: 800;

  letter-spacing: 1px;
}


.logo-sub {
  color: #20b878;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1.8px;

  margin-top: 5px;
}


/* ==================================================
   NAVIGATION
================================================== */

.nav-links {
  display: flex;

  align-items: center;

  gap: 25px;
}


.nav-links > a,
.dropdown-title {
  color: #172033;

  font-size: 14px;

  font-weight: 600;

  text-decoration: none;

  background: none;

  border: none;

  font-family: inherit;

  cursor: pointer;

  transition: color 0.3s ease;
}


.nav-links > a:hover,
.dropdown-title:hover {
  color: #20b878;
}


/* ==================================================
   DROPDOWN
================================================== */

.nav-dropdown {
  position: relative;
}


.dropdown-title {
  display: flex;

  align-items: center;

  gap: 6px;
}


.dropdown-title i {
  font-size: 11px;

  transition: transform 0.3s ease;
}


.dropdown-menu {
  position: absolute;

  top: calc(100% + 22px);

  left: 0;

  min-width: 240px;

  padding: 8px;

  background: #ffffff;

  border: 1px solid #e6edf2;

  border-radius: 10px;

  box-shadow:
    0 12px 35px rgba(3, 49, 91, 0.14);

  opacity: 0;

  visibility: hidden;

  transform: translateY(8px);

  transition: 0.25s ease;
}


.dropdown-menu::before {
  content: "";

  position: absolute;

  top: -24px;

  left: 0;

  width: 100%;

  height: 24px;
}


.dropdown-menu a {
  display: block;

  padding: 11px 12px;

  color: #172033;

  font-size: 13px;

  font-weight: 500;

  text-decoration: none;

  border-radius: 6px;

  transition: 0.25s ease;
}


.dropdown-menu a:hover {
  background: #edf9f5;

  color: #20b878;

  padding-left: 16px;
}


@media (min-width: 769px) {

  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
  }


  .nav-dropdown:hover .dropdown-title i {
    transform: rotate(180deg);
  }

}


/* ==================================================
   HEADER ACTIONS
================================================== */

.header-actions {
  display: flex;

  align-items: center;

  gap: 12px;
}


.quote-btn {
  background: #20b878;

  color: #ffffff;

  border: none;

  padding: 11px 18px;

  border-radius: 8px;

  font-family: inherit;

  font-size: 13px;

  font-weight: 700;

  white-space: nowrap;

  cursor: pointer;

  transition: 0.3s ease;
}


.quote-btn:hover {
  background: #15945f;

  transform: translateY(-1px);
}


.menu-btn {
  display: none;

  background: transparent;

  border: none;

  color: #064387;

  font-size: 24px;

  cursor: pointer;
}


/* ==================================================
   MENU OVERLAY
================================================== */

.menu-overlay {
  position: fixed;

  inset: 0;

  background:
    rgba(0, 0, 0, 0.45);

  z-index: 1900;

  opacity: 0;

  visibility: hidden;

  transition: 0.3s ease;
}


.menu-overlay.active {
  opacity: 1;

  visibility: visible;
}


/* ==================================================
   HERO
================================================== */

.hero {
  min-height: 610px;

  display: flex;

  align-items: center;

  background:
    linear-gradient(
      120deg,
      #f5f9fc 0%,
      #ffffff 58%,
      #edf9f5 100%
    );

  padding: 70px 0;

  position: relative;

  overflow: hidden;
}


.hero::before {
  content: "";

  position: absolute;

  width: 400px;

  height: 400px;

  border-radius: 50%;

  background:
    rgba(32, 184, 120, 0.08);

  top: -170px;

  right: -100px;
}


.hero-container {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  align-items: center;

  gap: 70px;
}


.hero-content {
  position: relative;

  z-index: 2;
}


.hero-badge {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 8px 13px;

  background: #e7f8f1;

  color: #14865a;

  border-radius: 50px;

  font-size: 13px;

  font-weight: 700;

  margin-bottom: 22px;
}


.hero-content h1 {
  font-size: clamp(42px, 5vw, 66px);

  line-height: 1.08;

  color: #03315b;

  letter-spacing: -2px;

  margin-bottom: 22px;
}


.hero-content h1 span {
  color: #20b878;

  display: block;
}


.hero-content > p {
  max-width: 600px;

  font-size: 18px;

  line-height: 1.7;

  color: #5d6977;

  margin-bottom: 30px;
}


.hero-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-bottom: 30px;
}


.primary-btn,
.secondary-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  padding: 14px 21px;

  border-radius: 8px;

  font-family: inherit;

  font-size: 14px;

  font-weight: 700;

  cursor: pointer;

  text-decoration: none;

  transition: 0.3s ease;
}


.primary-btn {
  background: #20b878;

  color: #ffffff;

  border: 2px solid #20b878;
}


.primary-btn:hover {
  background: #15945f;

  border-color: #15945f;
}


.secondary-btn {
  background: #ffffff;

  color: #03315b;

  border: 2px solid #dce5ec;
}


.secondary-btn:hover {
  border-color: #20b878;

  color: #20b878;
}


.hero-trust {
  display: flex;

  flex-wrap: wrap;

  gap: 18px;
}


.hero-trust div {
  display: flex;

  align-items: center;

  gap: 6px;

  font-size: 12px;

  color: #52606d;
}


.hero-trust i {
  color: #20b878;
}


/* HERO VISUAL */

.hero-visual {
  display: flex;

  align-items: center;

  justify-content: center;
}


.shield-card {
  width: 100%;

  max-width: 420px;

  background: #ffffff;

  padding: 42px;

  border-radius: 28px;

  text-align: center;

  box-shadow:
    0 25px 70px rgba(3, 49, 91, 0.14);

  position: relative;
}


.shield-icon {
  width: 90px;

  height: 90px;

  margin: 0 auto 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 25px;

  background:
    linear-gradient(
      135deg,
      #20b878,
      #14865a
    );

  color: #ffffff;

  font-size: 42px;

  transform: rotate(4deg);
}


.shield-card h2 {
  color: #03315b;

  font-size: 25px;

  margin-bottom: 10px;
}


.shield-card > p {
  color: #65717d;

  font-size: 14px;

  line-height: 1.6;

  margin-bottom: 28px;
}


.mini-features {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 12px;
}


.mini-features div {
  padding: 15px 10px;

  background: #f5f9fc;

  border-radius: 10px;

  display: flex;

  align-items: center;

  gap: 9px;

  color: #03315b;

  font-size: 13px;

  font-weight: 600;
}


.mini-features i {
  color: #20b878;

  font-size: 18px;
}


/* ==================================================
   COMMON SECTION
================================================== */

.services-section,
.why-section {
  padding: 85px 0;
}


.section-heading {
  text-align: center;

  max-width: 700px;

  margin: 0 auto 50px;
}


.section-heading > span,
.small-title {
  display: inline-block;

  color: #20b878;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 1.8px;

  margin-bottom: 10px;
}


.section-heading h2 {
  color: #03315b;

  font-size: clamp(30px, 4vw, 42px);

  line-height: 1.2;

  margin-bottom: 14px;
}


.section-heading p {
  color: #687581;

  line-height: 1.7;
}


/* ==================================================
   SERVICE CARDS
================================================== */

.services-section {
  background: #ffffff;
}


.service-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;
}


.service-card {
  background: #ffffff;

  border: 1px solid #e4ebf0;

  padding: 30px 24px;

  border-radius: 16px;

  transition: 0.3s ease;
}


.service-card:hover {
  transform: translateY(-7px);

  border-color: #bdebd8;

  box-shadow:
    0 18px 40px rgba(3, 49, 91, 0.1);
}


.service-icon {
  width: 58px;

  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #e8f8f2;

  color: #20b878;

  border-radius: 14px;

  font-size: 25px;

  margin-bottom: 22px;
}


.service-card h3 {
  color: #03315b;

  font-size: 19px;

  margin-bottom: 12px;
}


.service-card p {
  color: #697681;

  font-size: 14px;

  line-height: 1.7;

  margin-bottom: 20px;
}


.service-card a {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: #20b878;

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;
}


/* ==================================================
   ABOUT
================================================== */

.about-section {
  padding: 90px 0;

  background: #f5f9fc;
}


.about-container {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  align-items: center;

  gap: 80px;
}


.about-visual {
  min-height: 400px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;
}


.about-shield {
  width: 280px;

  height: 280px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #03315b,
      #064387
    );

  color: #ffffff;

  font-size: 110px;

  box-shadow:
    0 25px 60px rgba(3, 49, 91, 0.22);
}


.experience-card {
  position: absolute;

  bottom: 20px;

  right: 20px;

  background: #ffffff;

  padding: 18px 22px;

  border-radius: 12px;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.12);
}


.experience-card strong {
  display: block;

  color: #20b878;

  font-size: 22px;
}


.experience-card span {
  color: #03315b;

  font-size: 12px;

  font-weight: 600;
}


.about-content h2 {
  color: #03315b;

  font-size: clamp(30px, 4vw, 43px);

  line-height: 1.2;

  margin-bottom: 20px;
}


.about-content h2 span {
  color: #20b878;
}


.about-content p {
  color: #65717d;

  line-height: 1.8;

  margin-bottom: 14px;
}


.about-points {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 15px;

  margin-top: 25px;
}


.about-points div {
  display: flex;

  align-items: center;

  gap: 9px;

  color: #03315b;

  font-size: 14px;

  font-weight: 600;
}


.about-points i {
  width: 25px;

  height: 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #e5f8f0;

  color: #20b878;

  border-radius: 50%;

  font-size: 11px;
}


/* ==================================================
   WHY US
================================================== */

.why-section {
  background: #ffffff;
}


.why-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;
}


.why-card {
  text-align: center;

  padding: 30px 20px;

  background: #f8fafc;

  border-radius: 15px;
}


.why-card > i {
  font-size: 35px;

  color: #20b878;

  margin-bottom: 18px;
}


.why-card h3 {
  color: #03315b;

  margin-bottom: 10px;

  font-size: 17px;
}


.why-card p {
  color: #697681;

  font-size: 13px;

  line-height: 1.7;
}


/* ==================================================
   CTA
================================================== */

.cta-section {
  padding: 60px 0;

  background:
    linear-gradient(
      120deg,
      #03315b,
      #064387
    );

  color: #ffffff;
}


.cta-container {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;
}


.cta-container span {
  color: #68e0ae;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.cta-container h2 {
  font-size: clamp(27px, 4vw, 38px);

  margin: 8px 0 10px;
}


.cta-container p {
  color: #d5e3ee;
}


.cta-actions {
  display: flex;

  gap: 12px;

  flex-shrink: 0;
}


.cta-call,
.cta-whatsapp {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 13px 18px;

  border-radius: 8px;

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;
}


.cta-call {
  background: #ffffff;

  color: #03315b;
}


.cta-whatsapp {
  background: #20b878;

  color: #ffffff;
}


/* ==================================================
   FOOTER
================================================== */

.footer {
  background: #021f3a;

  color: #ffffff;
}


.footer-grid {
  display: grid;

  grid-template-columns:
    1.5fr 1fr 1fr 1.2fr;

  gap: 50px;

  padding-top: 60px;

  padding-bottom: 50px;
}


.footer-logo {
  display: flex;

  flex-direction: column;

  margin-bottom: 18px;
}

.footer-logo img {
    width: 190px;
    height: auto;
    display: block;
    object-fit: contain;
}


.footer-brand p {
  color: #b7c6d3;

  font-size: 13px;

  line-height: 1.8;

  max-width: 320px;
}


.social-links {
  display: flex;

  gap: 10px;

  margin-top: 20px;
}


.social-links a {
  width: 36px;

  height: 36px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.1);

  color: #ffffff;

  text-decoration: none;

  transition: 0.3s;
}


.social-links a:hover {
  background: #20b878;
}


.footer-column {
  display: flex;

  flex-direction: column;

  gap: 11px;
}


.footer-column h3 {
  font-size: 15px;

  margin-bottom: 8px;
}


.footer-column a {
  color: #b7c6d3;

  font-size: 13px;

  text-decoration: none;
}


.footer-column a:hover {
  color: #4ed39b;
}


.contact-column p {
  display: flex;

  gap: 8px;

  color: #b7c6d3;

  font-size: 13px;

  line-height: 1.6;
}


.contact-column i {
  color: #4ed39b;

  margin-top: 3px;
}


.footer-bottom {
  border-top:
    1px solid rgba(255, 255, 255, 0.1);

  padding: 18px 0;

  color: #93a7b8;

  font-size: 12px;

  text-align: center;
}


/* ==================================================
   QUOTE POPUP
================================================== */

.quote-popup {
  position: fixed;

  inset: 0;

  background:
    rgba(0, 20, 40, 0.72);

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 20px;

  z-index: 5000;

  opacity: 0;

  visibility: hidden;

  transition: 0.3s ease;
}


.quote-popup.show {
  opacity: 1;

  visibility: visible;
}


.quote-box {
  width: 100%;

  max-width: 430px;

  max-height: 90vh;

  overflow-y: auto;

  background: #ffffff;

  padding: 32px;

  border-radius: 18px;

  text-align: center;

  position: relative;

  transform: translateY(20px);

  transition: 0.3s ease;
}


.quote-popup.show .quote-box {
  transform: translateY(0);
}


.close-popup {
  position: absolute;

  top: 15px;

  right: 15px;

  width: 34px;

  height: 34px;

  border: none;

  border-radius: 50%;

  background: #f0f4f7;

  color: #03315b;

  cursor: pointer;
}


.popup-icon {
  width: 58px;

  height: 58px;

  margin: 0 auto 15px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 15px;

  background: #e5f8f0;

  color: #20b878;

  font-size: 26px;
}


.quote-box h2 {
  color: #03315b;

  margin-bottom: 7px;
}


.quote-box > p {
  color: #6a7783;

  font-size: 13px;

  margin-bottom: 22px;
}


.quote-box form {
  display: flex;

  flex-direction: column;

  gap: 12px;
}


.quote-box input,
.quote-box select,
.quote-box textarea {
  width: 100%;

  padding: 13px 14px;

  border: 1px solid #dce5ec;

  border-radius: 8px;

  font-family: inherit;

  font-size: 13px;

  outline: none;
}


.quote-box input:focus,
.quote-box select:focus,
.quote-box textarea:focus {
  border-color: #20b878;
}


.submit-btn {
  padding: 14px;

  background: #20b878;

  color: #ffffff;

  border: none;

  border-radius: 8px;

  font-family: inherit;

  font-weight: 700;

  cursor: pointer;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

  .nav-links {
    gap: 15px;
  }


  .nav-links > a,
  .dropdown-title {
    font-size: 12px;
  }


  .service-grid,
  .why-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .footer-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {


  body {
    padding-top: 104px;
  }


  /* TOP BAR */

  .topbar {
    height: 36px;
  }


  .top-contact {
    font-size: 10px;

    gap: 5px;
  }


  .top-contact i {
    font-size: 12px;
  }


  /* HEADER */

  .main-header {
    height: 68px;
  }


  .navbar {
    width: 94%;

    gap: 8px;
  }


  .logo {
    min-width: auto;
  }


  .logo-main {
    font-size: 20px;
  }


  .logo-sub {
    font-size: 6px;

    letter-spacing: 1.1px;
  }


  .quote-btn {
    padding: 9px 10px;

    font-size: 11px;
  }


  .menu-btn {
    display: block;
  }


  /* MOBILE NAV */

  .nav-links {
    position: fixed;

    top: 104px;

    left: -100%;

    width: min(82%, 310px);

    height: calc(100vh - 104px);

    background: #03315b;

    padding: 25px 22px;

    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 6px;

    overflow-y: auto;

    transition: left 0.35s ease;

    z-index: 2200;
  }


  .nav-links.show {
    left: 0;
  }


  .nav-links > a,
  .dropdown-title {
    width: 100%;

    color: #ffffff;

    font-size: 15px;

    padding: 13px 0;

    text-align: left;
  }


  .dropdown-title {
    justify-content: space-between;
  }


  /* MOBILE DROPDOWN */

  .dropdown-menu {
    position: static;

    min-width: 100%;

    max-height: 0;

    padding: 0;

    background: rgba(255, 255, 255, 0.07);

    border: none;

    border-radius: 7px;

    box-shadow: none;

    opacity: 1;

    visibility: visible;

    transform: none;

    overflow: hidden;

    transition: max-height 0.35s ease;
  }


  .nav-dropdown.active .dropdown-menu {
    max-height: 300px;

    padding: 5px 0;
  }


  .dropdown-menu a {
    color: #ffffff;

    padding: 11px 14px;

    font-size: 13px;
  }


  .dropdown-menu a:hover {
    color: #4ed39b;

    background:
      rgba(255, 255, 255, 0.05);

    padding-left: 17px;
  }


  .nav-dropdown.active
  .dropdown-title i {
    transform: rotate(180deg);
  }


  /* HERO */

  .hero {
    min-height: auto;

    padding: 55px 0 65px;
  }


  .hero-container {
    grid-template-columns: 1fr;

    gap: 45px;

    text-align: center;
  }


  .hero-content h1 {
    font-size: 42px;

    letter-spacing: -1.2px;
  }


  .hero-content > p {
    font-size: 16px;
  }


  .hero-buttons,
  .hero-trust {
    justify-content: center;
  }


  .shield-card {
    max-width: 390px;

    padding: 32px 22px;
  }


  /* SERVICES */

  .services-section,
  .why-section,
  .about-section {
    padding: 65px 0;
  }


  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }


  /* ABOUT */

  .about-container {
    grid-template-columns: 1fr;

    gap: 40px;
  }


  .about-visual {
    min-height: 320px;
  }


  .about-shield {
    width: 230px;

    height: 230px;

    font-size: 85px;
  }


  .experience-card {
    right: 5px;
  }


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


  /* CTA */

  .cta-container {
    flex-direction: column;

    text-align: center;
  }


  .cta-actions {
    justify-content: center;
  }


  /* FOOTER */

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }


}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 430px) {

  .top-contact span {
    font-size: 9px;
  }


  .logo-main {
    font-size: 18px;
  }


  .logo-sub {
    letter-spacing: 0.8px;
  }


  .quote-btn {
    padding: 8px;

    font-size: 10px;
  }


  .hero-content h1 {
    font-size: 36px;
  }


  .hero-buttons {
    flex-direction: column;
  }


  .primary-btn,
  .secondary-btn {
    width: 100%;
  }


  .hero-trust {
    flex-direction: column;

    align-items: center;
  }


  .mini-features {
    grid-template-columns: 1fr;
  }


  .cta-actions {
    flex-direction: column;

    width: 100%;
  }


  .cta-call,
  .cta-whatsapp {
    justify-content: center;
  }

}
