/* ========================================
   ROOT
======================================== */

:root {
  --navy: #03315B;
  --green: #20B878;
  --green-dark: #159766;
  --light-green: #EAF9F3;
  --light-blue: #F4F9FC;
  --text: #5F6B76;
  --border: #DDE7EC;
  --white: #FFFFFF;
}


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


html {
  scroll-behavior: smooth;
}


body {
  font-family: Arial, sans-serif;
  color: var(--navy);
  background: #FFFFFF;
  line-height: 1.6;
}


a {
  text-decoration: none;
}



/* ========================================
   TOPBAR
======================================== */

.topbar {
  min-height: 60px;
  padding: 0 5%;

  background: var(--navy);

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


.topbar-item {
  display: flex;
  align-items: center;
  gap: 9px;

  color: white;
  font-size: 14px;
}


.topbar-item i {
  color: var(--green);
  font-size: 17px;
}



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

.main-header {
  background: white;
  border-bottom: 1px solid #edf1f3;
  position: sticky;
  top: 0;
  z-index: 1000;
}


.navbar {
  max-width: 1200px;
  min-height: 92px;
  margin: auto;
  padding: 0 24px;

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


.logo {
  display: flex;
  align-items: center;
}


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


.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}


.nav-links a {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  position: relative;
}


.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}


.nav-links a.active::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: -8px;

  width: 100%;
  height: 3px;

  background: var(--green);
  border-radius: 5px;
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}


.quote-btn {
  padding: 13px 20px;

  background: var(--green);
  color: white;

  border-radius: 12px;
  font-weight: 700;

  transition: 0.25s;
}


.quote-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}


.menu-btn {
  display: none;

  border: 0;
  background: transparent;

  color: var(--navy);
  font-size: 30px;

  cursor: pointer;
}



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

.contact-hero {
  text-align: center;

  padding: 80px 20px 120px;

  background:
    radial-gradient(circle at 80% 20%,
    rgba(32,184,120,0.12),
    transparent 30%),

    linear-gradient(
    135deg,
    #F5FAFD,
    #FFFFFF
    );
}


.hero-badge,
.small-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: var(--light-green);
  color: #198D61;

  padding: 9px 18px;

  border-radius: 30px;

  font-weight: 700;
}


.contact-hero h1 {
  max-width: 760px;
  margin: 24px auto 18px;

  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.12;

  color: var(--navy);
}


.contact-hero h1 span {
  display: block;
  color: var(--green);
}


.contact-hero p {
  max-width: 680px;
  margin: auto;

  color: var(--text);

  font-size: 18px;
}



/* ========================================
   QUICK CONTACT
======================================== */

.quick-contact {
  margin-top: -65px;
  position: relative;
  z-index: 5;
}


.section-container {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


.contact-card {
  background: white;

  padding: 28px;

  border: 1px solid #E4ECEF;
  border-radius: 22px;

  display: flex;
  gap: 18px;

  box-shadow: 0 15px 40px rgba(3,49,91,0.08);

  transition: 0.3s;
}


.contact-card:hover {
  transform: translateY(-5px);
}


.contact-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;

  border-radius: 16px;

  background: var(--light-green);
  color: var(--green);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 23px;
}


.contact-content h3 {
  color: var(--navy);
  margin-bottom: 5px;
}


.contact-content p {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 8px;
}


.contact-content a {
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
}



/* ========================================
   CONTACT SECTION
======================================== */

.contact-section {
  padding: 100px 20px;
}


.contact-wrapper {
  max-width: 1150px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;

  align-items: center;
}


.contact-info h2 {
  margin: 20px 0 18px;

  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.15;
}


.contact-info h2 span {
  color: var(--green);
}


.info-description {
  color: var(--text);
  font-size: 17px;
  margin-bottom: 30px;
}


.support-points {
  display: grid;
  gap: 16px;
}


.support-item {
  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--text);
  font-weight: 600;
}


.support-item span {
  width: 25px;
  height: 25px;

  background: var(--green);
  color: white;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
}


.expert-box {
  margin-top: 35px;
  padding: 20px;

  background: var(--light-blue);

  border-radius: 18px;

  display: flex;
  align-items: center;
  gap: 15px;
}


.expert-icon {
  width: 50px;
  height: 50px;

  border-radius: 14px;

  background: var(--navy);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 21px;
}


.expert-box span {
  display: block;
  color: var(--text);
  font-size: 13px;
}


.expert-box a {
  color: var(--navy);
  font-weight: 800;
}



/* ========================================
   FORM
======================================== */

