@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  padding-top: 80px; 
}

/* NAVBAR */
header {
  background: #748DA4;
  color: #F3EAD6;
  height: 80px;              /* control overall thickness */
  padding: 0 50px;           /* remove top/bottom padding */
  display: flex;
  align-items: center;
   position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  transition: 0.3s;
}
header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.nav-container {
  display: flex;
  align-items: center;
  width: 100%;              /* IMPORTANT */
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px; /* space between icon & text */
}

/* Shape logo (02) */
.logo-icon {
  height: 60px;
  width: auto;
}

/* Text logo (01) */
.logo-text {
  height: 230px;
  width: auto;
}

nav {
  margin-left: auto;        /* THIS pushes it to the far right */
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 400; /* SemiBold */
  font-size: 14px;
  color: #F3EAD6;
  text-decoration: none;
  position: relative;   /* IMPORTANT */
}

/* underline */
nav a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -1px;         /* space below text */
  width: 0%;
  height: 2px;
  background: #DCA782;
  transition: 0.3s ease;
  left: 50%;
  transform: translateX(-50%);
}

/* ACTIVE LINK */
nav a.active::after {
  width: 100%;
}

/* hover effect */
nav a:not(.btn):hover::after {
  width: 100%;
}
/* DROPDOWN */
.dropdown {
  position: relative;
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-icon {
  font-size: 18px;
  transition: 0.3s ease;
}

/* rotate when hover */
.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}
/* DROPDOWN BOX */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;                 /* perfectly below nav item */
  left: 0;
  background: #E2E5DE;
  min-width: 180px;
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  z-index: 1200;
}

/* DROPDOWN ITEMS */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #748DA4;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

/* HOVER EFFECT */
.dropdown-menu a:hover {
  background: #F3EAD6;
}

.dropdown.active .dropdown-menu {
  display: block;
}
/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 28px;
  margin-left: auto;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  body {
    line-height: 1.6;
    padding-top: 80px;   /* same as header height */
  }

  header {
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    box-sizing: border-box;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 2100;
    margin-left: auto;
    font-size: 28px;
    cursor: pointer;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 900;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .logo-icon {
    height: 42px;
    width: auto;
  }

  .logo-text {
    height: 200px;
    width: auto;
  }

  nav {
    position: fixed;
    top: 80px;          /* place menu below fixed header */
    right: 0;
    width: 40%;
    background: #6f8796;
    padding: 30px 0;
    border-bottom-left-radius: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0s linear 0.35s;
  }

  nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0s linear 0s;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    list-style: none;
  }

  nav li {
    width: 100%;
    text-align: center;
  }

  nav > ul > li > a {
    display: inline-block;
    width: auto;
    text-align: center;
    font-size: 14px;
    position: relative;
  }

  nav > ul > li > a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #DCA782;
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.3s ease;
  }

  nav > ul > li > a:not(.btn):hover::after {
    transform: scaleX(1);
  }

  .nav-btn {
    display: flex;
    justify-content: center;
    margin-top: 8px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 12px 24px;
    margin: 0;
    white-space: nowrap;
    text-align: center;
  }

  .btn::after {
    display: none;
  }

  .dropdown {
    text-align: center;
  }

  .dropdown > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
  }

  .dropdown-menu {
    display: none;
    width: 100%;
    position: static;
    margin-top: 8px;
    padding: 4px 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu li {
    margin-top: 6px;
  }

  .dropdown-menu a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    color: white;
    text-align: left;
    position: relative;
    border-radius: 10px;
    transition: background 0.25s ease, transform 0.25s ease;
    overflow: hidden;
  }

  .dropdown-menu a::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 50%;
    background: #d6c2a1;
    border-radius: 3px;
    transition: width 0.25s ease;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:active,
  .dropdown-menu a:focus {
    background: rgba(255, 255, 255, 0.28);
    transform: translateX(4px);
  }

  .dropdown-menu a:hover::before,
  .dropdown-menu a:active::before,
  .dropdown-menu a:focus::before {
    width: 4px;
  }
}

/* BUTTON */
.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600; /* SemiBold */
  font-size: 14px;
  margin-left: 20px;
  background: #E2E5DE;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: #748DA4;
  transition: 0.3s ease;   /* smooth transition */
}

.btn:hover {
  background: #DCA782;    
  color: #F3EAD6;           
}
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.whatsapp-float i {
  line-height: 1;
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 18px;
    font-size: 28px;
  }
}
/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 80px); /* minus header height */
  background-image: url("images/Home page/hero.jpeg");
  background-size: cover;
  background-position: center 70%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
}

.hero-content {
  position: absolute;
  top: 60%;
  left: 48px;
  transform: translateY(-50%);
  max-width: 1100px;
  z-index: 2;
  color: #f6efe5;
}

.hero-content h1 {
  font-family: "Castoro", serif;
  font-style: italic;
  font-size: 48px;
  font-weight: 20;
  line-height: 1.2;
  letter-spacing: 0.3px;
  color: #F3EAD6;
}

.hero-content p {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  max-width: 790px;
  color: #E2E5DE;
  padding: 20px 0px;
  margin-bottom: 26px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 12px 30px;
  border-radius: 999px;
  background: #E2E5DE;
  color: #748DA4;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: all 0.28s ease;
}

/* ⭐ hover */
.hero-btn:hover {
  background: #748DA4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}
.hero-top-right {
  position: absolute;
  top: 100px;
  right: 22px;
  z-index: 3;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.lang-label {
  color: rgba(255, 255, 255, 0.75);
  transition: 0.25s ease;
  user-select: none;
}

.lang-label.active {
  color: #F3EAD6;
  font-weight: 600;
}

.switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 18px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background-color: #C2C3A8;
  border-radius: 999px;
  transition: 0.3s ease;
}

.slider::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  transition: 0.3s ease;
}

.switch input:checked + .slider {
  background-color: #C2C3A8;
}

.switch input:checked + .slider::before {
  transform: translateX(16px);
}

.switch:hover .slider {
  background-color:  #C2C3A8;
}
/* mobile */
@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 80px);
    background-position: 55% center;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.18);
  }

  .hero-content {
    top: 250px;
    bottom: 72px;
    left: 20px;
    right: 20px;
    transform: none;
    max-width: 320px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: 0;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 13px;
    line-height: 1.45;
    max-width: 350px;
    padding: 0;
    margin-bottom: 18px;
  }

  .hero-btn {
    min-width: 122px;
    padding: 11px 24px;
    font-size: 14px;
  }

  .hero-top-right {
    top: 14px;
    right: 16px;
  }

  .language-switch {
    font-size: 11px;
    gap: 4px;
  }

  .switch {
    width: 30px;
    height: 16px;
  }

  .slider::before {
    width: 12px;
    height: 12px;
  }

  .switch input:checked + .slider::before {
    transform: translateX(14px);
  }
  .hero-top-right {
  position: fixed;
  margin-top: 16px;/* IMPORTANT */       /* adjust based on navbar height */
  right: 65px;
  z-index: 20000;       /* higher than nav */
}

}


/* ABOUT */
.about-centre {
  background: #FFFFFF;
  padding: 90px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-centre-text {
  flex: 1;
  max-width: 700px;
}

.about-centre-text h2 {
  font-family: "Castoro", serif;
  font-style: normal;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
  color: #d6a079;
  margin-bottom: 20px;
}

.about-centre-text p {
  font-family: "Lora", serif;
  font-weight: 400;      /* regular */
  font-size: 18px;
  line-height: 1.8;
  color: #8e9caf;
  text-align: justify;
}

.about-centre-image-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-centre-image {
  width: 100%;
  height: 100%;
  max-width: 550px;
  margin-left: 50px;
  display: block;
  object-fit: cover;
}
/* INITIAL STATE (hidden) */
.about-centre-text {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s ease;
}

/* WHEN VISIBLE */
.about-centre-text.show {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .about-centre {
    flex-direction: column;
    padding: 60px 50px;
    gap: 40px;
    text-align: center;
  }

  .about-centre-text {
    max-width: 100%;
  }

  .about-centre-text h2 {
    font-size: 24px;
  }

  .about-centre-text p {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-centre-image {
    max-width: 320px;
  }
}

/* VISION */
.vision-section {
  position: relative;
  width: 100%;
  min-height: 700px;
  background: url("images/Home page/Vision.jpg") center center/cover no-repeat;
  background-position: center 43%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.vision-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.08) 20%,
    rgba(0, 0, 0, 0.2) 45%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.vision-content {
  margin-top: 80px;
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin-right: 90px;
  color: #f5efe6;
}

.vision-content h2 {
  font-family: "Castoro", serif;
  font-style: normal;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F3EAD6;
}

.vision-content p {
  font-family: "Lora", serif;
  font-weight: 400;      /* regular */
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 30px;
  color: #E2E5DE;
}

.vision-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 12px 30px;
  border-radius: 999px;
  background: #E2E5DE;
  color: #748DA4;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: all 0.28s ease;
}

.vision-btn:hover {
  background: #748DA4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);

}

/* INITIAL STATE */
.vision-content {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s ease;
}

/* WHEN VISIBLE */
.vision-content.show {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .vision-section {
    min-height: 700px;
    justify-content: center;
    padding: 10px 50px;
    background-position: center;
  }

  .vision-overlay {
    background: rgba(0, 0, 0, 0.4);
  }

  .vision-content {
    max-width: 100%;
	margin-bottom: 400px;
    margin-right: 0;
    text-align: left;
  }

  .vision-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .vision-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .vision-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* HOME SERVICES */
.home-services {
  padding: 90px 50px 80px;
  background: #f7f7f5;
}

.home-services-title {
  text-align: center;
  font-family: "Castoro", serif;
  font-size: 42px;
  font-weight: 400;
  color: #748DA4;
  margin-bottom: 50px;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1400px;
  padding: 0 22px;
  margin: 0 auto;
}

.home-service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease;
}

.home-service-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 18px;
}

