/* ================================
   RESET
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #123f36;
  background: white;
}


/* ================================
   NAVBAR
================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 0 5%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #faf7f2;
  border-top: 5px solid #333;

  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.logo h2 {
  font-family: Georgia, serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: #075442;
}

.logo p {
  margin-top: 3px;
  font-size: 9px;
  letter-spacing: 2px;
  color: #9a8657;
}

nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav a {
  color: #294d45;
  text-decoration: none;
  font-weight: bold;
  font-size: 11px;
  white-space: nowrap;
}

nav a:hover {
  color: #d4a017;
}

nav .consult-btn {
  padding: 14px 25px;
  background: #075442;
  color: white;
  border-radius: 40px;
}

nav .consult-btn:hover {
  background: #063f33;
  color: white;
}

.phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: bold;
  white-space: nowrap;
}

.phone-icon {
  color: red;
}

.phone-number {
  color: #075442;
}


/* ================================
   HERO
================================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 90px;

  display: grid;
  grid-template-columns: 54% 46%;

  background: #075442;
  color: white;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 8%;
}

.hero-small {
  margin-bottom: 25px;

  color: #f5c15d;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 5px;
}

.hero-left h1 {
  margin-bottom: 35px;

  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 1.05;
  color: white;
}

.hero-description {
  max-width: 700px;
  margin-bottom: 20px;

  font-size: 18px;
  line-height: 1.8;
}

.hero-location {
  color: #f5c15d;
  font-size: 17px;
  font-weight: bold;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.service-btn,
.care-btn {
  display: inline-block;
  padding: 18px 30px;

  border-radius: 40px;

  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

.service-btn {
  background: #e0ad47;
  color: #064c3d;
}

.service-btn:hover {
  background: #efc467;
}

.care-btn {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.care-btn:hover {
  background: white;
  color: #075442;
}


/* HERO IMAGES */

.hero-images {
  position: relative;
  display: grid;
  grid-template-columns: 65% 35%;
  overflow: hidden;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-side-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
}

.hero-side-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* HERO FLOATING CARD */

.care-card {
  position: absolute;
  right: 25px;
  bottom: 25px;

  width: 400px;
  padding: 28px;

  background: rgba(255, 255, 255, 0.95);
  color: #075442;

  border-radius: 25px;
}

.care-card h2 {
  margin-bottom: 15px;

  font-family: Georgia, serif;
  font-size: 27px;
}

.care-card p {
  margin-bottom: 15px;

  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.care-card hr {
  margin: 15px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.care-card strong {
  font-size: 14px;
}


/* ================================
   SERVICES
================================ */

.services-section {
  padding: 90px 10%;
  background: #f7f1e7;
}

.services-heading {
  max-width: 750px;
  margin: 0 auto 50px;
  text-align: center;
}

.services-small {
  margin-bottom: 15px;

  color: #075442;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 4px;
}

.services-heading h2 {
  margin-bottom: 20px;

  font-family: Georgia, serif;
  color: #123f36;

  font-size: 45px;
  line-height: 1.05;
}

.services-intro {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}


/* SERVICE CARDS */

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;

  max-width: 1000px;
  margin: auto;
}

.service-card {
  overflow: hidden;

  background: white;
  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-image {
  position: relative;
  height: 270px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-badge {
  position: absolute;
  left: 20px;
  bottom: 18px;

  padding: 8px 15px;

  background: #075442;
  color: white;

  border-radius: 30px;

  font-size: 12px;
  font-weight: bold;
}

.service-info {
  padding: 28px;
}

.service-label {
  margin-bottom: 12px;

  color: #075442;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 3px;
}

.service-info h3 {
  margin-bottom: 15px;

  font-family: Georgia, serif;
  color: #075442;
  font-size: 27px;
}

.service-info > p:not(.service-label) {
  margin-bottom: 20px;

  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 25px;

  margin-bottom: 25px;
}

.service-list span {
  color: #555;
  font-size: 13px;
}

.service-link {
  color: #075442;
  text-decoration: none;

  font-size: 14px;
  font-weight: bold;
}

.service-link:hover {
  text-decoration: underline;
}


/* ================================
   WHY EQUATOR
================================ */

.why-equator {
  max-width: 1000px;
  margin: 80px auto;

  display: grid;
  grid-template-columns: 38% 62%;
  gap: 50px;

  align-items: center;
}

.why-box {
  padding: 35px;

  background: #075442;
  color: white;

  border-radius: 18px;
}

.why-small {
  margin-bottom: 8px;

  color: #e0ad47;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 3px;
}

.why-box h2 {
  margin-bottom: 18px;

  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

.why-box > p:not(.why-small) {
  margin-bottom: 22px;

  font-size: 13px;
  line-height: 1.6;
}

.approach-btn {
  display: inline-block;

  padding: 11px 20px;

  background: #e0ad47;
  color: #075442;

  border-radius: 30px;

  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
}


/* VALUES */

.values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;

  text-align: center;
}

.value-icon {
  width: 45px;
  height: 45px;

  margin: 0 auto 12px;

  display: flex;
  justify-content: center;
  align-items: center;

  background: #f7f1e7;
  border-radius: 50%;
}

.value h4 {
  margin-bottom: 8px;

  font-family: Georgia, serif;
  color: #075442;
  font-size: 14px;
}

.value p {
  color: #777;
  font-size: 10px;
  line-height: 1.5;
}


/* ================================
   SERVICE AREA / LOWER CARDS
================================ */

.service-bottom {
  max-width: 1000px;
  margin: 80px auto;

  display: grid;
  grid-template-columns: 1fr 0.75fr 1fr;
  gap: 20px;
}

.bottom-image-card,
.service-area-card {
  height: 340px;

  border-radius: 18px;
  overflow: hidden;
}

.bottom-image-card {
  position: relative;
}

.bottom-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottom-image-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    transparent 45%,
    rgba(0, 0, 0, 0.75)
  );
}

.bottom-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;

  color: white;
  z-index: 2;
}

