*,
*:before,
*:after {
  box-sizing: border-box;
}
.top-bar {
  background-color: var(--dark-teal);
  color: var(--white);
  padding: 0.4rem 0;
}
.left-info span {
  margin-right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  transition:
    color 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}
.left-info a {
  color: var(--white);
  text-decoration: none;
  transition:
    color 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}
.left-info a:hover {
  transform: translateY(-1px);
}
.right-icons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.right-icons a {
  color: var(--white);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  transition:
    color 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}
.right-icons a:hover {
  transform: translateY(-1px);
}
.main-navbar {
  background-color: var(--soft-sky);
  color: var(--default-black);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px #00000026;
  transition: background-color 0.3s ease-in-out;
}
.main-navbar.scrolled {
  background-color: var(--default-white);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
  transition:
    color 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}
.logo-highlight {
  color: var(--dark-teal);
  text-shadow: 0px 1px 1px rgba(8, 119, 139, 0.4);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.tagline {
  font-family: Merienda, cursive;
  font-size: 0.85rem;
  color: var(--teal);
  margin-top: -0.25rem;
  opacity: 0.9;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-shadow: 0px 1px 1px rgba(8, 119, 139, 0.4);
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  transition: opacity 0.3s ease-in-out;
}
.nav-links a {
  font-family: Livvic, sans-serif;
  color: var(--default-black);
  font-weight: 500;
  text-decoration: none;
  font-size: clamp(1.2rem, 1vw + 0.4rem, 1.3rem);
  padding: 0.8rem;
  position: relative;
  touch-action: manipulation;
  transition: color 0.3s ease-in-out;
}
.nav-links a:after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: var(--dark-teal);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}
.nav-links a:hover:after,
.nav-links a:focus:after,
.nav-links a.active:after {
  transform: scaleX(1);
  opacity: 1;
}
.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
  color: var(--dark-teal);
  outline: none;
}
.nav-links a:focus-visible {
  outline: 2px solid var(--dark-teal);
  outline-offset: 2px;
}
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: var(--default-black);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  -webkit-user-select: none;
  user-select: none;
  margin-left: auto;
  transition: color 0.3s ease-in-out;
  align-self: flex-end;
}
.hamburger:hover {
  color: var(--dark-teal);
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--soft-sky);
    box-shadow: 0 2px 8px #00000026;
    padding: 0;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transform: translateY(-10px);
    transition:
      transform 0.4s ease-in-out,
      max-height 0.4s ease-in-out,
      opacity 0.3s ease-in-out;
    z-index: 999;
  }
  .nav-links.show {
    max-height: 500px;
    opacity: 1;
    border-top: 2px solid rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    transform: translateY(0);
  }
  .main-navbar.scrolled .nav-links {
    background-color: var(--default-white);
  }
  .nav-links a {
    padding: 1rem;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-links a:hover:after,
  .nav-links a:focus:after,
  .nav-links a.active:after {
    transform: scaleX(0);
    opacity: 0;
  }
}
.footer__1 {
  background-color: var(--soft-sky);
}
.footer-sections {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.footer-section {
  min-width: 220px;
}
@media (max-width: 814px) {
  .footer-section {
    flex: 1 1 100%;
  }
}
.footer-section h3 {
  font-family:
    Fira Sans,
    sans-serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.4rem);
  margin-bottom: 0.8rem;
  border-bottom: 2px solid var(--dark-teal);
  color: var(--dark-teal);
  transition: 0.3s ease-in-out;
}
.footer-section a {
  color: var(--default-black);
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease-in-out;
}
.footer-section a:hover {
  color: var(--dark-teal);
  transform: translateY(-1px);
}
.footer-section p {
  font-family: Livvic, sans-serif;
}
.footer__2 {
  background-color: var(--dark-teal);
  padding: 1rem 0;
}
.footer__2 p {
  color: var(--white);
  text-align: center;
}
.footer__2 p em {
  color: var(--sky-cyan);
}
.footer__2 p a {
  color: var(--sky-cyan);
  font-style: italic;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease-in-out;
}
.footer__2 a:hover {
  transform: translateY(-1px);
}
.video-banner {
  position: relative;
  width: 100vw;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  transition: aspect-ratio 0.3s ease-in-out;
}
.video-background {
  background: linear-gradient(135deg, var(--teal), var(--black));
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
.video-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding-top: clamp(2rem, 30vh, 30%);
  background: #0000004d;
  transition: padding-top 0.3s ease-in-out;
}
.video-overlay h1 {
  font-size: clamp(2rem, 6vw, 6rem);
  background: linear-gradient(
    270deg,
    var(--dark-teal),
    var(--soft-sky),
    var(--dark-teal)
  );
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  animation:
    gradientMove 5s ease-in-out infinite,
    fadeUp 1.2s ease-out forwards;
  transition: all 0.3s ease-in-out;
  will-change: transform, opacity;
}
@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  to {
    background-position: 0% center;
  }
}
.video-overlay p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  padding: 0 0.5rem;
  background: linear-gradient(
    90deg,
    var(--white),
    var(--dark-teal),
    var(--white)
  );
  background-size: 300% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    scrollGradient 8s linear infinite,
    fadeUp 1.2s ease-out forwards;
  text-shadow: none;
  transition: all 0.3s ease-in-out;
  will-change: transform, opacity;
}
@keyframes scrollGradient {
  0% {
    background-position: 0% center;
  }
  to {
    background-position: 300% center;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-aspect-ratio: 4/3) {
  .video-banner {
    aspect-ratio: 21 / 9;
  }
}
@media (max-aspect-ratio: 4/3) {
  .video-banner {
    aspect-ratio: 16 / 9;
  }
}
@supports not (aspect-ratio: 1) {
  .video-banner {
    height: auto;
    padding-bottom: 56.25%;
  }
  .video-background,
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
}
.video-spinner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1119;
}
.video-spinner {
  width: 3rem;
  height: 3rem;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-top: 5px solid var(--soft-sky);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.about-heading {
  text-align: center;
  font-size: clamp(3rem, 5vw, 5rem);
  padding-top: clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(
    40deg,
    var(--muted-green) 0%,
    var(--muted-green) 40%,
    var(--dark-teal) 60%,
    var(--dark-teal) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}
.about-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  justify-items: center;
  gap: 2rem;
  padding: 2rem 0;
  width: 100%;
  transition: 0.3s ease-in-out;
}
.about-image {
  width: 100%;
  max-width: 480px;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px #0003;
  transition:
    box-shadow 0.4s ease-in-out,
    transform 0.4s ease-in-out;
}
.about-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px #0000004d;
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
  will-change: transform;
  filter: brightness(1);
  transition: filter 0.3s ease-in-out;
}
.about-image:hover img {
  filter: brightness(1.05);
}
.about-content {
  width: 100%;
  color: var(--default-black);
}
.about-content li {
  list-style: none;
}
@media (max-width: 868px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}
.services-heading {
  text-align: center;
  font-size: clamp(3rem, 5vw, 5rem);
  padding-top: clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(
    40deg,
    var(--dark-teal) 0%,
    var(--dark-teal) 40%,
    var(--muted-green) 60%,
    var(--muted-green) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  padding: 2rem 0;
  justify-items: center;
  transition: 0.3s ease-in-out;
}
.service-card {
  background-color: var(--muted-green);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 10px #00000026;
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px #00000040;
}
.service-card img {
  width: 100%;
  border-radius: 4px;
  height: auto;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.4rem);
  color: var(--light-gold);
  font-family:
    Fira Sans,
    sans-serif;
  font-weight: 400;
}
.service-card p {
  color: var(--white);
  font-family: Livvic, sans-serif;
  margin-top: 6px;
}
.gallery-heading {
  text-align: center;
  font-size: clamp(3rem, 5vw, 5rem);
  padding-top: clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(
    40deg,
    var(--muted-green) 0%,
    var(--muted-green) 40%,
    var(--dark-teal) 60%,
    var(--dark-teal) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}
.gallery-track {
  display: flex;
  gap: 0.5rem;
  animation: scroll 162s linear infinite;
  width: max-content;
}
.gallery-track:hover {
  animation-play-state: paused;
}
.gallery-item {
  flex-shrink: 0;
  cursor: pointer;
}
.gallery-image {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  box-shadow: 0 2px 6px #0003;
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}
.gallery-image:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 6px 16px #0000004d;
}
.modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0a0a0ae6;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-media {
  max-height: calc(80vh - 90px);
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 30px #fff3;
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.5s ease-in-out,
    transform 0.5s ease-in-out;
}
.modal-media.hidden {
  opacity: 0;
  transform: scale(0.97);
}
.modal-close {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  background: #fff6;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.modal-close:hover {
  background: var(--white);
  color: var(--default-black);
}
.modal-prev,
.modal-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: #fff6;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.modal-prev {
  left: 1rem;
}
.modal-next {
  right: 1rem;
}
.modal-prev:hover,
.modal-next:hover {
  background: var(--white);
  color: var(--default-black);
}
.thumbnail-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  z-index: 1003;
}
.thumb-wrapper {
  flex: 0 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: transform 0.3s ease-in-out;
}
.thumb-wrapper.active,
.thumb-wrapper:hover {
  opacity: 1;
  border-color: var(--white);
  transform: translateY(-5px) scale(1.02);
}
.thumbnail-img {
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.testimonial-heading {
  text-align: center;
  font-size: clamp(3rem, 5vw, 5rem);
  padding-top: clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(
    40deg,
    var(--dark-teal) 0%,
    var(--dark-teal) 40%,
    var(--muted-green) 60%,
    var(--muted-green) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}
.horizontal-scroll-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 2rem 0;
}
.testimonial-track {
  display: flex;
  gap: 0.5rem;
  animation: scroll 90s linear infinite;
  width: max-content;
}
.testimonial-track:hover {
  animation-play-state: paused;
}
.testimonial-track.paused {
  animation-play-state: paused !important;
}
@keyframes scroll {
  0% {
    transform: translate(0);
  }
  to {
    transform: translate(-50%);
  }
}
.testimonial-box {
  width: 300px;
  height: 200px;
  background: var(--muted-green);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 6px #0003;
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}
.testimonial-box:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 6px 16px #0000004d;
}
.testimonial-message {
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
}
.testimonial-name {
  font-weight: 400;
  color: var(--light-gold);
}
.testimonial-role {
  font-size: 0.9rem;
  color: var(--white);
}
.tour-packages-section {
  background-color: var(--soft-sky);
}
.tour-heading {
  text-align: center;
  font-size: clamp(3rem, 5vw, 5rem);
  padding-top: clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(
    40deg,
    var(--dark-teal) 0%,
    var(--dark-teal) 40%,
    var(--deep-violet) 60%,
    var(--deep-violet) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  padding: 2rem 0;
  justify-items: center;
  transition: 0.3s ease-in-out;
}
.tour-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 10px #00000026;
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px #00000040;
}
.tour-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.tour-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.4rem);
  color: var(--deep-violet);
  font-family:
    Fira Sans,
    sans-serif;
  font-weight: 400;
}
.tour-card p {
  color: var(--default-black);
  font-family: Livvic, sans-serif;
  margin-top: 6px;
}
.tour-includes {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--deep-violet);
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.tour-includes span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  flex-wrap: wrap;
  transition: 0.3s ease-in-out;
}
.view-details-btn {
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--soft-sky), var(--dark-teal));
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family:
    Fira Sans,
    sans-serif;
  cursor: pointer;
  font-size: 1.05rem;
  box-shadow: 0 4px 8px #0003;
  transition:
    background 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}