.form-card {
  padding: 38px;

  background: white;

  border: 1px solid #E2EAEE;
  border-radius: 26px;

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


.form-heading {
  margin-bottom: 28px;
}


.form-heading h2 {
  font-size: 30px;
  color: var(--navy);
}


.form-heading p {
  color: var(--text);
}


.form-group {
  margin-bottom: 20px;
}


.form-group label {
  display: block;

  color: var(--navy);
  font-weight: 700;

  margin-bottom: 7px;
}


.input-box {
  height: 56px;

  border: 1px solid var(--border);
  border-radius: 13px;

  display: flex;
  align-items: center;

  padding: 0 15px;

  transition: 0.2s;
}


.input-box:focus-within {
  border-color: var(--green);

  box-shadow:
    0 0 0 3px rgba(32,184,120,0.12);
}


.input-box i {
  color: var(--green);
  margin-right: 12px;
}


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

  border: 0;
  outline: 0;

  background: transparent;

  color: var(--text);
  font-size: 15px;
}


textarea {
  width: 100%;
  min-height: 120px;

  padding: 15px;

  border: 1px solid var(--border);
  border-radius: 13px;

  resize: vertical;

  outline: none;

  font-family: inherit;
  font-size: 15px;
}


textarea:focus {
  border-color: var(--green);

  box-shadow:
    0 0 0 3px rgba(32,184,120,0.12);
}


.submit-btn {
  width: 100%;
  height: 58px;

  border: 0;
  border-radius: 13px;

  background: var(--green);
  color: white;

  font-size: 17px;
  font-weight: 800;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  transition: 0.25s;
}


.submit-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}


.privacy-text {
  text-align: center;

  margin-top: 14px;

  color: #7A858E;
  font-size: 12px;
}


.privacy-text i {
  color: var(--green);
}



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

.contact-cta {
  padding: 30px 20px 80px;
}


.cta-content {
  max-width: 1100px;
  margin: auto;

  padding: 40px 50px;

  background: var(--navy);
  border-radius: 25px;

  color: white;

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


.cta-content h2 {
  font-size: 30px;
}


.cta-content p {
  opacity: 0.8;
}


.cta-call {
  background: var(--green);
  color: white;

  padding: 15px 25px;

  border-radius: 12px;

  font-weight: 800;

  display: flex;
  align-items: center;
  gap: 10px;
}



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

.footer {
  background: #021F39;
  color: white;

  padding-top: 60px;
}


.footer-container {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px 50px;

  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
}


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


.footer-brand p {
  max-width: 360px;

  margin: 20px 0;

  color: #B9C6D0;
}


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


.social-links a {
  width: 40px;
  height: 40px;

  border-radius: 50%;

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

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


.social-links a:hover {
  background: var(--green);
}


.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.footer h3 {
  margin-bottom: 8px;
}


.footer-links a {
  color: #B9C6D0;
}


.footer-links a:hover {
  color: var(--green);
}


.footer-contact p {
  color: #B9C6D0;
}


.footer-contact i {
  color: var(--green);
  margin-right: 8px;
}


.footer-bottom {
  text-align: center;

  padding: 20px;

  border-top:
    1px solid rgba(255,255,255,0.1);

  color: #9DAFBD;

  font-size: 13px;
}



/* ========================================
   WHATSAPP FLOAT
======================================== */

.floating-whatsapp {
  position: fixed;

  right: 22px;
  bottom: 22px;

  width: 58px;
  height: 58px;

  background: #25D366;
  color: white;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;

  box-shadow:
    0 8px 25px rgba(0,0,0,0.20);

  z-index: 999;
}



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

@media (max-width: 900px) {

  .nav-links {
    position: absolute;

    top: 92px;
    left: 0;
    right: 0;

    background: white;

    padding: 25px;

    display: none;
    flex-direction: column;

    box-shadow:
      0 15px 30px rgba(0,0,0,0.08);
  }


  .nav-links.show {
    display: flex;
  }


  .menu-btn {
    display: block;
  }


  .section-container {
    grid-template-columns: 1fr;
  }


  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }


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

}



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

@media (max-width: 600px) {

  .topbar {
    min-height: 60px;
    padding: 0 5%;
  }


  .topbar-item {
    font-size: 12px;
  }


  .navbar {
    min-height: 112px;
    padding: 0 20px;
  }


  .logo img {
    width: 230px;
    max-width: 48vw;
  }


  .quote-btn {
    padding: 12px 14px;
    font-size: 13px;
  }


  .header-actions {
    gap: 12px;
  }


  .menu-btn {
    font-size: 30px;
  }


  .nav-links {
    top: 112px;
  }


  .contact-hero {
    padding:
      65px 22px
      105px;
  }


  .contact-hero h1 {
    font-size: 40px;
  }


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


  .contact-card {
    padding: 22px;
  }


  .contact-section {
    padding:
      75px 20px;
  }


  .form-card {
    padding: 25px 20px;
  }


  .form-heading h2 {
    font-size: 27px;
  }


  .cta-content {
    padding: 30px 24px;

    flex-direction: column;
    align-items: flex-start;

    gap: 20px;
  }


  .cta-call {
    width: 100%;
    justify-content: center;
  }


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


  .footer-logo img {
    width: 190px;
  }

    }