.bottom-overlay h3 {
  margin-bottom: 8px;

  font-family: Georgia, serif;
  font-size: 22px;
}

.bottom-overlay p {
  font-size: 11px;
  line-height: 1.5;
}


/* SERVICE AREA CARD */

.service-area-card {
  padding: 28px;

  background: #f7f1e7;
  color: #075442;
}

.service-area-card h3 {
  margin-bottom: 12px;

  font-family: Georgia, serif;
  font-size: 22px;
}

.service-area-card p {
  margin-bottom: 15px;

  color: #666;
  font-size: 12px;
  line-height: 1.5;
}

.service-area-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.service-area-card li {
  margin-bottom: 9px;
  font-size: 12px;
}

.service-area-card strong {
  font-size: 11px;
}


/* ================================
   ABOUT EQUATOR
================================ */

.equator-about {
  padding: 100px 10%;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;

  align-items: center;

  background: #f7f1e7;
}

.equator-about-image img {
  width: 100%;
  height: 500px;

  object-fit: cover;
  border-radius: 20px;
}

.equator-about-content {
  color: #075442;
}

.about-small {
  margin-bottom: 15px;

  color: #075442;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 4px;
}

.equator-about-content h2 {
  margin-bottom: 25px;

  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 1;

  color: #123f36;
}

.equator-about-content > p:not(.about-small) {
  margin-bottom: 15px;

  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.about-preferences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;

  margin-top: 25px;
}

.about-preferences div {
  padding: 15px 18px;

  background: white;
  color: #333;

  border-radius: 10px;

  font-size: 13px;
}

/* ================================
   HELPFUL RESOURCES / FAQ
================================ */

.resources-section {
  padding: 85px 10% 95px;
  background: #fff;
  color: #123f36;
}


/* Heading */

.resources-heading {
  max-width: 700px;
  margin: 0 auto 45px;

  text-align: center;
}

.resources-small {
  margin-bottom: 10px;

  color: #075442;

  font-size: 10px;
  font-weight: bold;
  letter-spacing: 3px;
}

.resources-heading h2 {
  margin-bottom: 18px;

  font-family: Georgia, serif;

  color: #123f36;

  font-size: 43px;
  line-height: 1;
}

.resources-heading > p:not(.resources-small) {
  color: #666;

  font-size: 12px;
  line-height: 1.6;
}


/* FAQ container */

.faq-container {
  max-width: 900px;
  margin: auto;
}


/* Individual question */

.faq-item {
  border-bottom: 1px solid #d8c7a7;
}


/* Question row */

.faq-item summary {
  position: relative;

  padding: 20px 35px 20px 5px;

  color: #075442;

  font-size: 13px;
  font-weight: bold;

  cursor: pointer;

  list-style: none;
}


/* Remove default arrow */

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
  content: "";
}


/* Plus sign */