.home-service-image-wrap img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.home-plus-icon {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border: 3px solid rgba(255, 245, 230, 0.9);
  border-radius: 50%;
  color: rgba(255, 245, 230, 0.95);
  font-size: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  transition: all 0.35s ease;
}

.home-service-card h3 {
  font-family: "Castoro", serif;
  font-size: 42px;
  font-weight: 400;
  color: #C2C3A8;
  margin-bottom: 14px;
}

.home-service-card p {
  font-family: "Lora", serif;
  font-size: 18px;
  line-height: 1.7;
  color: #748DA4;
  text-align: justify;
}

.home-service-card:hover {
  transform: translateY(-8px);
}

.home-service-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.92);
}

.home-service-card:hover .home-plus-icon {
  transform: rotate(90deg);
}

@media (max-width: 992px) {
  .home-services-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .home-service-image-wrap img {
    height: 500px;
  }
}
/* TESTIMONIALS */
.testimonials {
  background: #F3EAD6;
  padding: 90px 20px;
  text-align: center;
  overflow: hidden;
}

.testimonial-title {
  font-family: "Castoro", serif;
  font-style: normal;
  font-size: 42px;
  font-weight: 400;
  color: #DCA782;
  margin-bottom: 38px;
}

.testimonial-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 760px;
  max-width: 760px;
  width: 760px;
  background: #FFFFFF;
  border-radius: 18px;
  padding: 42px 60px 34px;
  text-align: center;
  box-sizing: border-box;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 18px;
}

.testimonial-text {
  max-width: 620px;
  height: 145px;
  margin: 0 auto 18px;
  overflow-y: auto;
  font-family: "Lora", serif;
  font-size: 14px;
  line-height: 1.7;
  color: #21272A;
  padding-right: 6px;
}

.testimonial-text::-webkit-scrollbar {
  width: 4px;
}

.testimonial-text::-webkit-scrollbar-thumb {
  background: rgba(220, 167, 130, 0.45);
  border-radius: 10px;
}

.testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #C2C3A8;
  margin: 0 0 4px;
}

.testimonial-role {
  display: block;
  font-family: "Lora", serif;
  font-size: 16px;
  color: #748DA4;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #DCA782;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  line-height: 1;
  width: 30px;
  height: 30px;
}

.testimonial-prev {
  left: 8px;
}

.testimonial-next {
  right: 8px;
}

.testimonial-arrow:hover {
  opacity: 0.7;
}

@media (max-width: 992px) {
  .testimonial-slider {
    max-width: 760px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 12px;
  }

  .testimonial-title {
    font-size: 30px;
    margin-bottom: 22px;
    line-height: 1.2;
  }

  .testimonial-slider {
    max-width: 100%;
	 padding: 0 8px;
    overflow: hidden;
  }

  .testimonial-track {
    gap: 12px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding: 28px 18px 24px;
    border-radius: 20px;
  }

  .avatar {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }

  .testimonial-text {
    max-width: 80%;
    height: auto;
    min-height: 100px;
    overflow-y: visible;
    font-size: 14px;
    line-height: 1.8;
    padding-right: 0;
    word-break: break-word;
  }

  .testimonial-name {
    font-size: 20px;
    line-height: 1.3;
  }

  .testimonial-role {
    font-size: 14px;
    line-height: 1.5;
  }

  .testimonial-arrow {
    font-size: 18px;
    width: 22px;
    height: 22px;
    top: 50%;
  }

  .testimonial-prev {
    left: -2px;
  }

  .testimonial-next {
    right: -2px;
  }
}
/* FOOTER */
.site-footer {
  background: #748DA4;
  color: #F3EAD6;
  padding: 50px 60px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #F3EAD6;
  border-bottom: 1px solid #F3EAD6;
  padding: 30px 0;
}

/* LEFT */
.footer-logo {
  width: 220px;
  margin-top: -100px;
  margin-bottom: -60px;
  display: flex;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #F3EAD6;
  text-decoration: none;
  font-size: 16px;
  position: relative;      /* ⭐ important for underline */
  display: inline-block;   /* ⭐ important */
  transition: 0.3s;
}

/* underline */
.footer-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #DCA782;
  transition: 0.3s ease;
}

/* hover */
.footer-menu a:hover::after {
  width: 100%;
}

/* optional remove opacity hover */
.footer-menu a:hover {
  opacity: 1;
}
.footer-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600; /* SemiBold */
  font-size: 16px;
  display: inline-block;
  padding: 10px 20px;
  background: #E2E5DE;
  color: #748DA4;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-btn:hover {
  background: #DCA782;    
  color: #F3EAD6;   
}

/* MIDDLE */
.footer-middle {
 margin-left: 80px;
}
.footer-middle p {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-info i {
  font-size: 16px;
  color: #E2E5DE;
  margin-top: 3px;
  opacity: 0.9;
}
.footer-info a {
  color: #F3EAD6;
  text-decoration: none;
  transition: 0.3s;
}

.footer-info a:hover {
  color: #DCA782;
}

/* RIGHT */
.footer-right{
 margin-right: 80px;
 margin-left: 0;
}
.follow-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.social-icons a {
  color: #E2E5DE;
  margin-right: 12px;
  font-size: 20px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #DCA782;
}

/* BOTTOM */
.footer-bottom {
  text-align: left;
  font-family: "Lora", serif;
  font-weight: 400;      /* regular */
  font-size: 14px;
  margin-top: 18px;
}

.footer-hours {
  display: flex;
  flex-direction: column;
}

.footer-time {
  font-weight: 600;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 30px 14px 16px;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 24px 0 26px;
  }

  /* LEFT */
  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
	margin-top: 10px;
	margin-bottom: 0px;
  }

  .footer-logo-link {
    display: flex;
    justify-content: center;
  }

  .footer-logo {
    width: 250px;
    margin-top: -90px;
    margin-bottom: -70px;
    display: block;
  }

  .footer-menu {
    margin: 0 0 18px;
  }

  .footer-menu li {
    margin-bottom: 8px;
  }

  .footer-menu a {
    font-size: 16px;
    font-weight: 600;
  }

  .footer-btn {
    font-size: 16px;
    padding: 10px 26px;
    border-radius: 999px;
  }

  /* MIDDLE */
  .footer-middle {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-info {
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
	margin-left: -15px;
    font-size: 16px;
    text-align: left;
  }

  .footer-info i {
    font-size: 18px;
    margin-top: 8px;
    min-width: 16px;
  }

  .footer-info span,
  .footer-info a {
    font-size: 16px;
    line-height: 2;
  }

  .footer-info:last-child span {
    font-size: 20px;
    font-weight: 600;
	margin-top: 5px;
    line-height: 0.8;
  }

  .footer-info:last-child strong {
    display: block;
    font-size: 20px;
    font-weight: 600;
  }
	
.footer-hours {
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 0.8;
}

  /* RIGHT */
  .footer-right {
    margin-right: 0;
    margin-left: 0;
    text-align: center;
  }

  .follow-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
  }

  .social-icons a {
    margin-right: 0;
    font-size: 24px;
  }

  /* BOTTOM */
  .footer-bottom {
    text-align: center;
    font-size: 13px;
    margin-top: 14px;
    line-height: 1.5;
  }
}


/* ABOUT */
.hero-special-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
}

.hero-special-content {
  position: absolute;
  top: 80%;
  left: 48px;
  transform: translateY(-50%);
  max-width: 1100px;
  z-index: 2;
  color: #f6efe5;
}

.hero-special-content  h1 {
  font-family: "Castoro", serif;
  font-style: italic;
  font-size: 48px;
  font-weight: 20;
  line-height: 1.2;
  letter-spacing: 0.3px;
  color: #F3EAD6;
}

@media (max-width: 768px) {
  .hero-special {
    min-height: calc(60vh - 40px);
    background-position: 55% center;
  }

  .hero-special-overlay {
    background: rgba(0, 0, 0, 0.18);
  }

  .hero-special-content {
    top: 350px;
    bottom: 72px;
    left: 20px;
    right: 20px;
    transform: none;
    max-width: 320px;
  }

  .hero-special-content h1 {
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: 0;
    margin-bottom: 10px;
  }
}
/* STORY */
.about-story {
  display: flex;
  align-items: stretch;
  background: #FFFFFF;
  min-height: 650px;
  overflow: hidden;
}