.view-details-btn:hover {
  background: linear-gradient(135deg, var(--teal), var(--dark-teal));
  box-shadow: 0 6px 12px #0000004d;
  transform: translateY(-2px);
}
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: opacity, transform;
}
[data-animate].visible {
  opacity: 1;
  transform: none;
}
[data-animate="fade-up"] {
  transform: translateY(40px);
}
[data-animate="fade-down"] {
  transform: translateY(-40px);
}
[data-animate="fade-left"] {
  transform: translate(-40px);
}
[data-animate="fade-right"] {
  transform: translate(40px);
}
[data-animate="zoom-in"] {
  transform: scale(0.9);
}
[data-animate="flip-in"] {
  transform: rotateX(90deg);
  transform-origin: top center;
}
[data-animate="fade-up"].visible,
[data-animate="fade-down"].visible,
[data-animate="fade-left"].visible,
[data-animate="fade-right"].visible,
[data-animate="zoom-in"].visible,
[data-animate="flip-in"].visible {
  opacity: 1;
  transform: none;
}
[data-delay] {
  transition-delay: var(--delay, 0s);
}
.why-choose-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  padding: 2rem 0;
  align-items: center;
  justify-items: center;
  transition: 0.3s ease-in-out;
}
.why-heading {
  font-size: clamp(3rem, 5vw, 5rem);
  background: linear-gradient(
    40deg,
    var(--muted-green) 0%,
    var(--muted-green) 40%,
    var(--dark-teal) 60%,
    var(--dark-teal) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  padding-bottom: 1.5rem;
  transition: 0.3s ease-in-out;
}
.why-list {
  list-style: none;
  padding-top: 1rem;
}
.why-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}
.why-list li:before {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%2308778b' viewBox='0 0 512 512'><path d='M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-277.02 97.941l184-184c4.686-4.686 4.686-12.284 0-16.971l-28.284-28.284c-4.686-4.686-12.284-4.686-16.971 0L216 284.117l-70.745-70.745c-4.686-4.686-12.284-4.686-16.971 0l-28.284 28.284c-4.686 4.686-4.686 12.284 0 16.971l104 104c4.686 4.686 12.284 4.686 16.97.001z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
.why-image {
  width: 100%;
  max-width: 480px;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px #0003;
  transition:
    box-shadow 0.4s ease-in-out,
    transform 0.4s ease-in-out;
}
.why-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px #0000004d;
}
.why-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
  will-change: transform;
  filter: brightness(1);
  transition: filter 0.3s ease-in-out;
}
.why-image:hover img {
  filter: brightness(1.05);
}
@media (max-width: 868px) {
  .why-choose-wrapper {
    grid-template-columns: 1fr;
  }
  .why-heading {
    text-align: center;
  }
}
.contact-form-section {
  padding: 2rem 1rem;
  background-color: var(--white);
  text-align: center;
}
.contact-heading {
  font-size: 2.2rem;
  color: var(--dark-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  padding-bottom: 1.5rem;
  transition: 0.3s ease-in-out;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid var(--dark-teal);
  border-radius: 6px;
  font-family: Livvic, sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  transition:
    border-color 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--dark-teal);
  box-shadow: 0 0 0 3px #08778b1a;
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-form button {
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, var(--teal), var(--dark-teal));
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family:
    Fira Sans,
    sans-serif;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  box-shadow: 0 4px 8px #0003;
  transition:
    background 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}
