/* ==================== RESET STYLES ==================== */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #FDF6E3;
  width: 100%;
  overflow-x: hidden;
}

/* ==================== TYPOGRAPHY ==================== */
h1 {
  text-align: center;
  font-size: 32px;
  color: #1F5A99;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.8;
  margin-left: 20px;
  margin-right: 20px;
  padding-bottom: 40px;
  position: relative;
}

h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  color: #C89F65;
  font-size: 48px;
}

h2 {
  text-align: center;
  font-size: 18px;
  color: #0D2E4F;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.8;
  width: 90%;
  margin: 0 auto;
}

h3 {
  text-align: left;
  font-size: 24px;
  color: #303F81;
  font-family: "Manrope", sans-serif;
  font-weight: normal;
  letter-spacing: 0.5px;
  line-height: 1.8;
  width: 90%;
  margin: 0 auto;
}

@media only screen and (min-width: 600px) {
  h2 {
    max-width: 88%;
    margin: 0 auto;
    text-align: center;
    padding: 0;
  }
}

/* ==================== WRAPPER & LAYOUT ==================== */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ==================== HEADER / BANNER ==================== */
.header {
  background-color: #ffffff;
  background-image: url('../imgs/banner_top.jpg');
  background-size: cover;           /* keeps full width, may crop top/bottom */
  background-position: center 30%;  /* shift image down slightly to show more top */
  background-repeat: no-repeat;
  text-align: center;
  padding: 20px;
  min-height: 400px;                /* taller header */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  max-width: 100%;
  height: auto;
  padding: 10px;
}

/* ==================== HAMBURGER MENU ==================== */
/* Hidden on desktop — only shown on mobile via media query below */
.hamburger {
  display: none;
  height: 38px;
  background: #1E5997;
  border: none;
  cursor: pointer;
  padding: 8px 10px;
  margin: 0;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);

  z-index: 300; /* ✅ added */
}

.hamburger.active {
  background-color: #586EBA;
}