.about-story-gallery {
  width: 45%;
  height: 650px;
  overflow: hidden;
  position: relative;
  background: #FFFFFF;
}

.gallery {
  display: flex;
  gap: 12px;
  height: 100%;
  padding: 0 0 0 0;
}

.gallery-line {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: slideUp 18s linear infinite;
}

.gallery-line.reverse {
  animation-direction: reverse;
}

.gallery-line img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.gallery-line img:nth-child(3n) {
  height: 260px;
}

.gallery-line img:nth-child(2n) {
  height: 180px;
}

.about-story-text {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 90px;
  margin-left: 90px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.about-story.show .about-story-text {
  opacity: 1;
  transform: translateY(0);
}

.about-story-text h2 {
  font-family: "Castoro", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
  color: #DCA782;
  margin-bottom: 24px;
}

.about-story-text p {
  max-width: 520px;
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #748DA4;
  text-align: justify;
  margin: 0;
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.about-story-gallery::before,
.about-story-gallery::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 2;
  pointer-events: none;
}

.about-story-gallery::before {
  top: 0;
}

.about-story-gallery::after {
  bottom: 0;
}

@media (max-width: 768px) {
  .about-story {
    flex-direction: column;
	padding: 0px;
    text-align: left;
    margin-left: -80px;
  }

  .about-story-text {
    width: 80%;
	padding: 40px 35px;
  }

  .about-story-text h2 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .about-story-text p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.7;
  }

  .about-story-gallery {
    width: 100%;
    order: 2;
    height: 375px; /* taller so 2 rows can show */
    overflow: hidden;
    background: #f7f7f5;
  }

  .gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
  }

  .gallery-line {
    display: flex;
    flex-direction: row;
    gap: 10px;
    animation: slideHorizontal 18s linear infinite;
  }

  .gallery-line.reverse {
    animation-direction: reverse;
  }

  .gallery-line img {
    width: 180px !important;
    height: 180px !important;
    min-height: 110px !important;
    max-height: 200px !important;
    object-fit: cover !important;
    flex-shrink: 0;
  }
.gallery-line img:nth-child(3n) {
  width: 180px;
}

  .about-story-gallery::before,
  .about-story-gallery::after {
    display: none;
  }
}

@keyframes slideHorizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* MISSION & VISION */
.mission-vision {
  background: #E2E5DE;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.mission-block{
  margin-top: -350px;
}
.vision-block {
  margin-top: 350px;
}
/* LEFT + RIGHT */
.mission-block,
.vision-block {
  width: 28%;
  opacity: 0;
  transform: translateX(60px);
  transition: all 1s ease;
}
.mission-block {
  transform: translateX(-80px);
}

.vision-block {
  transform: translateX(80px);
}

/* WHEN VISIBLE */
.mission-vision.show .mission-block,
.mission-vision.show .vision-block {
  opacity: 1;
  transform: translateX(0);
}

.mission-block h2,
.vision-block h2 {
  font-family: "Castoro", serif;
  font-size: 42px;
  font-weight: 400;
  color: #748DA4;
  margin-bottom: 16px;
  text-align: justify;
}

.mission-block p,
.vision-block p {
  font-family: "Lora", serif;
  font-size: 18px;
  line-height: 1.8;
  color: #21272A;
  text-align: justify;
}
.mission-block p{
  margin-right: -140px;
}
.vision-block h2{
  text-align-last: right;
}
.vision-block p {
  margin-left: -180px;
}

/* CENTER IMAGE */
.mission-image {
  margin-top: 60px;
  width: 80%;
  display: flex;
  justify-content: center;
  transition: transform 0.5s ease;
}

.mission-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  transition: all 0.6s ease;
  animation: floatImage 6s ease-in-out infinite;
}
.mission-image:hover img {
  transform: scale(1.05);
  filter: brightness(1.05) saturate(1.05);
}
.mission-image:hover {
  transform: translateY(-8px);
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .mission-vision {
    background: #E2E5DE;
    padding: 60px 50px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 26px;
  }

  .mission-block,
  .vision-block,
  .mission-image {
    width: 100%;
  }

  .mission-block {
    margin-top: 0;
    order: 1;
  }

  .mission-image {
    margin-top: 0;
    order: 2;
    display: flex;
    justify-content: center;
  }

  .vision-block {
    margin-top: 0;
    order: 3;
  }

  .mission-block h2,
  .vision-block h2 {
    font-family: "Castoro", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.15;
    color: #748DA4;
    margin-bottom: 14px;
    text-align: left;
  }

  .mission-block p,
  .vision-block p {
    font-family: "Lora", serif;
    font-size: 14px;
    line-height: 1.55;
    color: #21272A;
    text-align: justify;
    margin: 0;
  }

  .mission-block p {
    margin-right: 0;
  }

  .vision-block h2 {
    text-align: left;
    text-align-last: auto;
  }

  .vision-block p {
    margin-left: 0;
  }

  .mission-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
  }
}

.values-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 80px 60px;
  min-height: 650px;
  background:
    linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0.35)),
    url("images/About page/values.jpg") center/cover no-repeat;
  overflow: hidden;
}

.values-left {
  width: 32%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.values-image-box {
  position: relative;
  width: 500px;
  height: 500px;
 
  display: flex;
  align-items: center;
  justify-content: center;
}

.values-image-box img {
  width: 125%;
  height: 125%;
  margin-left: -300px;
  object-fit: contain;
  display: block;
}

.values-image-box h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Castoro", serif;
  font-size: 42px;
  font-weight: 400;
  color: #DCA782;
  text-align: center;
  z-index: 2;
}

.values-right {
  width: 55%;
  display: flex;
  flex-direction: column;
  margin-left: 60px;
  gap: 16px;
}

.value-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 167, 130, 0.2);
  overflow: hidden;
}

.value-toggle {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #C2C3A8;
  text-align: justify;
  transition: transform 0.3s ease;
}

.dropdown-icon {
  font-size: 22px;
  color: #C2C3A8;
  transition: transform 0.3s ease;
}

.value-item.active .dropdown-icon {
  transform: rotate(180deg);
}
.value-content {
  text-align: justify;
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-family: "Lora", serif;
  font-weight: 400;      /* regular */
  font-size: 18px;
  line-height: 1.8;
  color: #8b7d72;
  background: rgba(255, 255, 255, 0.92);
  transition: all 0.35s ease;
}

.value-item.active .value-content {
  max-height: 200px;
  padding: 0 22px 18px;
}

@media (max-width: 768px) {
  .values-section {
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
    padding: 40px 0 70px;
    gap: 0;
    background:
      linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)),
      url("images/About page/values.JPG") center/cover no-repeat;
  }

  .values-left {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    margin-bottom: -40px;
    z-index: 2;
  }

  .values-image-box {
    position: relative;
    width: 230px;
    height: 200px;
    margin-left: -20px;
  }

  .values-image-box img {
	margin-left: 5px;
	margin-top: 150px;
    width: 180%;
    height: 180%;
    object-fit: contain;
  }

  .values-image-box h2 {
    position: absolute;
    top: 48%;
    left: 52%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    margin-left: 33px;
  }

  .values-right {
    width: 100%;
    display: flex;
    flex-direction: column;
	margin-right: 60px;
    gap: 14px;
    padding: 0 45px 0;
    z-index: 3;
  }

  .value-item {
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
  }

  .value-toggle {
    padding: 16px 18px;
    font-size: 14px;
    min-height: 58px;
  }

  .value-content {
    font-size: 13px;
    line-height: 1.7;
    padding: 0 18px;
  }

  .value-item.active .value-content {
    padding: 0 18px 16px;
    max-height: 220px;
  }

  .dropdown-icon {
    font-size: 22px;
    flex-shrink: 0;
  }
}

.location-section {
  background: #FFFFFF;
  padding: 90px 60px;
}

.location-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.location-left {
  width: 50%;
}

.location-left h2 {
  font-family: "Castoro", serif;
  font-size: 42px;
  font-weight: 400;
  color: #DCA782;
  margin-bottom: 20px;
}

.location-text {
  font-family: "Lora", serif;
  font-weight: 400;      /* regular */
  font-size: 18px;
  line-height: 1.8;
  
}

.location-right {
  width: 50%;
}