.contact-form button:hover {
  background: linear-gradient(135deg, var(--teal), var(--teal));
  box-shadow: 0 6px 12px #0000004d;
  transform: translateY(-2px);
}
.contact-form button:disabled {
  background: linear-gradient(135deg, var(--dark-teal), var(--dark-teal));
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.success-message,
.error-message {
  margin-top: 1rem;
  font-family: Livvic, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  animation: fadeIn 0.3s ease-in-out;
}
.success-message {
  color: var(--green);
}
.error-message {
  color: var(--vibrant-red);
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.map-section {
  padding: 2rem 1rem;
  background-color: var(--white);
  text-align: center;
}
.map-heading {
  font-size: 2.2rem;
  color: var(--muted-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  padding-bottom: 1.5rem;
  transition: 0.3s ease-in-out;
}
.map-container {
  width: 100%;
  max-width: 1000px;
  height: 480px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px #0000001f;
  transition: 0.3s ease-in-out;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 600px) {
  .map-container {
    height: 400px;
  }
}
.contact-us-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  padding: 2rem 0;
  align-items: center;
  justify-items: center;
  transition: 0.3s ease-in-out;
}
.contact-us-wrapper2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  padding: 2rem 0;
  transition: 0.3s ease-in-out;
}
.contact-us-heading {
  font-size: clamp(3rem, 5vw, 5rem);
  background: linear-gradient(
    40deg,
    var(--dark-teal) 0%,
    var(--dark-teal) 40%,
    var(--muted-green) 60%,
    var(--muted-green) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  padding-bottom: 1.5rem;
  transition: 0.3s ease-in-out;
}
.contact-us-list {
  list-style: none;
  padding-top: 1rem;
}
.contact-us-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}
.contact-us-list li:before {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%2308778b' viewBox='0 0 512 512'><path d='M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-277.02 97.941l184-184c4.686-4.686 4.686-12.284 0-16.971l-28.284-28.284c-4.686-4.686-12.284-4.686-16.971 0L216 284.117l-70.745-70.745c-4.686-4.686-12.284-4.686-16.971 0l-28.284 28.284c-4.686 4.686-4.686 12.284 0 16.971l104 104c4.686 4.686 12.284 4.686 16.97.001z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
.contact-us-list li a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.contact-us-list li a:hover {
  color: var(--dark-teal);
  transform: translateY(-1px);
}
.contact-us-image {
  width: 100%;
  max-width: 480px;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px #0003;
  transition:
    box-shadow 0.4s ease-in-out,
    transform 0.4s ease-in-out;
}
.contact-us-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px #0000004d;
}
.contact-us-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
  will-change: transform;
  filter: brightness(1);
  transition: filter 0.3s ease-in-out;
}
.contact-us-image:hover img {
  filter: brightness(1.05);
}
@media (max-width: 868px) {
  .contact-us-wrapper,
  .contact-us-wrapper2 {
    grid-template-columns: 1fr;
  }
  .contact-us-heading {
    text-align: center;
  }
}
.crying-emoji {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--soft-sky), var(--dark-teal));
  border-radius: 50%;
  position: relative;
  margin: 10px auto;
  box-shadow:
    0 10px 20px #00000080,
    inset -3px -3px 6px #ffffff14,
    inset 3px 3px 6px #0006;
  animation: shake 0.8s infinite;
}
@keyframes shake {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(1deg);
  }
  50% {
    transform: rotate(-1deg);
  }
  75% {
    transform: rotate(0.5deg);
  }
  to {
    transform: rotate(0);
  }
}
.eyes {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 0 20px;
}
.eye-wrapper {
  position: relative;
}
.eye {
  width: 12px;
  height: 20px;
  background: var(--default-black);
  border-radius: 50%;
}
.mouth {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%);
  width: 40px;
  height: 30px;
  border-top: 4px solid var(--default-black);
  border-radius: 50px 50px 0 0;
  background: transparent;
}
.tear {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 6px;
  height: 10px;
  background: var(--default-black);
  border-radius: 50%;
  opacity: 0.8;
  animation: fall 1.5s infinite ease-in;
}
.left-tear {
  animation-delay: 0s;
}
.right-tear {
  animation-delay: 0.3s;
}
@keyframes fall {
  0% {
    transform: translate(-50%) translateY(0);
    opacity: 0.9;
  }
  50% {
    opacity: 0.7;
  }
  to {
    transform: translate(-50%) translateY(25px);
    opacity: 0;
  }
}
.error-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 1.5rem;
}
.error-page h1,
.error-page p {
  color: var(--default-black) !important;
}
.error-page button {
  font-family:
    Fira Sans,
    sans-serif;
  font-size: 1.05rem;
  color: var(--white) !important;
  background: linear-gradient(
    135deg,
    var(--soft-sky),
    var(--dark-teal)
  ) !important;
  box-shadow: 0 4px 8px #0003 !important;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}
.error-page button:hover {
  background: linear-gradient(135deg, var(--teal), var(--dark-teal)) !important;
  box-shadow: 0 6px 12px #0000004d !important;
  transform: translateY(-2px);
}
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
  box-shadow: 0 4px 10px #00000040;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.whatsapp-fab:hover {
  transform: translateY(0) scale(1.08);
}
.scroll-top-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--teal);
  color: var(--white);
  font-size: 22px;
  border: none;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
  box-shadow: 0 4px 10px #00000040;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.scroll-top-fab:hover {
  transform: translateY(0) scale(1.08);
}
.fab-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fab-hidden,
.fab-near-bottom {
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* {
  -webkit-tap-highlight-color: transparent;
}
:root {
  --default-black: #131824;
  --pixel-black: #1a1a1a;
  --black: #000000;
  --moon: #c2d6e1;
  --dark-moon: #8892b0;
  --default-white: #f2f7fe;
  --white-drift: #f9f9f9;
  --white: #ffffff;
  --haldi-gold: #ffcd33;
  --light-gold: #fff4a3;
  --byte-blue: #006cff;
  --dark-blue: #003366;
  --sky-cyan: #66fcf1;
  --zinc: #f3f4f6;
  --green: #25d366;
  --garnet-red: #9b111e;
  --vibrant-red: #d72638;
  --muted-green: #778f21;
  --dark-teal: #08778b;
  --teal: #005867;
  --soft-sky: #a8dbec;
  --deep-violet: #54258b;
  --dark-violet: #3e0085;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.5;
  color: var(--default-black);
  background-color: var(--default-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::-webkit-scrollbar {
  width: 0.4rem;
  height: 0.4rem;
}
::-webkit-scrollbar-thumb {
  background: var(--dark-teal);
}
::-webkit-scrollbar-track {
  background: transparent;
}
.roboto {
  font-family:
    Roboto Condensed,
    sans-serif;
}
.fira-sans {
  font-family:
    Fira Sans,
    sans-serif;
}
.merienda {
  font-family: Merienda, cursive;
}
.bad-script {
  font-family:
    Bad Script,
    cursive;
}
.calligraffitti {
  font-family: Calligraffitti, cursive;
}
.handlee {
  font-family: Handlee, cursive;
}
.marck-script {
  font-family:
    Marck Script,
    cursive;
}
.livvic {
  font-family: Livvic, sans-serif;
}
.protest-revolution {
  font-family:
    Protest Revolution,
    cursive;
}
.flex-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
h1,
h2,
h3,
h4 {
  font-weight: 600;
  color: var(--default-black);
}
p,
button {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
}
strong {
  font-weight: 600;
  font-style: italic;
}

/* ── Promo Popup ── */
.promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  animation: fadeIn 0.3s ease-in-out;
}

.promo-modal {
  position: relative;
  width: auto;
  max-width: 500px;
  max-height: 95vh;
  background: transparent;
  border-radius: 12px;
  overflow: visible;
  box-shadow: none;
  animation: popIn 0.35s ease-out;
}

@keyframes popIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.promo-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.promo-content {
  display: none;
}

.promo-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #ff3b30;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.promo-close:hover {
  transform: scale(1.08);
  background: #e62e24;
}

@media (max-width: 768px) {
  .promo-modal {
    max-width: 92vw;
  }

  .promo-image {
    max-height: 85vh;
  }

  .promo-close {
    width: 36px;
    height: 36px;
    top: -10px;
    right: -10px;
  }
}
