.container {
  width: 90%;
  max-width: 85rem;
  margin-inline: auto;
}

/* ================= HEADER ================= */
/* RESET SAFETY */


html,
body {
  overflow-x: hidden;
}

/* SUBMENU (DESKTOP) */
.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 4rem;
  left: 0;
  width: 800px;
 opacity: 95%;
  background-color: rgba(21,21,21,.7);
  transition: transform 0.2s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu-inner {
  display: grid;
  grid-template-columns: 30% 70%;
  min-height: 320px;
}

/* LEFT 20% */
.submenu-links {
  padding: 1.2rem;
  opacity: 95%;
  background-color: rgba(21,21,21,.7);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.submenu-links a {
  color: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  text-decoration: none;
}

.submenu-image {
  position: relative;
  overflow: hidden;
}

.submenu-img.active {
  opacity: 1;
}

.submenu-links a:hover {
  font-weight: 600;
}

.submenu-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}
/* RIGHT 80% */
.submenu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* MOBILE SUBMENU */
.mobile-has-submenu {
  width: 100%;
  padding: 0!important;
}

.mobile-submenu-header {
  position: relative;
  
  cursor: pointer;
  text-align: center;
}
.mobile-submenu-icon {
    position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.mobile-submenu-toggle {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  cursor: pointer;
  padding: 1rem 0;
}

/* Rotate arrow when open */
.mobile-has-submenu.open .mobile-submenu-icon {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-submenu {
  list-style: none;
  display: none;
  background: #f6f6f6;
  text-align: center;
}

.mobile-submenu li {
  padding: 0.75rem 0;
}



/* HEADER */
.simple-header {
  width: 100%;
  opacity: 95%;
  background-color: rgba(21,21,21,.7);
  transition: transform 0.2s ease;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.simple-nav {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.menu-left {
  justify-content:flex-end;
  margin-right: 2rem;
}

.menu-right {
justify-content:flex-start;
  margin-left: 2rem;
}

.simple-logo {
  display: flex;
  justify-content: center;
}

.simple-logo img {
  max-width: 140px;
}


/* DESKTOP MENU */
.simple-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.simple-menu a {
  text-decoration: none;
  font-size: 0.75rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: #ffffff;
  padding-bottom: 6px;
}

/* Underline */
.simple-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Hover effect */
.simple-menu li a:hover::after {
  transform: scaleX(1);
 
}

/* HAMBURGER */
/* PREMIUM HAMBURGER */
.simple-toggle {
  width: 28px;
  height: 18px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.simple-toggle span {
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 4px;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .simple-toggle:hover span:nth-child(2) {
    width: 70%;
  }
}

/* HAMBURGER TO CROSS ANIMATION */
.simple-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.simple-toggle.active span:nth-child(2) {
  opacity: 0;
}

.simple-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Smooth animation */
.simple-toggle span {
  transition: transform 0.35s ease, opacity 0.25s ease;
}

/* MOBILE MENU */
.simple-mobile-menu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 8px 0 30px rgba(0, 0, 0, 0.12);
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s ease;
  z-index: 1100;
}

.simple-mobile-menu.open {
  transform: translateY(0);
}

.simple-mobile-menu ul {
  list-style: none;
  width: 100%;
  text-align: center;
}

.simple-mobile-menu li {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
    transform: translateX(-20px);
  transition: all 0.3s ease;

}

.simple-mobile-menu.open li {
  opacity: 1;
  transform: translateX(0);
}

.simple-mobile-menu.open li:nth-child(1) { transition-delay: 0.1s; }
.simple-mobile-menu.open li:nth-child(2) { transition-delay: 0.15s; }
.simple-mobile-menu.open li:nth-child(3) { transition-delay: 0.2s; }
.simple-mobile-menu.open li:nth-child(4) { transition-delay: 0.25s; }

.simple-mobile-menu a {
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: #111;
}

/* CLOSE */
.simple-close {
  position: absolute;
  top: 0rem;
  right: 1.0rem;
  font-size: 4rem;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }


}

@media (max-width: 768px) {

  /* Keep grid – do NOT switch to flex */
  .simple-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 64px;
  }

  /* Hide desktop menus */
  .desktop-menu {
    display: none;
  }

  /* LOGO → CENTER */
  .simple-logo {
    grid-column: 2;
    justify-self: center;
    display: flex;
    align-items: center;
  }

  /* HAMBURGER → LEFT */
  .simple-toggle {
    grid-column: 1;
    justify-self: start;
    display: flex;
    align-items: center;
    align-self: center;
    margin-top: -55px;
  }

  .simple-toggle span {
    background: #ffffff;
  }
}



/* FOOTER */
.footer {
  background-color: #000000;
  padding: 20px 0;
  color: #cfcfcf;
  font-size: 14px;
  font-family: "Lato", sans-serif;

}

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

.footer-left {
  font-weight: 400;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-right a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: var(--secondary-color);
  /* premium hover */
}

.footer-right .divider {
  opacity: 0.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

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

/* =====================================
   CONTACT FULL BANNER
===================================== */

.contact-overview-full {
    position: relative;
    width: 100%;
    height: 90vh; /* Same as other pages */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("/assets/images/banners/contact_us_desktop.webp");
    background-size: cover;
    background-position: center right; /* Important for handshake image */
    background-repeat: no-repeat;
}

.contact-content-box {
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
    color: #fff;
}

.contact-content-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-content-box p {
    font-size: 1.1rem;
    line-height: 1.7;
}

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

@media (max-width: 991px) {

    .contact-overview-full {
        height: 55vh;
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
            url("/assets/images/banners/contact_us.webp");

        background-position: center;
    }

    .contact-content-box h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }

    .contact-content-box p {
        font-size: 1rem;
    }
}


/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 5rem 2rem;
   background: var(--white);
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 4rem;
}

/* LEFT INFO */
.contact-info h3 {
font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 1rem;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.contact-details a {
  color: #111;
  font-family: var(--font-body);
  text-decoration: none;
}

.contact-details i {
  color: #111;
}

/* SOCIALS */
.contact-socials {
  display: flex;
  gap: 1rem;
}

.contact-socials a {
  width: 38px;
  height: 38px;
  text-decoration: none;
  border: 1px solid #171717;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: all 0.3s ease;
}

.contact-socials a:hover {
  background: #111;
  color: #fff;
}

/* RIGHT FORM */
.contact-form {
  background: #f8f8f8;
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 0.75rem 0;
  background: transparent;
  font-size: 0.9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #111;
}

.contact-form button {
  margin-top: 1rem;
  padding: 0.8rem 2.5rem;
  background: #111;
  color: #fff;
  border: none;
  font-size: 0.75rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