.location-map {
  width: 100%;
  height: 350px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.location-text span {
  display: block;
}

.location-label {
  display: block;
  margin-bottom: 6px;
  font-family: "Lora", serif;
  font-weight: 400;      /* regular */
  font-size: 18px;
  line-height: 1.8;
  color: #748DA4;
}

.location-line {
  display: block;
  font-family: "Lora", serif;
  font-weight: 400;      /* regular */
  font-size: 18px;
  line-height: 1.8;
  color: #748DA4;
	
}
@media (max-width: 768px) {
  .location-section {
    padding: 70px 45px;
  }

  .location-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .location-left,
  .location-right {
    width: 100%;
  }

  .location-left h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .location-label {
    font-size: 14px;
    line-height: 1.4;
  }
  .location-line {
	font-size: 14px;
    line-height: 1.4;	
	}
  .location-map {
    height: 300px;
    border-radius: 16px;
  }
}

/* SERVICES */
.services-intro {
  background: #FFFFFF;
  padding: 70px 60px;
}

.services-intro-container {
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.services-title {
  font-family: "Castoro", serif;
  font-size: 42px;
  font-weight: 400;
  color: #E2B799;
  margin: 0 0 18px 0;
  text-align: left;
}

.services-description {
  font-family: "Lora", serif;
  font-size: 18px;
  line-height: 1.8;
  color: #748DA4;
  max-width: 100%;
  margin: 0;
  text-align: justify;
}
@media (max-width: 768px) {
  .services-intro {
    padding: 50px 45px;
  }

  .services-title {
    font-size: 24px;
    margin: 0 0 14px 0;
  }

  .services-description {
    font-size: 14px;
    line-height: 1.7;
  }
}


/* SECTION */
.room-section {
  background: #C2C3A8;
  padding: 90px 60px;
  text-align: center;
}

/* TITLE */
.room-title {
  font-family: "Castoro", serif;
  font-size: 42px;
  font-weight: 400;
  color: #F3EAD6;
  margin-bottom: 60px;
}

/* GRID */
.room-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  width: 100%;
}

/* CARD */
.room-card {
  position: relative;
  display: block;
  width: 400px;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* IMAGE */
.room-card img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

/* TEXT */
.room-label {
  position: absolute;
  bottom: 26px;
  left: 35%;
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #E2E5DE;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, letter-spacing 0.3s ease;
  white-space: nowrap;
}

.room-card:hover {
  transform: translateY(-8px);
}

.room-card:hover img {
  transform: scale(1.04);
}

.room-card:hover .room-label {
  transform: translateX(-50%) translateY(-5px);
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .room-grid {
    gap: 30px;
  }

  .room-card {
    width: 85%;
  }

  .room-title {
    font-size: 32px;
  }
	.room-label {
	font-size: 32px; 
	}
}

/* SECTION */
.meals-section {
  background: #ffffff;
  padding: 70px 60px;
  height: 720px;
}

.meals-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.meals-text {
  flex: 1;
  max-width: 600px;
  margin-top: 50px;
}

.meals-title {
  font-family: "Castoro", serif;
  font-size: 42px;
  font-weight: 400;
  color: #E2B799;
  margin-bottom: 18px;
}

.meals-description {
  font-family: "Lora", serif;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  color: #748DA4;
  margin-bottom: 25px;
  text-align: justify;
}

.meals-images {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.meal-img.main {
  width: 500px;
}

.meal-img.small {
  position: absolute;
  width: 300px;
  bottom: -100px;
  right: 20px;
}
.meals-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 12px 30px;
  border-radius: 999px;
  background: #E2E5DE;
  color: #748DA4;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: all 0.28s ease;
}

.meals-btn:hover {
  background: #748DA4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}
	

@media (max-width: 768px) {
  .meals-section {
    padding: 50px 45px;
    height: 680px;
  }

  .meals-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
  }

  .meals-text {
    max-width: 100%;
    margin-top: 0;
  }

  .meals-title {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .meals-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: justify;
  }

  .meals-images {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    padding-bottom: 55px;
    margin-top: 0;
	margin-left: -25px;
  }

  .meal-img.main {
    width: 100%;
    max-width: 300px;
  }

  .meal-img.small {
    width: 155px;
    right: 8px;
    bottom: 0;
  }

  .meals-btn {
	position: absolute;
    margin-top: 400px;
	margin-left: 125px;
    min-width: 140px;
    padding: 12px 35px;
    font-size: 16px;
	
  }
}

/* MASSAGE SECTION */
.massage-section {
  position: relative;
  min-height: 650px;
  background-image: url("images/Services page/Massage.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.massage-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.massage-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  padding: 40px 20px;
}

.massage-title {
  font-family: "Castoro", serif;
  font-size: 42px;
  font-weight: 400;
  color: #F3EAD6;
  margin-bottom: 18px;
}

.massage-description {
  font-family: "Lora", serif;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  color: #F3EAD6;
  max-width: 680px;
  margin: 0 auto 28px;
}

.massage-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 12px 30px;
  border-radius: 999px;
  background: #E2E5DE;
  color: #748DA4;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: all 0.28s ease;
}

.massage-btn:hover {
  background: #748DA4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}


@media (max-width: 768px) {
  .massage-section {
    min-height: 650px;
    background-position: center;
  }

  .massage-content {
    max-width: 100%;
    padding: 50px 45px;
  }

  .massage-title {
    font-size: 32px;
    margin-bottom: 14px;
  }

  .massage-description {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 auto 22px;
  }

  .massage-btn {
    min-width: 140px;
    padding: 12px 35px;
    font-size: 16px;
  }
}

/* SUPPORT SECTION */
.support-section {
  background: #ffffff;
  padding: 80px 60px;
}

/* LAYOUT */
.support-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
  flex-wrap: wrap;
}

/* IMAGE */
.support-image {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-left: -70px;
}

.support-image img {
  width: 600px;
  height: auto;
  display: block;
}

/* TEXT */
.support-text {
  flex: 1;
  max-width: 650px;
}

.support-title {
  font-family: "Castoro", serif;
  font-size: 42px;
  font-weight: 400;
  color: #DCA782;
  line-height: 1.2;
  margin-bottom: 20px;
}

.support-description {
  font-family: "Lora", serif;
  font-size: 18px;
  line-height: 1.8;
  color: #748DA4;
  text-align: justify;
  margin-bottom: 25px;
}

/* BUTTON */
.support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 12px 30px;
  border-radius: 999px;
  background: #E2E5DE;
  color: #748DA4;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: all 0.28s ease;
}

.support-btn:hover {
  background: #748DA4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

@media (max-width: 768px) {
  .support-section {
    padding: 50px 45px;
  }

  .support-container {
    flex-direction: column;
    text-align: left;
  }

  .support-image img {
    width: 80%;
	margin-left: 65px;
    max-width: 420px;
	margin-bottom: -40px;
  }

  .support-title {
    font-size: 30px;
  }

  .support-description {
    font-size: 15px;
  }

  .support-btn {
    margin-left: 125px;
	min-width: 140px;
    padding: 12px 35px;
    font-size: 16px;
  }
}

/* ROOM */
.room-showcase {
  background: #FFFFFF;
  padding: 50px 60px;
}

.room-showcase-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

/* LEFT */
.room-gallery {
  flex: 1 1 700px;
  max-width: 1050px;
  position: relative;
  
}

.main-room-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.main-room-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.room-thumbnails {
  display: flex;
  gap: 14px;
  margin-top: -90px;
  padding-left: 40px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.room-thumbnails .thumb {
  width: 130px;
  height: 84px;
  object-fit: cover;
  border-radius: 20px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: transform 0.3s ease, border 0.3s ease, opacity 0.3s ease;
  background: #fff;
}

.room-thumbnails .thumb:hover {
  transform: scale(1.05);
}

.room-thumbnails .thumb.active {
  border: 3px solid #C2C3A8;
}

.room-features {
  margin-top: 26px;
  padding-left: 10px;
}

.room-features h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #748DA4;
  margin-bottom: 12px;
}

.room-features ul {
  margin: 0;
  padding-left: 20px;
}

.room-features li {
  font-family: "Lora", serif;
  font-size: 18px;
  line-height: 1.8;
  color: #DCA782;
}

/* RIGHT */
.room-info-shape {
  position: absolute;
  width: 450px;
  z-index: 5;
  right: 20px;   /* move shape left/right */
  top: 210px;     /* move shape up/down */
}

.shape-bg {
  width: 100%;
  height: auto;
  display: block;
}

.room-info-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  top: 90px; 
}

.room-info-content-inner {
  width: 72%;
  max-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: auto;

  transform: translateY(8px);
}

.room-info-content h2 {
  font-family: "Castoro", serif;
  font-size: 38px;
  font-weight: 400;
  color: #F3EAD6;
  margin-bottom: 18px;
  line-height: 1.1;
}

.room-info-content p {
  max-width: 230px;
  font-family: "Lora", serif;
  font-size: 17px;
  line-height: 1.7;
  color: #21272A;
  margin: 0 0 22px;
  text-align: justify;
}

.room-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 120px;
  padding: 12px 30px;
  border-radius: 999px;

  background: #E2E5DE;
  color: #748DA4;
  text-decoration: none;

  font-family: "Poppins", sans-serif;
  font-weight: 600;

  transition: all 0.28s ease;
}