.hamburger__line {
  display: block;
  width: 25px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
  display: none;
  background: #1E5997;
  position: relative; /* ✅ changed from sticky */
  top: 0;
  z-index: 199;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li a {
  display: block;
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu li a:hover {
  background-color: #2f4566;
}

/* ==================== NAVIGATION ==================== */
.navigation {
  background-color: #FDE3C1;
  background-repeat: repeat;
  background-size: auto;
  background-position: top left;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* ===== STICKY NAV — stays visible on scroll ===== */
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.navigation ul li {
  display: inline-block;
  margin: 0 10px;
  position: relative;
}

.navigation ul li a {
  color: #1E5997;
  font-family: "Manrope", sans-serif;
  text-decoration: none;
  font-size: 18px;
}

.navigation ul li a:hover {
  color: #5a90ca;
}

.navigation ul li a.active {
  color: #07516E;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid #FEED00;
  border-top: 1px solid #FEED00;
}

/* Dropdown styles */
.dropdown {
  display: none;
  position: absolute;
  background-color: #ffffff;
  width: 240px;
  top: 100%;
  left: 0;
  z-index: 200;
}

.navigation ul li:hover .dropdown {
  display: block;
}

.dropdown li a {
  display: block;
  color: #fff;
  padding: 10px 15px;
  font-size: 16px;
  text-decoration: none;
}

.dropdown li a:hover {
  background-color: #2f4566;
  color: #ffffff;
}

/* ==================== MAIN CONTENT ==================== */
main {
  flex-grow: 1;
  margin: 0;
  font-family: "Manrope", sans-serif;
}

/* ==================== SPLIT CONTENT BOX (Image + Text Side by Side) ==================== */
.content-box {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 40px auto;
  background-color: #ffffff;
  border: 4px solid #1e5997;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* ==================== TEXT SIDE ==================== */
.content-text {
  flex: 1;
  padding: 60px;
  background-color: #FEF3EF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-right: 1px solid rgba(30, 89, 151, 0.4);
}

/* Custom vertical divider (full height) */
.content-text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 4px;
  background: #1e5997;
}

/* Flip divider when reversed */
.content-box.reverse .content-text::after {
  right: auto;
  left: 0;
}

.content-text h2 {
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  color: #1F5A99;
  font-weight: 600;
  text-align: left;
  margin-bottom: 25px;
}

.content-text p {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  color: #0D2E4F;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.content-text li {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  color: #0D2E4F;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ==================== IMAGE SIDE ==================== */
.content-image {
  flex: 1;
  padding: 25px;
  position: relative;
  min-height: 350px;
  overflow: hidden;
}

.content-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  border-radius: 10px;
  display: block;
  transition: transform 0.5s ease;
}

/* Subtle hover zoom */
.content-box:hover .content-image img {
  transform: scale(1.05);
}

/* ==================== REVERSE LAYOUT ==================== */
.content-box.reverse {
  flex-direction: row-reverse;
}

.content-box.reverse .content-text {
  border-right: none;
  border-left: 1px solid rgba(30, 89, 151, 0.4);
}

/* ==================== BUTTON ==================== */
.content-button {
  display: inline-block;
  padding: 12px 32px;
  background-color: transparent;
  color: #1F5A99;
  border: 2px solid #1F5A99;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  transition: all 0.25s ease;
  align-self: flex-start;
}

.content-button:hover {
  background-color: #1F5A99;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==================== CONTENT BOX MOBILE ==================== */
@media (max-width: 768px) {
  .content-box {
    flex-direction: column;
    margin: 20px 16px;
  }

  .content-box.reverse {
    flex-direction: column;
  }

  .content-text {
    padding: 30px 35px;
    border-right: none;
    border-left: none;
  }

  .content-text::after {
    display: none;
  }

  .content-image {
    padding: 15px;
    min-height: 280px;
  }
}

/* ==================== TEXT CONTAINER (Three Column Layout) ==================== */
.text-container {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

.text {
  text-align: left;
}

/* H1 styling INSIDE text-container (no decoration) */
.text-container .text h1 {
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  color: #1F5A99;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.8;
  text-align: center;
  padding-bottom: 20px;
  margin: 0 0 20px 0;
}

.text-container .text h1::after {
  content: none;
}

.text p {
  margin-bottom: 1em;
  padding: 0;
}

.image {
  flex-shrink: 0;
  margin-left: 20px;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.image img {
  max-width: 100%;
  height: auto;
}

/* ==================== CENTERED IMAGE ==================== */
.centered-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.centered-image img {
  max-width: 100%;
  height: auto;
}

/* ==================== VIDEO WRAPPER ==================== */
.video-wrapper {
  position: relative;
  width: 100vw;
  height: 500px;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .video-wrapper {
    height: 300px;
  }
}

.caption-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.4);
  color: #212c55;
  padding: 10px;
  font-size: 16px;
  opacity: 1;
}

@media (max-width: 600px) {
  .caption-wrapper {
    display: none;
  }
}

/* ==================== PIPS (Carousel/Slideshow Indicators) ==================== */
.pips {
  text-align: center;
  margin-top: 10px;
}

.pip {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #2f2e2e;
  margin: 0 5px;
  cursor: pointer;
}

.pip.active {
  background-color: #596eba;
}

@keyframes fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ==================== FOOTER ==================== */
footer {
  background-color: #000000;
  background-image: url('../imgs/banner_footer.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #215B9A;
  font-family: "Manrope", sans-serif;
  font-size: 16pt;
  padding: 20px;
  text-align: left;
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer a {
  color: #051a2e !important;
  text-decoration: none;
}
footer a:hover {
  color: #215B9A;
}
.footer-column {
  flex: 1;
  flex-basis: 33.333%;
}
.footer-item {
  margin-bottom: 20px;
}
.footer-item img {
  margin-right: 10px;
  vertical-align: middle;
}
footer .footer-item p {
  color: #051a2e !important;
}

/* ==================== FLOOR CONTAINER (Homepage Links) ==================== */
.floor-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  max-width: 100%;
  margin-left: 20px;
  margin-right: 20px;
}

.floor-image {
  position: relative;
  max-width: 640px;
}

.floor-image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  transition: opacity 0.3s ease;
}

.floor-image a {
  display: block;
  text-decoration: none;
}

.floor-caption {
  display: block;
  text-align: center;
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  color: #2f2e2e;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.floor-image:hover img {
  transition: opacity 0.6s ease;
  box-shadow: 0px 0px 10px rgba(7, 81, 207, 0.5);
}

/* ==================== TEXT CONTAINER COLUMNS (Three Column Grid) ==================== */
.text-container-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 1em;
  box-sizing: border-box;
}

.text {
  flex: 1 1 30%;
  text-align: center;
  padding: 2.5em;
  box-sizing: border-box;
  border: 1px solid #d0d7de;
  margin: 0.5em;
  background-color: #f9fbfc;
}

.text h1 {
  font-family: "Manrope", sans-serif;
  font-size: 1.6em;
  line-height: 1.4;
  border-bottom: 1px solid #d0d7de;
  padding-bottom: 0.5em;
  margin-top: 0;
  margin-bottom: 1em;
}

.text p {
  margin: 0 auto 1em auto;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  color: #000000;
  letter-spacing: 0.5px;
  line-height: 1.8;
  max-width: 90%;
}

.text:hover {
  background-color: #eef6fb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .text-container-columns {
    flex-direction: column;
    padding: 0.5em;
  }

  .text {
    flex: 1 1 100%;
    margin: 0.5em 0;
    padding: 1.5em;
  }

  .text h1 {
    font-size: 1.4em;
    line-height: 1.4;
  }

  .text p {
    font-size: 15px;
  }
}

/* ==================== CONTACT FORM ==================== */
.contact-form,
.contact-form *,
.contact-container,
.contact-container * {
  box-sizing: border-box;
}

.contact-container {
  padding: 0 16px;
  box-sizing: border-box;
  max-width: 100%;
}

.contact-form {
  max-width: 680px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.contact-form h2,
.contact-form h3 {
  width: 100%;
  margin: 0 0 18px 0;
}

.contact-form h3 {
  font-size: 22px;
}

.contact-form h3,
.contact-form p,
.contact-form a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-form a[href^="tel:"] {
  word-break: break-all;
}

.contact-form__form,
.contact-form__card {
  width: 100%;
  max-width: 100%;
}

.contact-form__card {
  background: #ffffff;
  border: 2px solid #d0d7de;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.form-notice {
  padding: 12px 14px;
  border-radius: 4px;
  margin: 0 0 16px;
}

.form-notice--success {
  background-color: #d4edda;
  color: #155724;
}

.form-notice--error {
  background-color: #f8d7da;
  color: #721c24;
}

.contact-form__form label {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #2f4566;
  margin: 14px 0 6px;
}

.contact-form__form input[type="text"],
.contact-form__form input[type="email"],
.contact-form__form input[type="tel"],
.contact-form__form select,
.contact-form__form textarea {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  border: 2px solid #d0d7de;
  border-radius: 10px;
  background: #FFF8F0;
  color: #0D2E4F;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.05s ease;
}

.contact-form__form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #2f4566 50%),
    linear-gradient(135deg, #2f4566 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 55%,
    calc(100% - 12px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
  cursor: pointer;
}

.contact-form__form input[type="text"]:focus,
.contact-form__form input[type="email"]:focus,
.contact-form__form input[type="tel"]:focus,
.contact-form__form select:focus,
.contact-form__form textarea:focus {
  border-color: #1F5A99;
  box-shadow: 0 0 0 4px rgba(31, 90, 153, 0.15);
}

.contact-form__turnstile {
  margin-top: 10px;
}

.contact-form__turnstile .cf-turnstile,
#turnstile-widget {
  display: inline-block;
  max-width: 100%;
}

.contact-form__actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}

.contact-form__submit-status {
  margin-top: 12px;
  font-size: 14px;
  color: #2f4566;
  display: none;
}

.contact-form__submit-status.is-visible {
  display: block;
}

.contact-form__status {
  margin-top: 10px;
  font-size: 14px;
  color: #2f4566;
  display: none;
}

.contact-form__status.is-visible {
  display: block;
}

.contact-form__form input[type="submit"],
.contact-form__form .submit {
  background-color: #1F5A99;
  color: #ffffff;
  border-radius: 12px;
  padding: 12px 22px;
  border: 2px solid #1F5A99;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: transform 0.08s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form__form input[type="submit"]:hover,
.contact-form__form .submit:hover {
  background-color: #2f4566;
  border-color: #2f4566;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.contact-form__form input[type="submit"]:active,
.contact-form__form .submit:active {
  transform: translateY(0px);
  box-shadow: none;
}

.contact-form__form input[type="submit"]:disabled,
.contact-form__form .submit:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.contact-form form {
  display: block;
}

.contact-form h3 a {
  color: #1F5A99;
  text-decoration: none;
  border-bottom: 1px dotted rgba(31, 90, 153, 0.7);
}

.contact-form h3 a:hover {
  color: #2f4566;
  border-bottom-color: rgba(47, 69, 102, 0.7);
}

@media (max-width: 600px) {
  .contact-form {
    padding: 0 12px;
    margin-left: 0;
    width: 100%;
  }

  .contact-form__card {
    padding: 18px;
    border-radius: 12px;
  }

  #turnstile-widget,
  .contact-form__turnstile .cf-turnstile {
    width: 100%;
  }

  .contact-form__actions {
    justify-content: stretch;
  }

  .contact-form__form input[type="submit"],
  .contact-form__form .submit {
    width: 100%;
    text-align: center;
  }
}

/* ==================== GOOGLE MAPS ==================== */
.delivery-checker {
  max-width: 720px;
  margin: 0 auto 16px auto;
  padding: 14px 16px;
  background: #ffffff;
  border: 2px solid #d0d7de;
  border-radius: 12px;
  box-sizing: border-box;
}

.delivery-checker__label {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #304f75;
  margin: 0 0 10px 0;
}

.delivery-checker__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.delivery-checker__input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #d0d7de;
  border-radius: 10px;
  background: #FFF8F0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  color: #0D2E4F;
  outline: none;
  box-sizing: border-box;
}

.delivery-checker__input:focus {
  border-color: #1F5A99;
  box-shadow: 0 0 0 4px rgba(31, 90, 153, 0.15);
}

.delivery-checker__btn {
  padding: 12px 18px;
  border-radius: 12px;
  border: 2px solid #1F5A99;
  background: #1F5A99;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.delivery-checker__btn:hover {
  background: #2f4566;
  border-color: #2f4566;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.delivery-checker__btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.delivery-checker__result {
  margin-top: 12px;
  padding: 12px;
  border-radius: 10px;
  display: none;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

.delivery-checker__result.is-ok {
  display: block;
  background: rgba(134, 178, 207, 0.35);
  border: 2px solid rgba(31, 90, 153, 0.35);
  color: #0D2E4F;
}

.delivery-checker__result.is-no {
  display: block;
  background: rgba(245, 192, 192, 0.55);
  border: 2px solid rgba(180, 60, 60, 0.25);
  color: #4a1f1f;
}

.delivery-checker__result.is-warn {
  display: block;
  background: rgba(244, 228, 193, 0.75);
  border: 2px solid rgba(47, 69, 102, 0.20);
  color: #2f4566;
}

.delivery-checker__hint {
  margin: 10px 0 0 0;
  font-size: 14px;
  color: #304f75;
  opacity: 0.9;
}

.delivery-map {
  width: 100%;
  max-width: 1200px;
  height: 460px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .delivery-checker__row {
    grid-template-columns: 1fr;
  }

  .delivery-checker__btn {
    width: 100%;
  }

  .delivery-map {
    height: 360px;
  }
}

.google-map {
  margin-top: 40px;
  padding: 0 16px;
  box-sizing: border-box;
}

.google-map h2 {
  margin-bottom: 20px;
}

.google-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.map-embed-crop {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
}

.map-embed-crop iframe {
  width: 100%;
  border: 0;
  position: relative;
  top: -72px;
  height: calc(460px + 72px);
}

@media (max-width: 768px) {
  .map-embed-crop iframe {
    top: -72px;
    height: calc(360px + 72px);
  }
}

@media (max-width: 480px) {
  .map-embed-crop iframe {
    top: -72px;
    height: calc(320px + 72px);
  }
}

/* ==================== SOCIAL ICONS ==================== */
.social-icons img {
  max-width: 50px;
}

/* ==================== MOBILE RESPONSIVE STYLES ==================== */
@media (max-width: 768px) {

  /* Shrink the header on mobile */
  .header {
    min-height: 70px;
    padding: 10px 16px;
    background-size: cover;
    background-color: #f5e6c8;
    justify-content: center;
  }

  /* Show the hamburger button on mobile */
  .hamburger {
    display: inline-flex;
  }

  /* Hide the desktop nav links on mobile */
  .navigation ul {
    display: none;
  }

  /* Hide the entire desktop nav bar on mobile (hamburger is in header now) */
  .navigation {
    display: none;
  }

  /* Show nav when hamburger is clicked */
  .navigation.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1E5997;
    z-index: 299;
  }

  .navigation.active ul {
    display: flex !important;
    flex-direction: column;
    width: 100%;
  }

  .navigation.active ul li {
    display: block;
    width: 100%;
  }

  .navigation.active ul li a {
    display: block;
    padding: 14px 20px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 600px) {
  h2 {
    max-width: 90%;
    margin: 0 auto;
    text-align: justify;
  }

  h3 {
    text-align: justify;
  }

  .text p {
    text-align: justify;
  }

  .text-container {
    flex-direction: column;
    text-align: justify;
  }
}

/* ==================== STRAP CONTAINER ==================== */
.strap_container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  border: 2px dotted #2a00ff;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #000000;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

.strap_header {
  flex: 1;
  margin-left: 20px;
  min-width: 300px;
}

.strap_container + .strap_container {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .strap_container {
    flex-direction: column;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 50px;
  }

  .image {
    order: -1;
  }

  .strap_header {
    margin-left: 0;
    margin-top: 20px;
    min-width: auto;
  }
}

/* ==================== LEFT ALIGN (Contact Page) ==================== */
.left-align .text {
  text-align: left;
}

/* ==================== FLOAT RIGHT (Sidebar) ==================== */
.float-right {
  float: right;
  margin: 0 20px 10px 15px;
  max-width: 28%;
  padding: 10px;
  background-color: #f9f9f9;
  border: 2px dotted #2a00ff;
  border-radius: 8px;
  box-sizing: border-box;
  text-align: left;
}

.float-right img {
  width: 100%;
  height: auto;
  display: block;
}

.float-right p {
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .float-right {
    float: none;
    max-width: 100%;
    margin: 10px auto;
    text-align: center;
  }
}

/* ==================== PAGE DIVIDER ==================== */
.page-divider {
  text-align: center;
  margin: 5px 0;
}

.page-divider img {
  max-width: 100%;
  height: auto;
}

/* ==================== INFO BOXES ==================== */
.info-box-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.info-box {
  position: relative;
  border: 2px solid #2f4566;
  padding: 40px 220px 40px 35px;
  background: #F4E4C1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.info-box-image {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 200px;
  height: 200px;
  opacity: 0.7;
}

.info-box::after {
  content: "";
  position: absolute;
  bottom: 14px;
  right: 18px;
  width: 65px;
  height: 65px;
  background-image: url("../imgs/watermark.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.65;
  pointer-events: none;
}

.info-box h1,
.info-box h2 {
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  line-height: 1.25;
  color: #1F5A99;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 12px;
  min-height: 72px;
  letter-spacing: 0.5px;
}

.info-box p {
  font-family: sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #2f4566;
  margin-bottom: 24px;
}

.info-box-button {
  display: inline-block;
  margin-top: auto;
  padding: 14px 28px;
  background-color: transparent;
  color: #2f4566;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid #2f4566;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.info-box-button:hover {
  background-color: #2f4566;
  color: #F4E4C1;
}

@media (max-width: 768px) {
  .info-box-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px auto;
  }

  .info-box {
    padding: 30px 25px;
  }

  .info-box-image {
    width: 120px;
    height: 120px;
    top: 15px;
    right: 15px;
  }

  .info-box h1,
  .info-box h2 {
    font-size: 28px;
    min-height: auto;
  }

  .info-box::after {
    width: 50px;
    height: 50px;
    opacity: 0.35;
  }
}

/* ==================== RECIPE SINGLE COLUMN ==================== */
.single-column {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 20px;
  text-align: left;
  font-family: "Manrope", sans-serif;
  color: #0D2E4F;
  line-height: 1.8;
}

.single-column h1 {
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #1F5A99;
  text-align: center;
  margin-bottom: 20px;
}

.single-column h3 {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #303F81;
  margin-top: 20px;
  margin-bottom: 10px;
}

.single-column ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.single-column ul li {
  margin-bottom: 5px;
  font-size: 18px;
}

.single-column p {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: justify;
}

/* ==================== WATERMARK LOGO ==================== */
.watermark-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
  max-width: 50%;
  height: auto;
}

/* ==================== TESTIMONIAL CAROUSEL ==================== */
.testimonial-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.testimonial-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #b22222;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-carousel {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
  scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 320px;
  flex: 0 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-top: 6px solid #F4E4C1;
  text-align: left;
  transition: transform 0.3s ease;
}

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

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
}

.testimonial-card h4 {
  margin-top: 18px;
  font-weight: 600;
  color: #777;
}

.carousel-btn {
  background: #F4E4C1;
  color: white;
  border: none;
  font-size: 22px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s ease;
}

.carousel-btn:hover {
  background: #d7c8a8;
}

@media (max-width: 768px) {
  .testimonial-carousel {
    gap: 15px;
    padding: 15px 0;
  }

  .testimonial-card {
    min-width: 250px;
    padding: 20px;
  }

  .carousel-btn {
    padding: 10px 12px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    min-width: 200px;
    padding: 18px 15px;
  }

  .carousel-btn {
    padding: 8px 10px;
    font-size: 18px;
  }
}

/* ==================== TOOLTIP ==================== */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
  color: #1F5A99;
  border-bottom: 1px dotted #1F5A99;
}