.faq-item summary::after {
  content: "+";

  position: absolute;

  right: 5px;
  top: 50%;

  transform: translateY(-50%);

  color: #d49a26;

  font-size: 18px;
  font-weight: normal;
}


/* Minus when opened */

.faq-item[open] summary::after {
  content: "−";
}


/* Answer */

.faq-item p {
  max-width: 820px;

  padding: 0 35px 20px 5px;

  color: #666;

  font-size: 12px;
  line-height: 1.7;
}

/* ================================
   HELPFUL RESOURCES / FAQ
================================ */

.resources-section {
  padding: 85px 10% 95px;
  background: #fff;
  color: #123f36;
}


/* Heading */

.resources-heading {
  max-width: 700px;
  margin: 0 auto 45px;

  text-align: center;
}

.resources-small {
  margin-bottom: 10px;

  color: #075442;

  font-size: 10px;
  font-weight: bold;
  letter-spacing: 3px;
}

.resources-heading h2 {
  margin-bottom: 18px;

  font-family: Georgia, serif;

  color: #123f36;

  font-size: 43px;
  line-height: 1;
}

.resources-heading > p:not(.resources-small) {
  color: #666;

  font-size: 12px;
  line-height: 1.6;
}


/* FAQ container */

.faq-container {
  max-width: 900px;
  margin: auto;
}


/* Individual question */

.faq-item {
  border-bottom: 1px solid #d8c7a7;
}


/* Question row */

.faq-item summary {
  position: relative;

  padding: 20px 35px 20px 5px;

  color: #075442;

  font-size: 13px;
  font-weight: bold;

  cursor: pointer;

  list-style: none;
}


/* Remove default arrow */

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
  content: "";
}


/* Plus sign */

.faq-item summary::after {
  content: "+";

  position: absolute;

  right: 5px;
  top: 50%;

  transform: translateY(-50%);

  color: #d49a26;

  font-size: 18px;
  font-weight: normal;
}


/* Minus when opened */

.faq-item[open] summary::after {
  content: "−";
}


/* Answer */

.faq-item p {
  max-width: 820px;

  padding: 0 35px 20px 5px;

  color: #666;

  font-size: 12px;
  line-height: 1.7;
}
/* ================================
   CARE CONSULTATION CTA
================================ */

.care-cta {
  position: relative;

  min-height: 310px;

  display: flex;
  align-items: center;

  padding: 55px 13%;

  background:
    linear-gradient(
      rgba(0, 74, 61, 0.82),
      rgba(0, 74, 61, 0.82)
    ),
    url("images/about1.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
}

.care-cta-content {
  max-width: 700px;
}

.care-cta h2 {
  margin-bottom: 10px;

  font-family: Georgia, serif;
  font-size: 36px;
  line-height: 1.05;

  color: white;
}

.care-cta p {
  margin-bottom: 25px;

  font-size: 12px;
  line-height: 1.6;

  color: white;
}

.cta-btn {
  display: inline-block;

  padding: 14px 22px;

  background: #e0ad47;
  color: #075442;

  border-radius: 30px;

  text-decoration: none;
  font-size: 11px;
  font-weight: bold;
}

.cta-btn:hover {
  background: #efc467;
}
/* ================================
   CONTACT
================================ */

.contact-section {
  padding: 80px 10%;
  background: #f7f1e7;
}

.contact-wrapper {
  max-width: 1050px;
  margin: auto;

  display: grid;
  grid-template-columns: 35% 65%;
  gap: 45px;

  align-items: center;
}


/* LEFT SIDE */

.contact-small {
  margin-bottom: 12px;

  color: #075442;

  font-size: 10px;
  font-weight: bold;
  letter-spacing: 3px;
}

.contact-info h2 {
  margin-bottom: 20px;

  font-family: Georgia, serif;
  font-size: 43px;
  line-height: 0.95;

  color: #123f36;
}

.contact-intro {
  margin-bottom: 25px;

  color: #666;

  font-size: 12px;
  line-height: 1.6;
}


/* CONTACT INFO BOXES */

.contact-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  padding: 15px;

  margin-bottom: 12px;

  background: white;

  border-radius: 10px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  color: #d49a26;
  font-size: 14px;
}

.contact-box strong {
  display: block;

  margin-bottom: 4px;

  color: #075442;

  font-size: 11px;
}

.contact-box p {
  color: #555;

  font-size: 11px;
}


/* ================================
   CONTACT FORM
================================ */