.room-book-btn:hover {
  background: #748DA4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

/* Responsive */
@media (max-width: 768px) {
  .room-showcase {
    padding: 30px 45px;
  }

  .room-showcase-container {
    max-width: 100%;
    display: block;
    position: relative;
  }
  
  .room-gallery {
    max-width: 100%;
    position: relative;
	
  }
  .main-room-image {
    border-radius: 5px;
    overflow: hidden;
  }

  .main-room-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
  }

  .room-thumbnails {
    gap: 8px;
    margin-top: -65px;
    padding-left: 14px;
    padding-right: 14px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .room-thumbnails .thumb {
    width: 60px;
    height: 45px;
    border-radius: 5px;
    flex: 0 0 auto;
  }

  .room-info-shape {
    position: absolute;
    width: 170px;
    right: -30px;
    top: 190px;
    z-index: 5;
  }

  .shape-bg {
    width: 100%;
    height: auto;
    display: block;
  }

  .room-info-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
	top: 30px;
  }

  .room-info-content-inner {
    width: 72%;
    max-width: 150px;
    text-align: center;
    transform: translate(8px, 2px);
  }

  .room-info-content h2 {
    font-size: 15px;
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .room-info-content p {
    font-size: 9px;
    line-height: 1.5;
    margin: 0 0 10px;
  }

  .room-book-btn {
    position: absolute;
    left: -290px;
    bottom: 50px;
    transform: translateY(46px);
    min-width: 110px;
    padding: 10px 22px;
    font-size: 13px;
    z-index: 6;
  }

  .room-book-btn:hover {
    transform: translateY(44px);
  }

  .room-features {
    margin-top: 150px;
    padding-left: 0;
  }

  .room-features h3 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .room-features ul {
    padding-left: 14px;
  }

  .room-features li {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .room-showcase {
    padding: 20px 15px;
  }

  .room-showcase-container {
    max-width: 100%;
    display: block;
    position: relative;
  }

  .room-gallery {
    max-width: 100%;
    position: relative;
  }

  .main-room-image {
    border-radius: 5px;
    overflow: hidden;
  }

  .main-room-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }

  .room-thumbnails {
    gap: 6px;
    margin-top: -50px;
    padding-left: 10px;
    padding-right: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .room-thumbnails .thumb {
    width: 50px;
    height: 38px;
    border-radius: 4px;
    flex: 0 0 auto;
  }

  .room-info-shape {
    position: absolute;
    width: 140px;
    right: -20px;
    top: 120px;
    z-index: 5;
  }

  .room-info-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 20px;
  }

  .room-info-content-inner {
    width: 80%;
    max-width: 120px;
    text-align: center;
    transform: translate(0, 0);
  }

  .room-info-content h2 {
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .room-info-content p {
    font-size: 8px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .room-book-btn {
    position: absolute;
    left: -200px;
    bottom: 20px;
    transform: translateY(30px);
    min-width: 100px;
    padding: 8px 18px;
    font-size: 12px;
    z-index: 6;
  }

  .room-book-btn:hover {
    transform: translateY(28px);
  }

  .room-features {
    margin-top: 110px;
    padding-left: 0;
  }

  .room-features h3 {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .room-features ul {
    padding-left: 12px;
  }

  .room-features li {
    font-size: 12px;
    line-height: 1.6;
  }
}

.other-services {
  background: #FFFFFF;
  padding: 50px 60px;
   border-top: 2px solid #E2E5DE;
}

.other-services-container {
  max-width: 100%;
  margin: 0 auto;
}

.other-services-title {
  font-family: "Castoro", serif;
  font-size: 42px;
  font-weight: 400;
  color: #DCA782;
  margin-bottom: 40px;
}

/* GRID */
.services-grid {
  display: flex;
  justify-content: flex-start;
  gap: 150px;
  flex-wrap: wrap;
}

/* CARD */
.service-card {
  position: relative;
  width: 350px;
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.service-card img {
  width: 350px;
  height: auto;
  display: block;
}

/* OVERLAY TEXT */
.service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #ffffff;

  padding: 20px;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-6px) scale(1.02);
}


@media (max-width: 768px) {
  .other-services {
	 padding: 30px 45px;
	}
	 
  .services-grid {
    gap: 30px;
	padding: 10px 45px;
	align-items: center;
    justify-content: center;
    text-align: center;
  }

  .service-card {
    width: 300px;
  }
.service-card img {
  width: 300px;
  height: auto;
  display: block;
}
  .service-overlay {
    font-size: 24px;
    padding: 10px;
  }

  .other-services-title {
    font-size: 24px;
  }
}

.chatbot-toggle {
  position: fixed;
  bottom: 95px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #DCA782;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.chatbot-toggle:hover {
  transform: scale(1.08);
}

.chatbot-box {
  position: fixed;
  bottom: 170px;
  right: 24px;
  width: 370px;
  max-width: calc(100% - 32px);
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  z-index: 9999;
  display: none;
  flex-direction: column;
}

.chatbot-box.show {
  display: flex;
}

.chatbot-header {
  background: #F3EAD6;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #E8DED0;
}

.chatbot-header h3 {
  margin: 0;
  font-size: 20px;
  color: #8A5A44;
  font-family: "Castoro", serif;
  font-weight: 400;
}

.chatbot-header p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #8A5A44;
}

.chatbot-header button {
  background: none;
  border: none;
  font-size: 20px;
  color: #DCA782;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.chatbot-body {
  padding: 18px;
  height: 360px;
  overflow-y: auto;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
}

.bot-message,
.user-message {
  max-width: 86%;
  padding: 12px 15px;
  border-radius: 16px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-line;
}

.bot-message {
  background: #F3EAD6;
  color: #5C4A42;
  align-self: flex-start;
}

.user-message {
  background: #DCA782;
  color: #FFFFFF;
  align-self: flex-end;
  margin-left: auto;
}

.quick-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.quick-questions button {
  background: #FFFFFF;
  border: 1px solid #E6D5C5;
  color: #8A5A44;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-questions button:hover {
  background: #F3EAD6;
}

.chatbot-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid #EEE7DE;
  background: #FFFFFF;
}

.chatbot-footer input {
  flex: 1;
  border: 1px solid #DDD4C8;
  border-radius: 999px;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  background: #FFFFFF;
  color: #5C4A42;
}

.chatbot-footer input::placeholder {
  color: #A8A29E;
}

.chatbot-footer button {
  border: none;
  background: #DCA782;
  color: #FFFFFF;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.chatbot-footer button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .chatbot-toggle {
    right: 16px;
    bottom: 88px;
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .chatbot-box {
    right: 16px;
    bottom: 155px;
    width: calc(100% - 32px);
  }

  .chatbot-body {
    height: 330px;
  }

  .chatbot-footer {
    padding: 12px;
  }

  .chatbot-footer input {
    font-size: 13px;
  }

  .chatbot-footer button {
    padding: 11px 16px;
    font-size: 13px;
  }
}

/* MASSAGE */
.massage-set {
  padding: 80px 60px;
  background: #FFFFFF;
}

.massage-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SIDE */
.massage-left {
  position: relative;
  flex: 1;
  
}

.massage-left img {
  width: 90%;
  height: auto;
  display: block;
  margin-left: 220px;
}

/* TEXT OVER IMAGE */
.set-info {
  position: absolute;
  bottom: 20px;
  left: 0px;
  color: #C2C3A8;
}

.set-info h2 {
  font-family: "Castoro", serif;
  font-style: normal;
  font-size: 55px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 5px;
}

.set-info p {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #DCA782;
  margin: 5px 0;
}

/* RIGHT SIDE */
.massage-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.massage-desc {
  margin-top: 30px;
  max-width: 600px;
  color: #6f8799;
  font-family: "Lora", serif;
  font-weight: 400;      /* regular */
  font-size: 24px;
  line-height: 1.8;
  text-align: right;
  margin-left: 70px;
}

/* SMALL IMAGE */
.massage-right img {
  width: 300px;
  height: auto;
  display: block;
  margin-top: 100px;
  margin-left: 110px;
}

/* SLIDE UP BASE STATE */
.massage-left img,
.massage-right img {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s ease;
}

/* WHEN ACTIVE */
.massage-left img.show,
.massage-right img.show {
  opacity: 1;
  transform: translateY(0);
}

/* TEXT BASE STATE */
.set-info,
.massage-desc {
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* LEFT TEXT (slide from left) */
.set-info {
  transform: translateX(-60px);
}

.set-info.show {
  opacity: 1;
  transform: translateX(0);
}

/* RIGHT TEXT (slide from right) */
.massage-desc {
  transform: translateX(60px);
}

.massage-desc.show {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .massage-set {
    padding: 30px 45px;
  }

  .massage-container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  /* move whole right section to top */
  .massage-right {
    order: -1;
    display: block;
    width: 100%;
    position: relative;
  }

  .massage-desc {
    max-width: 100%;
    margin: 0 0 22px 0;
    font-size: 14px;
    line-height: 1.5;
    text-align: right;
  }

  .massage-left {
    position: relative;
    width: 100%;
  }

  .massage-left img {
    width: 63%;
    margin: 0;
    display: block;
	margin-top: -50px;
  }

  .set-info {
    position: static;
    margin-top: 10px;
    transform: translateX(-60px);
  }

  .set-info h2 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .set-info p {
    font-size: 20px;
    margin: 4px 0;
  }

  .massage-right img {
    position: absolute;
    width: 32%;
    right: 0;
    top: 120px;
    margin: 0;
  }
}

.massage-set-reverse {
  padding: 80px 60px;
  background: #FFFFFF;
}

.massage-container.reverse {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.massage-left-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 150px;
}

.massage-left-side .massage-desc {
  max-width: 600px;
  color: #6f8799;
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

.massage-left-side img {
  width: 300px;
  height: auto;
  display: block;
  margin-bottom: -30px;
  margin-left: 320px;
}

/* RIGHT IMAGE */
.massage-right-side {
  flex: 1;
  position: relative;
}

.massage-right-side img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin-left: -100px;
}

.massage-right-side .set-info {
  position: absolute;
  right: 0;
  bottom: 20px;
  text-align: right;
  color: #C2C3A8;
}

.massage-right-side .set-info h2 {
  font-family: "Castoro", serif;
  font-size: 55px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 5px;
}

.massage-right-side .set-info p {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #DCA782;
  margin: 5px 0;
}

/* IMAGE SLIDE UP */
.massage-left-side img,
.massage-right-side img {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s ease;
}

.massage-left-side img.show,
.massage-right-side img.show {
  opacity: 1;
  transform: translateY(0);
}

/* TEXT ANIMATION */
.massage-left-side .massage-desc,
.massage-right-side .set-info {
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.massage-left-side .massage-desc {
  transform: translateX(-60px);
}

.massage-left-side .massage-desc.show {
  opacity: 1;
  transform: translateX(0);
}

.massage-right-side .set-info {
  transform: translateX(60px);
}

.massage-right-side .set-info.show {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .massage-container.reverse {
	margin-top: -50px;
	margin-bottom: -30px;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 20px;
  }

  .massage-left-side {
    order: -1;
    width: 100%;
    display: block;
  }

  .massage-left-side .massage-desc {
    max-width: 100%;
    margin: 0 0 20px 0;
	margin-left: -10px;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
  }

  .massage-left-side img {
    position: absolute;
    width: 32%;
    left: 0;
    top: 120px;
    margin: 0;
  }

  .massage-right-side {
    width: 100%;
    position: relative;
  }

  .massage-right-side img {
    width: 62%;
    margin-left: auto;
    display: block;
  }

  .massage-right-side .set-info {
    position: static;
    margin-top: 10px;
    margin-right: 10px;
    text-align: right;
  }

  .massage-right-side .set-info h2 {
    font-size: 40px;
  }

  .massage-right-side .set-info p {
    font-size: 20px;
  }
}

/* MEALS */
/* MEALS */
.meal-highlight {
  padding: 40px 60px;
  background: #FFFFFF;
}

.meal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.meal-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 500px;
}

.meal-card-wide {
  grid-column: span 2;
}

.meal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.meal-overlay {
  position: absolute;
  inset: 0;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.45);
}

/* FIX TITLE TO SAME HEIGHT */
.meal-overlay h3 {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 0;
  text-align: center;
  font-family: "Castoro", serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.05;
  color: #f7f2ea;
  transition: transform 0.5s ease;
  z-index: 2;
}

/* DESCRIPTION ALWAYS BELOW TITLE */
.meal-overlay p {
  position: absolute;
  top: 66%;
  left: 50%;
  transform: translate(-50%, 18px);
  width: 80%;
  margin: 0;
  font-family: "Lora", serif;
  text-align: justify;
  font-size: 20px;
  line-height: 1.5;
  color: #f7f2ea;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  z-index: 2;
}

.meal-card:hover img {
  transform: scale(1.06);
}

.meal-card:hover .meal-overlay h3 {
  transform: translate(-50%, calc(-50% - 6px));
}

.meal-card:hover .meal-overlay p {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* SUPPER SPECIAL */
.supper-card .meal-overlay h3 {
  left: 10%;
  transform: translate(-0%, -50%);
  text-align: left;
  width: auto;
}

.supper-card .meal-overlay p {
  left: 10%;
  transform: translate(0, 18px);
  width: 50%;
  text-align: left;
}

.supper-card:hover .meal-overlay h3 {
  transform: translate(0, calc(-50% - 6px));
}

.supper-card:hover .meal-overlay p {
  transform: translate(0, 0);
}

/* MOBILE */
@media (max-width: 768px) {
  .meal-highlight {
    padding: 30px 45px;
  }

  .meal-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .meal-card,
  .meal-card-wide {
    grid-column: span 1;
    height: 450px;
  }

  .meal-overlay h3 {
    font-size: 36px;
    top: 55%;
  }

  .meal-overlay p {
    width: 88%;
    top: 66%;
    font-size: 14px;
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .supper-card .meal-overlay h3,
.supper-card .meal-overlay p {
  left: 50%;
  width: 88%;
  text-align: center;
}

.supper-card .meal-overlay h3 {
  transform: translate(-50%, -50%);
}

.supper-card .meal-overlay p {
 opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
  text-align: justify;
}

/* HOVER EFFECT SAME AS OTHERS */
.supper-card:hover .meal-overlay h3 {
  transform: translate(-50%, calc(-50% - 6px));
}

.supper-card:hover .meal-overlay p {
  opacity: 1;
  transform: translate(-50%, 0);
}
}

.meal-delivery-section {
  padding: 40px 60px 70px;
  background: #FFFFFF;
}

.meal-delivery-container {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}

.meal-delivery-image {
  width: 100%;
  height: 500px; /* 🔥 control height here */
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 50px;
}

.meal-delivery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 KEY */
  object-position: center; /* optional */
  display: block;
}

.meal-delivery-content h2 {
  margin: 0 0 16px;
  font-family: "Castoro", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
  color: #DCA782;
}

.meal-delivery-content p {
  max-width: 780px;
  margin: 0 auto 18px;
  font-family: "Lora", serif;
  font-size: 18px;
  line-height: 1.7;
  color: #6F8799;
}

.meal-delivery-content{
  min-width: 310px;
}

/* MEAL CTA BUTTON */
.meal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 180px;
  padding: 12px 40px;
  border-radius: 999px;

  background: #E2E5DE;
  color: #748DA4;
  text-decoration: none;

  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;

  transition: all 0.28s ease;
}

.meal-btn:hover {
  background: #748DA4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}
@media (max-width: 768px) {
  .meal-delivery-section {
    padding: 30px 0 50px;
  }

  .meal-delivery-image {
    margin-bottom: -70px;
  }

  .meal-delivery-image img {
    border-radius: 20px;
	height: 400px;
  }

  .meal-delivery-content h2 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .meal-delivery-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 100%;
	text-align: justify;
  }

  .meal-delivery-content .room-book-btn {
    min-width: 180px;
    padding: 10px 24px;
  }
}

/* ADDITIONAL SERVICES */
.lactation-section {
  background: #F3EAD6;
  padding: 50px 80px; /* left right 60px */
}

.lactation-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* TEXT */
.lactation-text {
  flex: 1;
}

.lactation-text h2 {
  font-family: "Castoro", serif;
  font-size: 64px;
  font-weight: 400;
  color: #DCA782;
  margin-bottom: 10px;
}

.lactation-text p {
  font-family: "Lora", serif;
  font-size: 20px;
  font-weight: 400;  
  color: #21272A;
  line-height: 1.7;
  max-width: 650px;
}

/* IMAGE */
.lactation-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.lactation-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: cover; /* important */
  display: block;
}

