
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #072e33;
  color: #05161A;
}

.cta-btn {
  background-color: cyan; 
  color: #072E33;
  align-content:flex-end;
  padding: 15px 20px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.5s ease-in-out;
  font-size: larger;
  margin-right: 20px;
  box-shadow: cyan 0px 0px 5px;
}

.logo {
  max-width: 70px;
  height: auto;
  vertical-align: middle;
  margin: 20px;
  padding-left: 40px;
}

header {
  text-align: center;
  background-color: #0C7075;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  right: 0;
  padding: 0 20px;
}

.nav-btn-Active {
    margin: 0 15px;
    align-content: space-evenly;
    text-decoration: underline;
    font-weight: bolder;
    color: cyan; 
    font-size: larger;
    text-shadow: cyan 0px 0px 5px;
}

.nav-btn {
  margin: 0 15px;
  align-content: space-evenly;
  text-decoration: none;
  font-weight: bolder;
  color: white; 
  font-size: larger;
  transition: 0.5s ease-in-out;
}

.nav-btn:hover { 
  color: cyan;
  transition: 0.5s ease-in-out;
  text-shadow: cyan 0px 0px 5px;
  font-weight: bolder;
  text-decoration: underline;
}

.cta-btn:hover { 
  background-color: #072E33;
  color: cyan;
  transition: 0.5s ease-in-out;
  box-shadow: cyan 0px 0px 5px;
}

/* MAIN */

.container {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    justify-content: space-between;
    margin-top: 150px;

}

label {
    font-weight: bold;
    font-size: smaller;
}

.form-section, .details-section, .map-section {
    flex: 1 1 300px;
    margin: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
}

.form-section {
    background-color: #e5f2f2; 
    border: 2px solid #0C7075;
    padding-right: 50px;
    box-shadow: #0C7075 0px 0px 10px;
}

.details-section {
    background-color: #51d8df; 
    border: 2px solid #f0f8f8;
    box-shadow: 0 0 5px cyan, 0 0 25px cyan;
}

.contacts p i {
  padding: 0 10px;
}

.socials ul {
    margin-top: 20px;
    text-align: center;
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

.socials li i {
    margin: 10px 30px;
    color:#072E33;
    font-size: larger;
}

.socials i:hover {
    color: white;
    text-shadow: 0 0 3px white;
    font-size:x-large
}

.socials h3 {
    text-align: center;
    font-size: larger;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 80px;
}

input, textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

button {
    font-weight: bold;
    cursor: pointer;
    transition: 0.5s ease-in-out;
    background-color: #072e33; 
    color: cyan;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

button:hover { 
    background-color: cyan;
    color: #05161A;
    transition: 0.5s ease-in-out;

}

.map-section {
    background-color: #e5f2f2;
    border: 2px solid #0C7075;
    box-shadow: #0C7075 0px 0px 10px;
    padding: 15px 40px;
    padding-bottom: 10px;
}

a [href^="tel"] {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}

a [href^="tel"]:hover {
  color: cyan; /* match your theme */
  text-decoration: underline;
}

/* FOOTER */

.footer {
  background-color: #0C7075; 
  color: #fff;
  padding: 40px 20px;
}

footer {
  text-align: center;
  background-color: #0C7075;
  color: #FFFFFF;
  padding: 0 40px;
  display: block;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col p,
.footer-col ul {
  font-size: 14px;
  line-height: 1.5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.5s;
}

.footer-col ul li a i {
  padding-right: 5px;
}

.footer-col ul li a:hover {
  color: cyan; 
  font-weight: bold;
  transition: color 0.5s;
}

.footer-logo {
  width: 60px;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

.Legal-docs {
    color: white;
    text-decoration: none;
}

.Legal-docs:hover {
    color: cyan;
    transition: 0.5s ease-in-out;
    box-shadow: cyan 0px 0px 5px;
}

/*CREDITS FOOTER*/

.team-credit {
    margin-top: 3rem;
    padding: 2rem;
    background:linear-gradient(to top,rgba(5, 22, 26, 0.7),#0C7075);
    border-radius: 10px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.team-member {
    padding: 0.8rem;
    background: #6ae1e7;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.member-name {
    display: block;
    font-weight: bold;
    color: #2c3e50;
}

.member-role {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.credit-note {
    font-style: italic;
    color: #495057;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Icons */
.close-icon, .open-icon {
  display: none;
}

/* RESPONSIVE DESIGN */
/* ---------- Tablet View (<=1024px) ---------- */
@media (max-width: 1024px) {
  .close-icon, .open-icon {
  display: none;
  }

  header {
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
  }

  .nav-btn {
    margin: 10px;
    padding: 15px 0;
  }

  .cta-btn {
    margin-top: 20px;
  }

   .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) and (min-width: 701px) {
  .container {
    justify-content: center;
  }

  .form-section, .details-section {
    flex: 1 1 45%; /* Two side by side */
  }

  .map-section {
    flex: 1 1 100%; /* Full width underneath */
  }
}

/* ---------- Mobile View (<=700px) ---------- */
@media (max-width: 700px) {
  /* Footer responsiveness */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    width: 100%;
  }

  footer {
    width: 100%;
  }

  .footer-logo {
    margin: auto;
  }

  .cta-btn {
    font-size: 1em;
    padding: 10px 15px;
    margin-right: 15px;
  }

  /* Icons */
  .close-icon,
  .open-icon {
    display: block;
    color: white;
    margin: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    border: #072e33 solid 2px;
    border-radius: 5px;
    padding: 5px;
    background-color: #072e33;
  }

  .close-icon,
  .open-icon:hover {
    background-color: cyan;
    color: #072e33;
    border: cyan solid 2px;
    transition: 0.3s ease-in-out;
  }

  /* Header layout */
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    z-index: 1002;
  }

  .logo {
    max-width: 70px;
    padding: 0;
    margin: 0;
  }

  header h1 {
    font-size: 30px;
    margin: 0;
    padding: 10px 0;
  }

  /* NAV MENU OVERLAY */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 30%;
    height: 100vh; /* full screen */
    background-color: #0C7075;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 1000;
    box-shadow: cyan 0px 0px 8px;
  }

  .container {
    flex-direction: column;
    align-items: center;
    margin-top: 200px;
  }

  nav.active {
    transform: translateY(0);
  }

  nav.active {
    transform: translateX(0);
  }

  .nav-btn {
    color: white;
    font-size: 1rem;
    padding: 10px;
  }
  .close-icon {
    display: none; /* Hide close icon by default */
  }

  /* Smooth icon toggle */
  .open-icon,
  .close-icon {
    transition: opacity 0.3s ease;
  }
}