.contact-form-container {
  padding: 30px;

  background: white;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 15px;

  margin-bottom: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 7px;

  color: #075442;

  font-size: 10px;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 10px;

  border: 1px solid #cbbd9f;
  border-radius: 7px;

  background: white;

  color: #333;

  font-family: Arial, sans-serif;
  font-size: 11px;

  outline: none;
}

.form-group input,
.form-group select {
  height: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #075442;
}

.full-width {
  width: 100%;
  margin-bottom: 15px;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group textarea::placeholder {
  color: #999;
  font-size: 10px;
}


/* SUBMIT BUTTON */

.contact-submit {
  width: 100%;

  padding: 13px 20px;

  background: #075442;
  color: white;

  border: none;
  border-radius: 30px;

  font-size: 11px;
  font-weight: bold;

  cursor: pointer;
}

.contact-submit:hover {
  background: #063f33;
}
/* ================================
   FOOTER
================================ */

.footer {
  background: #06483b;
  color: white;

  padding: 55px 10% 20px;
}

.footer-content {
  max-width: 1050px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 70px;

  padding-bottom: 45px;
}


/* Footer headings */

.footer-brand h3 {
  font-family: Georgia, serif;
  font-size: 20px;

  margin-bottom: 15px;
}

.footer-column h4 {
  font-family: Georgia, serif;
  font-size: 14px;

  margin-bottom: 15px;
}


/* Footer text */

.footer-column p,
.footer-column a {
  display: block;

  color: white;

  font-size: 10px;
  line-height: 1.8;

  text-decoration: none;
}

.footer-column a {
  margin-bottom: 5px;
}

.footer-column a:hover {
  color: #e0ad47;
}

.footer-tagline {
  margin-top: 10px;
}


/* Bottom footer */

.footer-bottom {
  max-width: 1050px;
  margin: auto;

  padding-top: 18px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span {
  color: white;

  font-size: 9px;
  text-decoration: none;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-bottom a:hover {
  color: #e0ad47;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

  .navbar {
    position: relative;
    height: auto;
    padding: 15px 5%;

    flex-direction: column;
    gap: 15px;
  }

  nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  nav a {
    font-size: 11px;
  }


  .hero {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .hero-left {
    padding: 70px 7%;
  }

  .hero-left h1 {
    font-size: 45px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-images {
    min-height: 600px;
  }

  .care-card {
    width: calc(100% - 40px);
    right: 20px;
    bottom: 20px;
  }


  .services-section {
    padding: 70px 7%;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .services-heading h2 {
    font-size: 34px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }


  .why-equator {
    grid-template-columns: 1fr;
    gap: 40px;

    margin: 70px 7%;
  }

  .values {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }


  .service-bottom {
    grid-template-columns: 1fr;
    margin: 70px 7%;
  }


  .equator-about {
    grid-template-columns: 1fr;

    padding: 70px 7%;
    gap: 40px;
  }

  .equator-about-image img {
    height: 350px;
  }

  .equator-about-content h2 {
    font-size: 40px;
  }

  .about-preferences {
    grid-template-columns: 1fr;
  }
}
/* ================================
   OUR APPROACH
================================ */

.approach-section {
  background: #06483b;
  color: white;

  padding: 80px 10% 90px;

  text-align: center;
}


/* Heading */

.approach-heading {
  max-width: 750px;
  margin: 0 auto 45px;
}

.approach-small {
  color: #e0ad47;

  font-size: 10px;
  font-weight: bold;
  letter-spacing: 3px;

  margin-bottom: 10px;
}

.approach-heading h2 {
  font-family: Georgia, serif;

  font-size: 42px;
  line-height: 1.1;

  margin-bottom: 18px;
}

.approach-intro {
  max-width: 650px;
  margin: auto;

  font-size: 13px;
  line-height: 1.7;
}


/* Cards */

.approach-cards {
  max-width: 1000px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 15px;

  text-align: left;
}

.approach-card {
  min-height: 195px;

  padding: 25px 22px;

  background: #1b584c;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
}

.approach-number {
  display: block;

  color: #e0ad47;

  font-size: 10px;
  font-weight: bold;

  margin-bottom: 15px;
}

.approach-card h3 {
  font-family: Georgia, serif;

  color: white;

  font-size: 17px;

  margin-bottom: 12px;
}

.approach-card p {
  color: white;

  font-size: 11px;
  line-height: 1.6;
}