.tooltiptext {
  visibility: hidden;
  width: 220px;
  background-color: #F4E4C1;
  color: #2f4566;
  text-align: left;
  padding: 12px 16px;
  border: 2px solid #2f4566;
  border-radius: 0;
  font-size: 14px;
  line-height: 1.6;
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-bottom: 8px;
}

.tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: #2f4566 transparent transparent transparent;
}

.tooltiptext::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #F4E4C1 transparent transparent transparent;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* ==================== MOBILE HEADER TALLER BANNER ==================== */
/* ==================== MOBILE HEADER TALLER BANNER ==================== */
@media (max-width: 768px) {
  .header {
    min-height: 300px;        /* taller banner on mobile */
    background-size: cover;   /* ensures the image scales nicely */
    background-position: center center; /* keeps it centered */
    background-repeat: no-repeat;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.text-container-columns {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #FDF6E3;
  padding: 20px 0;
  gap: 20px;
}

.text:hover {
    background-color: #FDF6E3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.text {
  flex: 1;
  text-align: center;
  background-color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.text .image {
    text-align: center;
}

.text .image img {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.text-title {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  color: #07516E;
  font-weight: bold;
  text-align: center;
}

.text p {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #07516E;
  font-weight: bold;
  text-align: center !important;
}

.text p:last-child {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #07516E;
    font-weight: normal;
    margin-top: 5px;
    text-align: center !important;
}
@media (max-width: 768px) {
    .text {
        border-left: 2px solid #07516E;
        border-right: 2px solid #07516E;
    }
    .text-container-columns {
        padding: 20px 15px;
    }
}