/* INITIAL STATE (hidden) */
.lactation-text,
.lactation-image {
  opacity: 0;
  transition: all 0.9s ease;
}

/* text comes from LEFT */
.lactation-text {
  transform: translateX(-60px);
}

/* image comes from RIGHT */
.lactation-image {
  transform: translateX(60px);
}

/* SHOW ANIMATION */
.lactation-text.show,
.lactation-image.show {
  opacity: 1;
  transform: translateX(0);
}

.lactation-text.show {
  transition-delay: 0.1s;
}

.lactation-image.show {
  transition-delay: 0.3s;
}

@media (max-width: 768px) {
  .lactation-section {
    padding: 50px 45px;
  }

  .lactation-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
  }

  .lactation-image {
    width: 100%;
    justify-content: center;
    order: 1;
  }

  .lactation-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }

  .lactation-text {
    width: 100%;
    order: 2;
  }

  .lactation-text h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .lactation-text p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
    text-align: justify;
  }
}

.newborn-care-section {
  position: relative;
  width: 100%;
  min-height: 650px;
  background: url("images/Additional Services page/baby.png") center center / cover no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.newborn-care-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    to bottom,
  rgba(80, 60, 45, 0.65) 0%,
    rgba(120, 90, 70, 0.35) 40%,
    rgba(243, 234, 214, 0.15) 75%,
    rgba(243, 234, 214, 0) 100%
  );
}

.newborn-care-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 50px 30px 0;
}

.newborn-care-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.newborn-care-content.show {
  opacity: 1;
  transform: translateY(0);
}
.newborn-care-content h2 {
  font-family: "Castoro", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
  color: #F3EAD6;
  margin-bottom: 14px;
}

.newborn-care-content p {
  font-family: "Lora", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #F3EAD6;
  max-width: 760px;
  margin: 0 auto;
}

