body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: linear-gradient(to bottom, #fff5f8, #ffeef5);
  color: #444;
}

.request-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  color: #4a2c2a;
  background: rgba(255, 255, 255, .42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: .88rem;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  cursor: wait;
  transition: opacity .18s ease, visibility .18s ease;
}

.request-loader.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.request-loader-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(139, 94, 60, .22);
  border-top-color: #8b5e3c;
  border-radius: 50%;
  animation: request-loader-spin .7s linear infinite;
}

@keyframes request-loader-spin {
  to { transform: rotate(360deg); }
}

header {
  background: linear-gradient(to right, #f8c8dc, #f9e6ff, #ffd700);
  padding: 20px;
  text-align: center;
  color: #4a2c2a;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}
#about {
  background: linear-gradient(to right, #f8c8dc, #f9e6ff, #ffd700);
  padding: 60px 20px;
}

.about-card {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(74, 44, 42, 0.15);
}

.about-image {
  flex: 0 0 320px;
}

.about-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.about-content {
  text-align: left;
}

.about-title {
  font-weight: 700;
  color: #8b5e3c;
  margin-top: -8px;
  margin-bottom: 12px;
}

.about-content p {
  line-height: 1.7;
}

nav {
  margin-top: 10px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #4a2c2a;
  font-weight: bold;
}

.nav-logout-btn {
  background: linear-gradient(90deg, #f8c8dc, #ffd700);
  color: #4a2c2a !important;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  border: none;
}

.nav-logout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  background: linear-gradient(90deg, #ffd700, #f8c8dc);
}

section {
  padding: 40px;
  text-align: center;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  background: linear-gradient(to right, #f8c8dc, #f9e6ff, #ffd700);

}
.gallery:hover{
    scale: 1.05;
    transition: all ease-in-out 0.2s;
}
.gallery img {
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);

}
.carousel {
  position: relative;
  overflow: hidden;
  width: min(70vw, 720px);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

#gallery {
  text-align: center;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}
.map{
  padding:30px;
  display:flex;
  border-radius: 12px;
  justify-content:center;
  align-items:center;
  background:linear-gradient(to right, #f8c8dc, #f9e6ff, #ffd700);
  max-width: 40%;
  margin:auto;
  transition: all ease-in-out 0.4s;
}
.map:hover{
  scale:1.02;
  transform: translateY(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease, visibility 0.4s ease;
}
.carousel-track img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.carousel-track img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

#mom2 {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  align-self: center;
  object-fit: contain;
  object-position: center;
  background: #fff5f8;
}

.carousel-btn {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 20px 8px 0;
  transform: none;
  background: rgba(248,200,220,0.8);
  border: none;
  font-size: 2em;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  color: #4a2c2a;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-btn:hover {
  background: #ffd700;
  color: #fff;
}


.btn {
  background: #f8c8dc;
  border: none;
  padding: 12px 20px;
  margin: 10px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 8px;
  color: #4a2c2a;
  transition: 0.3s;
  text-decoration: none;
}

.btn:hover {
  background: #ffd700;
  color: #fff;
  transform: all ease 0.2s;
  scale: 1.11;
}
#option2{
  margin-right:0;
}
.enquire-options {
  display: flex;
  justify-content: center;
  gap: 16px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease, visibility 0.4s ease;
  margin-top: 15px;
  width: min(100%, 520px);
  margin: 40px auto 0;
  padding: 0 12px;
  box-sizing: border-box;
}

.enquire-options .btn {
  flex: 1 1 180px;
  min-width: 160px;
  margin: 0;
  text-align: center;
}

.enquire-options.show {
  opacity: 1;
  visibility: visible;
  max-height: 200px;
  transform: translateY(0);
}

.enquire-options:hover {
  color: #ffd700;
  transition: all ease-in-out 0.2s;
  scale: 1.1;
}
footer {
  background: #f9e6ff;
  text-align: center;
  padding: 15px;
  color: #4a2c2a;
}
#mom2{
  aspect-ratio: 9/16;
}

@media (max-width: 768px) {
  header { padding: 16px 12px; }
  header h1 { font-size: 1.85rem; }
  header nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 420px;
    margin: 14px auto 0;
  }
  header nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 42px;
    box-sizing: border-box;
    margin: 0;
    padding: 8px 6px;
    text-align: center;
    border-radius: 9px;
  }
  header nav a:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .about-card {
    flex-direction: column;
    padding: 20px;
  }
  #map1{
  max-width:105%;
  max-height:60%;
}

@media (max-width: 600px) {
  .menu-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 46px; height: 42px; margin: 12px auto 0; padding: 0;
    border: 1px solid rgba(74,44,42,.18); border-radius: 9px; background: rgba(255,255,255,.55);
  }
  .menu-toggle span { width: 22px; height: 2px; margin: 0 auto; background: #4a2c2a; border-radius: 2px; }
  header:not(.nav-open) nav { display: none; }
  header.nav-open nav { display: flex; flex-direction: column; gap: 7px; margin-top: 12px; }
  header.nav-open nav a, header.nav-open nav .nav-logout-btn { width: 100%; min-height: 42px; }
}

@media (min-width: 601px) { .menu-toggle { display: none; } }

@media (max-width: 360px) {
  header nav { grid-template-columns: 1fr; }
  header nav a:last-child:nth-child(odd) { grid-column: auto; }
}
.map{
  max-width:80%;
}
  .carousel {
    width: 90vw;
    max-width: 560px;
  }
  .carousel-btn {
    margin-top: 16px;
  }

  .enquire-options {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }

  .enquire-options .btn {
    width: 100%;
    min-width: 0;
    padding:2px;
    max-width: 150px;
    max-height:40px;
    margin-left:25%;
  }

  .about-image {
    flex: 1 1 auto;
    width: 100%;
    max-width: 320px;
  }

  .about-content {
    text-align: center;
  }
}
