/* Reset & base */
* {
  margin: 0; padding: 0; box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background: #fef6f4;
  color: #333;
  line-height: 1.5;
  min-height: 100vh;
  scroll-behavior: smooth;
}
a {
  color: #1b3a57;
  text-decoration: underline;
  transition: color 0.3s ease;
}
a:hover, a:focus {
  color: #de4968;
  outline: none;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #fff0f4;
  border-bottom: 1px solid #f3c6cc;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgb(222 73 104 / 0.15);
  user-select: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

#logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.brand-text .brand-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: #de4968;
  font-family: 'Playfair Display', serif;
}

.brand-text .brand-sub {
  font-size: 0.8rem;
  color: #b25766;
}

.main-nav a {
  margin-left: 18px;
  font-weight: 600;
  color: #de4968;
  text-decoration: none;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 12px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.main-nav a:hover,
.main-nav a:focus {
  background-color: #de4968;
  color: #fff;
  outline: none;
}

.main-nav .cta {
  background: #de4968;
  color: white;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  margin-left: 24px;
}
.main-nav .cta:hover,
.main-nav .cta:focus {
  background: #b23a56;
  outline: none;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #de4968;
}

.contact-top {
  background: #fde3e7;
  text-align: right;
  font-weight: 600;
  padding: 5px 20px 5px 0;
  font-size: 0.9rem;
}
.header-contact {
  color: #1b3a57;
  margin-left: 15px;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s ease;
}
.header-contact:hover,
.header-contact:focus {
  color: #de4968;
  outline: none;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #f9d5d3 0%, #fce9e6 100%);
  padding: 3rem 0 5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-left {
  max-width: 540px;
}
.badge {
  font-weight: 700;
  color: #de4968;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.hero-left h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #b23a56;
}

.hero-left p {
  font-size: 1.1rem;
  margin-bottom: 1.7rem;
  color: #5a2e38;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.btn {
  cursor: pointer;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  font-size: 1rem;
  padding: 12px 28px;
  transition: all 0.3s ease;
  user-select: none;
}
.btn.primary {
  background: #de4968;
  color: #fff;
}
.btn.primary:hover,
.btn.primary:focus {
  background: #b23a56;
  outline: none;
}
.btn.outline {
  background: transparent;
  border: 2px solid #de4968;
  color: #de4968;
}
.btn.outline:hover,
.btn.outline:focus {
  background: #de4968;
  color: white;
  outline: none;
}

.trust {
  font-weight: 600;
  color: #ac5b68;
  font-size: 0.9rem;
}
.trust a {
  color: #de4968;
  text-decoration: underline;
}

.hero-right {
  background: white;
  padding: 1.5rem 2rem 2rem;
  border-radius: 25px;
  box-shadow: 0 10px 15px rgb(222 73 104 / 0.2);
  animation: fadeInUp 0.8s ease forwards;
}
.hero-right h3 {
  text-align: center;
  color: #de4968;
  font-weight: 700;
  margin-bottom: 1rem;
}
#miniBooking input,
#miniBooking select,
#miniBooking textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 12px;
  border: 1.5px solid #f3c6cc;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  resize: vertical;
  transition: border-color 0.3s ease;
}
#miniBooking input:focus,
#miniBooking select:focus,
#miniBooking textarea:focus {
  border-color: #de4968;
  outline: none;
}
.mini-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.mini-row input {
  flex: 1;
}

.form-msg {
  margin-top: 10px;
  color: #b23a56;
  font-weight: 600;
  min-height: 1.4em;
  text-align: center;
}

/* About */
.section {
  padding: 3rem 0;
}