.newborn-care-content h2 {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}

.newborn-care-content p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}

.newborn-care-content.show h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.newborn-care-content.show p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
@media (max-width: 768px) {
  .newborn-care-section {
    min-height: 600px;
    background-position: center center;
  }

  .newborn-care-content {
    max-width: 100%;
    padding: 35px 45px 0;
  }

  .newborn-care-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .newborn-care-content p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
  }
}


.monitoring-section {
  background: #FFFFFF;
  padding: 50px 60px 50px;
}

.monitoring-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 920px;
}

.monitoring-top-text {
  position: absolute;
  top: 50px;
  left: 0;
  max-width: 380px;
  font-family: "Lora", serif;
  font-size: 24px;
  line-height: 1.5;
  color: #748DA4;
}

.monitoring-image {
  position: absolute;
}

.monitoring-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.monitoring-image-large {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
}

.monitoring-image-top-right {
  top: 0;
  right: 20px;
  width: 310px;
}

.monitoring-image-bottom-left {
  top: 430px;
  left: 0;
  width: 310px;
}

.monitoring-title {
  position: absolute;
  right: 20px;
  top: 540px;
   max-width: 380px;
  text-align: right;
  font-family: "Castoro", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 0.95;
  color: #C2C3A8;
}

.monitoring-bottom-text {
  position: absolute;
  bottom: 20px;
  max-width: 100%;
  font-family: "Lora", serif;
  font-size: 24px;
  line-height: 1.5;
  color: #748DA4;
}

@keyframes floatSoft {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}

.monitoring-image-large img {
  animation: floatSoft 6s ease-in-out infinite;
}

.monitoring-image-top-right img {
  animation: floatSoft 5s ease-in-out infinite;
  animation-delay: 1s;
}

.monitoring-image-bottom-left img {
  animation: floatSoft 7s ease-in-out infinite;
  animation-delay: 2s;
}

@media (max-width: 768px) {
  .monitoring-section {
    padding: 40px 45px 40px;
  }

  .monitoring-container {
    position: relative;
    max-width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .monitoring-top-text,
  .monitoring-image,
  .monitoring-title,
  .monitoring-bottom-text {
    position: static;
    transform: none;
  }

  .monitoring-top-text {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.45;
	text-align: justify;
    color: #748DA4;
    margin-bottom: 10px;
  }

  .monitoring-image-large {
    width: 100%;
    max-width: 100%;
    margin-bottom: 18px;
    order: 2;
  }

  .monitoring-image-top-right {
    width: 150px;
    align-self: flex-end;
    margin-top: 10px;
    margin-bottom: 18px;
    order: 1;
  }

  .monitoring-image-bottom-left {
    width: 150px;
    align-self: flex-start;
    margin-top: -30px;
    margin-bottom: 26px;
    order: 3;
  }

  .monitoring-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .monitoring-title {
    max-width: 100%;
    width: 100%;
    font-size: 28px;
    line-height: 1.05;
    text-align: right;
    color: #C2C3A8;
    margin-bottom: 20px;
    order: 4;
  }

  .monitoring-bottom-text {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
    color: #748DA4;
    order: 5;
  }
}


/* LEARNING HUB */
.resource-hub-section {
  padding: 30px 60px 80px;
  background: #FFFFFF;
}

.resource-hub-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

.resource-filter-panel {
  position: sticky;
  top: 110px;
  background: transparent;
}

.resource-panel-title {
  font-family: "Castoro", serif;
  font-size: 42px;
  font-weight: 400;
  color: #C2C3A8;
  margin-bottom: 26px;
}

.resource-filter-group {
  border-top: 1px solid #dddcd5;
  padding-top: 18px;
  margin-bottom: 26px;
}

.resource-filter-group h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #748DA4;
  margin-bottom: 14px;
}

.resource-filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #21272A;
  cursor: pointer;
}

.resource-filter-group input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: #748DA4;
}

.resource-content-area {
  min-width: 0;
}

.resource-topbar {
  margin-bottom: 22px;
}

.resource-topbar input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #d9d9d3;
  border-radius: 999px;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #555;
  outline: none;
}

.resource-topbar input:focus {
  border-color: #748DA4;
}

.resource-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-height: 900px;
  overflow-y: auto;
  padding-right: 8px;
}

.resource-list::-webkit-scrollbar {
  width: 8px;
}

.resource-list::-webkit-scrollbar-thumb {
  background: rgba(116, 141, 164, 0.28);
  border-radius: 999px;
}

.resource-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 20px;
  align-items: center;
  background: #f9f9f7;
  border: 1px solid #d8d9d6;
  border-radius: 20px;
  padding: 18px 20px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.resource-card-image {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.resource-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.resource-card-text {
  min-width: 0;
}

.resource-card-label {
  display: inline-block;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #d79a72;
}

.resource-card-text h3 {
  font-family: "Castoro", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #C2C3A8;
  margin-bottom: 12px;
}

.resource-card-text p {
  font-family: "Lora", serif;
  font-size: 15px;
  line-height: 1.7;
  color: #21272A;
  margin-bottom: 16px;
  max-width: 95%;
}

.resource-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.resource-link {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #DCA782;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s ease;
}

.resource-link:hover {
  color: #748DA4;
}

.resource-type-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.resource-type-badge.digital {
  background: #e8eef2;
  color: #748DA4;
}

.resource-type-badge.downloadable {
  background: #f6e7de;
  color: #DCA782;
}

.resource-empty-message {
  margin-top: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #748DA4;
}

@media (max-width: 992px) {
  .resource-hub-wrapper {
    grid-template-columns: 1fr;
  }

  .resource-filter-panel {
    position: static;
    background: #ffffff;
    border: 1px solid #e1e2dd;
    border-radius: 18px;
    padding: 22px;
  }

  .resource-panel-title {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .resource-card {
    grid-template-columns: 1fr;
  }

  .resource-card-image {
    height: 220px;
  }

  .resource-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .resource-hub-section {
    padding: 20px 45px 50px;
  }

  .resource-card {
    padding: 16px;
    border-radius: 18px;
  }

  .resource-card-image {
    height: 190px;
  }

  .resource-card-text h3 {
    font-size: 24px;
  }

  .resource-card-text p {
    font-size: 14px;
    max-width: 100%;
  }

  .resource-card-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* GALLERY */
.amyliys-art-section {
  position: relative;
  min-height: 280vh;
  background: #f4ecd9;
  overflow: clip;
  padding: 0 4%;
}

.amyliys-sticky-title {
  position: sticky;
  top: 60%;
  transform: translateY(-50%);
  z-index: 1;
  text-align: center;
  font-family: "Lora", serif;
  font-size: clamp(70px, 12vw, 200px);
  font-weight: 400;
  line-height: 0.9;
  color: #DCA782;
  pointer-events: none;
  user-select: none;
}

.amyliys-floating-gallery {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.amy-card {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  background: #ddd;
}

.amy-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* desktop layout */
.card-1 {
  width: 400px;
  height: 480px;
  top: 40px;
  left: 4%;
}

.card-2 {
  width: 300px;
  height: 400px;
  top: 40px;
  left: 37%;
}

.card-3 {
  width: 500px;
  height: 400px;
  top: 40px;
  right: 4%;
}

.card-4 {
  width: 410px;
  height: 280px;
  top: 580px;
  left: 10%;
}

.card-5 {
  width: 300px;
  height: 380px;
  top: 500px;
  left: 40%;
}

.card-6 {
  width: 450px;
  height: 550px;
  top: 500px;
  right: 5%;
}

.card-7 {
  width: 500px;
  height: 680px;
  top: 920px;
  left: 4%;
}

.card-8 {
  width: 360px;
  height: 500px;
  top: 1100px;
  right: 6%;
}

.card-9 {
  width: 360px;
  height: 500px;
  top: 1100px;
  right: 35%;
}

.amyliys-art-section::after {
  content: "";
  display: block;
  height: 1px;
}

.amy-card {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: 
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease;
}

/* when visible */
.amy-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.card-1,
.card-4,
.card-7 {
  transform: translateY(60px);
}

.card-2,
.card-5,
.card-8 {
  transform: translateY(40px);
}

.card-3,
.card-6,
.card-9 {
  transform: translateY(20px);
}

/* tablet */
@media (max-width: 1024px) {
  .amyliys-art-section {
    min-height: 220vh;
    padding: 20px 24px 60px;
  }

  .amyliys-sticky-title {
    font-size: clamp(56px, 10vw, 120px);
  }

  .card-1 {
    width: 250px;
    height: 300px;
  }

  .card-2 {
    width: 220px;
    height: 300px;
    left: 35%;
  }

  .card-3 {
    width: 280px;
    height: 220px;
  }

  .card-4 {
    width: 250px;
    height: 180px;
    top: 380px;
  }

  .card-5 {
    width: 220px;
    height: 280px;
    top: 360px;
    left: 34%;
  }

  .card-6 {
    width: 280px;
    height: 340px;
    top: 330px;
  }

  .card-7 {
    width: 300px;
    height: 420px;
    top: 720px;
  }

  .card-8 {
    width: 220px;
    height: 300px;
    top: 860px;
  }

  .card-9 {
    width: 220px;
    height: 300px;
    top: 860px;
    right: 34%;
  }
}

/* mobile */
@media (max-width: 768px) {
  .amyliys-art-section {
    min-height: auto;
    padding: 40px 20px 70px;
    overflow: visible;
  }

  .amyliys-sticky-title {
    position: sticky;
    top: 100px;
    transform: none;
    font-size: clamp(48px, 16vw, 78px);
    line-height: 0.95;
    margin-bottom: 18px;
  }

  .amyliys-floating-gallery {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: -15px;
  }

  .amy-card {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    height: 190px !important;
    border-radius: 16px;
  }

  .card-2,
  .card-5,
  .card-7 {
    height: 240px !important;
  }

  .card-3,
  .card-6,
  .card-9 {
    grid-column: span 2;
    height: 220px !important;
  }
}

/* small mobile */
@media (max-width: 480px) {
  .amyliys-art-section {
    padding: 34px 16px 60px;
  }

  .amyliys-sticky-title {
    top: 85px;
    font-size: 56px;
  }

  .amyliys-floating-gallery {
    gap: 12px;
  }

  .amy-card {
    height: 160px !important;
    border-radius: 14px;
  }

  .card-2,
  .card-5,
  .card-7 {
    height: 200px !important;
  }

  .card-3,
  .card-6,
  .card-9 {
    height: 190px !important;
  }
}


/* CONTACT PAGE */
.contact-split-section {
  padding: 90px 60px;
  background: #FFFFFF;
}

.contact-split-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.contact-image-box {
  border-radius: 24px;
  overflow: hidden;
  height: 760px;
}

.contact-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-form-box {
  padding-top: 6px;
}

.contact-heading {
  font-family: "Castoro", serif;
  font-size: clamp(44px, 5vw, 42px);
  font-weight: 400;
  line-height: 1;
  color: #748DA4;
  margin-bottom: 14px;
}

.contact-subtext {
  font-family: "Lora", serif;
  font-size: 18px;
  line-height: 1.6;
  color: #21272A;
  margin-bottom: 34px;
}

.contact-form-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #DCA782;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 0;
  background: #E2E5DE;
  padding: 16px 18px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #697077;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #697077;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #DCA782 50%),
                    linear-gradient(135deg, #DCA782 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 3px),
                       calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 46px;
}

.contact-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Lora", serif;
  font-size: 16px;
  color: #3f3f3f;
  line-height: 1.5;
}

.contact-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #748DA4;
  margin-top: 1px;
  flex-shrink: 0;
}

.contact-submit-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.contact-submit-btn {
  min-width: 150px;
  padding: 14px 34px;
  border: none;
  border-radius: 999px;
  background: #748DA4;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.28s ease;
}

.contact-submit-btn:hover {
  background: #DCA782;
  color:#F3EAD6;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

@media (max-width: 768px) {
  .contact-split-section {
    padding: 30px 45px 28px;
    background: #FFFFFF;
  }

  .contact-split-wrapper {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-image-box {
    height: 280px;
    border-radius: 18px;
	margin-bottom: 20px;
  }

  .contact-form-box {
    padding-top: 0;
  }

  .contact-heading {
    font-size: 28px;
    line-height: 1.05;
    margin-bottom: 10px;
  }

  .contact-subtext {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .contact-form-grid {
    gap: 14px;
  }

  .form-row.two-col {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .form-group {
    gap: 8px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 13px 12px;
    font-size: 12px;
  }

  .form-group textarea {
    min-height: 90px;
  }

  .contact-checkbox {
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
  }

  .contact-checkbox input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin-top: 2px;
  }

  .contact-submit-wrap {
    justify-content: flex-end;
    margin-top: 2px;
  }

  .contact-submit-btn {
    min-width: 128px;
    padding: 11px 24px;
    font-size: 14px;
  }
}

.contact-reach-section {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 760px;
  background: #DCA782;
  overflow: hidden;
}

.contact-reach-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 70px 90px 60px;
  color: #f7eadf;
}

.contact-reach-info h2 {
  font-family: "Castoro", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  color: #F3EAD6;
  margin-bottom: 40px;
  max-width: 500px;
}

.contact-reach-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-reach-item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Lora", serif;
  font-size: 20px;
  line-height: 1.4;
  color: #F3EAD6;
}

.contact-reach-icon {
  width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #F3EAD6;
  flex-shrink: 0;
}

.contact-reach-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: 760px;
  overflow: hidden;
  padding: 0;
  background: #DCA782;
}

.contact-reach-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-reach-track-a {
  animation: contactReachSlideUp 18s linear infinite;
}

.contact-reach-track-b {
  animation: contactReachSlideDown 18s linear infinite;
}

.contact-reach-track img {
  width: 100%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.contact-reach-item a {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-reach-item a:hover {
  opacity: 0.8;
  transform: translateX(4px);
}
/* left column sizes */
.contact-reach-track-a img:nth-child(4n+1) {
  height: 235px;
}
.contact-reach-track-a img:nth-child(4n+2) {
  height: 285px;
}
.contact-reach-track-a img:nth-child(4n+3) {
  height: 205px;
}
.contact-reach-track-a img:nth-child(4n+4) {
  height: 250px;
}

/* right column sizes */
.contact-reach-track-b img:nth-child(4n+1) {
  height: 150px;
}
.contact-reach-track-b img:nth-child(4n+2) {
  height: 330px;
}
.contact-reach-track-b img:nth-child(4n+3) {
  height: 190px;
}
.contact-reach-track-b img:nth-child(4n+4) {
  height: 250px;
}

@keyframes contactReachSlideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(-50% - 6px));
  }
}

@keyframes contactReachSlideDown {
  0% {
    transform: translateY(calc(-50% - 6px));
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes contactSlideHorizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {

  .contact-reach-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-reach-info {
    padding: 48px 45px 40px;
  }

  .contact-reach-info h2 {
    font-size: 34px;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .contact-reach-list {
    gap: 18px;
  }

  .contact-reach-item {
    font-size: 16px;
    gap: 14px;
  }

  .contact-reach-icon {
    width: 28px;
    font-size: 24px;
  }

  .contact-reach-gallery {
    height: 320px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    grid-template-columns: unset;
    padding: 0;
  }

  .contact-reach-track,
  .contact-reach-track-a,
  .contact-reach-track-b {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: max-content;
  }

  .contact-reach-track-a {
    animation: contactSlideHorizontal 18s linear infinite !important;
  }

  .contact-reach-track-b {
    animation: contactSlideHorizontal 18s linear infinite reverse !important;
  }

  .contact-reach-track img,
  .contact-reach-track-a img,
  .contact-reach-track-b img {
    width: 150px !important;
    height: 150px !important;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 0;
  }

  .contact-reach-track img:nth-child(3n),
  .contact-reach-track-a img:nth-child(3n),
  .contact-reach-track-b img:nth-child(3n) {
    width: 170px !important;
  }

  .contact-reach-track img:nth-child(2n),
  .contact-reach-track-a img:nth-child(2n),
  .contact-reach-track-b img:nth-child(2n) {
    height: 150px !important;
  }
}

.location-contact-section {
  background: #FFFFFF;
  padding: 90px 60px;
}

.location-contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.location-contact-left {
  width: 50%;
}

.location-contact-left h2 {
  font-family: "Castoro", serif;
  font-size: 42px;
  font-weight: 400;
  color: #DCA782;
  margin-bottom: 20px;
}

.location-contact-text {
  margin-bottom: 34px;
}

.location-contact-text span {
  display: block;
}

.location-contact-label {
  display: block;
  margin-bottom: 6px;
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #748DA4;
}

.location-contact-line {
  display: block;
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #748DA4;
}

.location-contact-hours {
  display: flex;
  align-items: center;
  gap: 14px;
}

.location-contact-clock {
  width: 34px;
  height: 34px;
  border: 1.5px solid #DCA782;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #DCA782;
  font-size: 16px;
  flex-shrink: 0;
}

.location-contact-hours-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #DCA782;
  line-height: 1.5;
}

.location-contact-right {
  width: 50%;
}

.location-contact-map {
  width: 100%;
  height: 350px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.location-contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .location-contact-section {
    padding: 70px 45px;
  }

  .location-contact-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .location-contact-left,
  .location-contact-right {
    width: 100%;
  }

  .location-contact-left h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .location-contact-label {
    font-size: 14px;
    line-height: 1.4;
  }

  .location-contact-line {
    font-size: 14px;
    line-height: 1.4;
  }

  .location-contact-text {
    margin-bottom: 22px;
  }

  .location-contact-hours {
    gap: 10px;
  }

  .location-contact-clock {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .location-contact-hours-text {
    font-size: 14px;
    line-height: 1.4;
  }

  .location-contact-map {
    height: 300px;
    border-radius: 16px;
  }
}


.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.popup-content button {
  margin-top: 15px;
  padding: 10px 20px;
  background: saddlebrown;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}