.alt {
  background: #fde3e7;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #b23a56;
  text-align: center;
  margin-bottom: 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
.about-card {
  font-size: 1.05rem;
  color: #5a2e38;
}
.features {
  list-style-type: none;
  margin-top: 1rem;
  color: #b23a56;
  font-weight: 600;
}
.features li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}
.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #de4968;
}
.about-visual {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgb(222 73 104 / 0.25);
  animation: fadeInUp 1s ease forwards;
}
.about-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.95);
}
.shape-blob {
  position: absolute;
  top: -50px;
  right: -70px;
  width: 200px;
  height: 200px;
  background: #de4968;
  border-radius: 40% 60% 70% 30% / 60% 30% 70% 40%;
  filter: blur(40px);
  opacity: 0.35;
  pointer-events: none;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 24px;
}
.service {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgb(222 73 104 / 0.15);
  background: white;
  transition: transform 0.3s ease;
  cursor: default;
}
.service:hover {
  transform: translateY(-8px);
}
.service-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1.5px solid #f3c6cc;
  border-radius: 20px 20px 0 0;
  transition: transform 0.5s ease;
}
.service:hover .service-img {
  transform: scale(1.05);
}
.service h3 {
  margin: 16px 16px 4px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #b23a56;
}
.service p {
  margin: 0 16px 12px;
  flex-grow: 1;
  font-size: 0.95rem;
  color: #6d3a45;
}
.service-footer {
  padding: 0 16px 20px;
  text-align: center;
}
.btn.small {
  padding: 8px 22px;
  font-size: 0.9rem;
  border-radius: 20px;
  background: #de4968;
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn.small:hover,
.btn.small:focus {
  background: #b23a56;
  outline: none;
}

/* Fade in animation for services */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-timing-function: ease;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Testimonials */
.testimonials {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.test-slider-wrapper {
  overflow: hidden;
  width: 75vw;
  max-width: 700px;
  border-radius: 25px;
  box-shadow: 0 6px 20px rgb(222 73 104 / 0.25);
  background: white;
  padding: 12px 20px;
  position: relative;
}
.test-slider {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.test {
  min-width: 33.3333%;
  padding: 1rem 1.2rem;
  margin: 0 8px;
  border-radius: 20px;
  background: #fde3e7;
  font-style: normal;
  font-weight: 600;
  color: #832e3d;
  box-shadow: 0 6px 15px rgb(222 73 104 / 0.15);
  user-select: none;
  flex-shrink: 0;
}
.test cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 400;
  color: #b23a56;
  text-align: right;
}

.testimonials button {
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #de4968;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}
.testimonials button:hover,
.testimonials button:focus {
  color: #b23a56;
  outline: none;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(222,73,104,0.3);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  z-index: 2000;
  overflow-y: auto;
}
.modal.show {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(222,73,104,0.4);
}
.modal-dialog {
  position: relative;
  background: #fff0f4;
  border-radius: 25px;
  padding: 2rem 2.5rem 3rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 10px 30px rgb(222 73 104 / 0.6);
  z-index: 10;
  animation: slideInDown 0.3s ease forwards;
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  to {opacity: 1;}
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #b23a56;
  cursor: pointer;
  transition: color 0.3s ease;
}
.modal-close:hover,
.modal-close:focus {
  color: #832e3d;
  outline: none;
}

#fullBooking input,
#fullBooking select,
#fullBooking textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 15px;
  border: 1.8px solid #f3c6cc;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  resize: vertical;
  transition: border-color 0.3s ease;
}
#fullBooking input:focus,
#fullBooking select:focus,
#fullBooking textarea:focus {
  border-color: #de4968;
  outline: none;
}
.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.modal-actions .btn {
  flex-grow: 1;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 25px;
}
.modal-actions .btn.outline {
  border: 2px solid #de4968;
  background: transparent;
  color: #de4968;
}
.modal-actions .btn.outline:hover,
.modal-actions .btn.outline:focus {
  background: #de4968;
  color: #fff;
  outline: none;
}

/* Footer */
.site-footer {
  background: #fde3e7;
  padding: 3rem 0 1rem;
  font-size: 0.95rem;
  color: #832e3d;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1080px;
  margin: 0 auto 1rem;
}
.site-footer a {
  color: #b23a56;
  text-decoration: underline;
}
.site-footer a:hover,
.site-footer a:focus {
  color: #de4968;
  outline: none;
}

.socials {
  list-style: none;
  display: flex;
  gap: 18px;
}
.socials li a {
  font-weight: 700;
  font-size: 1rem;
  color: #b23a56;
  transition: color 0.3s ease;
}
.socials li a:hover,
.socials li a:focus {
  color: #de4968;
  outline: none;
}

.footer-bottom {
  text-align: center;
  color: #b23a56;
  font-weight: 600;
  user-select: none;
}

/* WhatsApp floating button */
#floatWhats {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25d366;
  color: white;
  font-size: 2.4rem;
  width: 56px;
  height: 56px;
  text-align: center;
  line-height: 56px;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgb(37 211 102 / 0.7);
  transition: background-color 0.3s ease;
  z-index: 1500;
  user-select: none;
  text-decoration: none;
}
#floatWhats:hover,
#floatWhats:focus {
  background: #128c44;
  outline: none;
}

/* Responsive */
@media (max-width: 600px) {
  .main-nav a {
    margin-left: 10px;
    font-size: 0.9rem;
  }
  .hero-left h1 {
    font-size: 2rem;
  }
  .hero-right {
    padding: 1rem 1.5rem 2rem;
  }
  .test-slider-wrapper {
    width: 90vw;
  }
}

/* Map Section */
.map-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(222,73,104,0.25);
}
.map-container iframe {
  display: block;
}


/* Extra responsive adjustments */
@media (max-width: 768px) {
  /* Mobile menu */
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff0f4;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 1rem;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 200px;
    z-index: 999;
  }
  .main-nav.active {
    display: flex;
  }
  .menu-btn {
    display: block;
  }
  .header-inner {
    flex-wrap: wrap;
  }

  /* Forms full width */
  form input, form select, form textarea, .btn, .btn.small {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Testimonials single item per view */
  .test {
    min-width: 100% !important;
    margin: 0 !important;
  }

  /* Reduce heading sizes */
  h1, .section-title {
    font-size: 1.6rem !important;
  }
  .hero-left h1 {
    font-size: 1.8rem !important;
  }

  /* Footer stacked layout */
  .footer-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  #logo {
    width: 70px;
    height: 70px;
  }
  .brand-text .brand-title {
    font-size: 1.2rem;
  }
  .hero-left p {
    font-size: 1rem;
  }
}


/* Fix horizontal scroll */
html, body {
  overflow-x: hidden;
}

/* Ensure all elements fit inside viewport */
* {
  max-width: 100%;
  box-sizing: border-box;
}

/* Fix modal on small screens */
@media (max-width: 768px) {
  .modal-dialog {
    max-width: 95% !important;
    margin: auto;
    padding: 1rem !important;
    border-radius: 15px;
  }
}

/* Adjust testimonials for mobile without sticking */
@media (max-width: 768px) {
  .test {
    min-width: calc(100% - 10px) !important;
    margin: 0 5px !important;
  }
}
