@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;600&display=swap');

* {
  margin: 0; padding: 0; box-sizing: border-box;
}
body {
  background: linear-gradient(135deg, #b20059, #b20059);
  font-family: 'Montserrat', sans-serif;
  color: #ffdce1;
  line-height: 1.6;
  min-height: 100vh;
}
strong {
    font-weight: bolder;
	color: white;
}
p {
	color: white;
	text-align: center;
}
.content-box h1 {
    font-size: 2rem;
    color: white;
}
a {
  text-decoration: none;
  color: white;
}

.top-contact {
  background-color: #b20070;
  color: #fff;
  font-size: 0.9rem;
  padding: 8px 20px;
  text-align: center;
  letter-spacing: 1px;
}
.top-contact a {
  color: #fff;
  font-weight: 600;
  margin: 0 12px;
}

header {
  font-family: 'Playfair Display', serif;
  text-align: center;
  padding: 40px 20px 10px 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 15px #ff69b4;
  border-bottom: 4px solid #ff4d92;
}

/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Navbar base styles */
.navbar {
  background: #9c1010;
  background: radial-gradient(circle, rgba(156, 16, 16, 1) 0%, rgba(212, 38, 73, 1) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  position: relative;
  z-index: 10000; /* Ensure navbar sits above other content */
}

.navbar-logo a {
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
}

/* Desktop menu */
.navbar-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar-menu li a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  transition: background-color 0.3s ease;
}

.navbar-menu li a:hover,
.navbar-menu li a:focus {
  background-color: black;
  border-radius: 4px;
}

/* Hamburger toggle button (hidden on desktop) */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 5px;
  z-index: 11000; /* Should be above menu */
}

.navbar-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .navbar-menu {
    position: absolute;
    top: 56px; /* Height of navbar */
    right: 0;
    background: #9c1010;
    background: radial-gradient(circle, rgba(156, 16, 16, 1) 0%, rgba(212, 38, 73, 1) 100%);
    width: 200px;
    flex-direction: column;
    padding: 1rem 0;
    border-radius: 0 0 0 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    z-index: 11000; /* High so it overlays video */
  }

  /* Hide menu by default using 'hidden' attribute */
  .navbar-menu[hidden] {
    display: none;
  }

  .navbar-menu:not([hidden]) {
    display: flex;
  }

  .navbar-menu li a {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .navbar-toggle {
    display: flex; /* Show hamburger button */
  }
}


.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 1500;
}
.hamburger:focus {
  outline: 2px solid #fff0f6;
}
.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #fff0f6;
  border-radius: 3px;
}
.nav-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
  justify-content: flex-end;
  font-weight: 700;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #b22273;
    width: 100%;
    position: absolute;
    top: 56px;
    left: 0;
    padding: 10px 0;
    box-shadow: 0 5px 10px #b2005980;
  }
  .nav-menu[aria-expanded="true"],
  .nav-menu:not([hidden]) {
    display: flex;
  }
  .nav-menu a {
    padding: 12px 20px;
    border-top: 1px solid #fff;
  }
}

.banner {
  position: relative;
  background: url('images/banner.webp.html') center center no-repeat;
  background-size: cover;
  height: 400px;
  color: #ffdce4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  box-shadow: inset 0 0 100px #b2005980;
  max-width: 100vw;
  overflow: hidden;
}

section.about h2, section.services h2, section.gallery h2, section.reviews h2, section.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 25px;
  text-align: center;
  color: white;
}
section.about, section.services, section.reviews, section.contact {
  color: #fff;
  margin-bottom: 40px;
  font-size: 0.9rem;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
}
.service-item {
  background-color: #d65a9e;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 25px #e087beaa;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}
.service-item img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 3px #ff5ea4);
}
.service-item div {
  font-size: 1.1rem;
  font-weight: 600;
}
.prices-table {
  width: 100%;
  max-width: 700px;
  margin: 30px auto 0 auto;
  border-collapse: collapse;
  color: #fff;
}
.prices-table th, .prices-table td {
    border: 1px solid #fff;
    padding: 10px 20px;
    text-align: center;
    color: white;
    font-weight: 700;
}
.prices-table th {
  background-color: #b20059;
  color: white;
  font-weight: 700;
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 0 40px #ff4d92;
  user-select: none;
}
section.reviews {
  background: #a50860;
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 880px;
  margin: 0 auto 60px auto;
  color: #fff;
}
.review-card {
  background: #b20059;
  padding: 25px 18px;
  margin-bottom: 24px;
  border-radius: 12px;
  font-style: italic;
  box-shadow: 0 0 25px #ff4d92aa;
  color: white;
}
section.contact {
  max-width: 700px;
  margin: 0 auto 60px auto;
  background: #d1407bcc;
  padding: 30px 20px;
  border-radius: 18px;
  color: #ffd5df;
  text-align: center;
}
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
footer {
  background-color: #a50860;
  color: #ffcce1;
  padding: 18px 20px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-align: center;
}
/* Floating buttons base styling */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10000; /* Ensure on top */
}

.float-btn {
  background-color: #25D366; /* WhatsApp green */
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

/* Different bg colors for call button */
.float-btn.call {
  background-color: #007bff;
}


/* Responsive for mobile */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 12px;
  }
  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 22px;
    line-height: 45px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  
  .nav-menu {
    position: static;
    display: none;
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    width: auto;
    padding: 0;
    gap: 10px;
  }
  .nav-menu.show {
    display: flex;
  }
  .service-list {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  section.reviews,
  section.contact {
    margin: 20px;
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .banner h1 {
    font-size: 1.9rem;
  }
  .banner p {
    font-size: 0.9rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .contact-buttons {
    gap: 15px;
  }
  .contact-button {
    min-width: 120px;
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}
.faq {
  max-width: 900px;
  margin: 50px auto 60px auto;
  background-color: #b20059;
  border-radius: 15px;
  padding: 30px 20px;
  color: #fff0f6;
  box-shadow: 0 0 25px #ff77b3aa;
}
.faq h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  margin-bottom: 25px;
  border-bottom: 3px solid #fff0f6;
  padding-bottom: 10px;
  text-align: center;
}
.faq-item {
  margin-bottom: 18px;
  border-top: 1px solid #ff8fc4;
}
.faq-item:first-child {
  border-top: none;
}
.faq-question {
  width: 100%;
  text-align: left;
  font-weight: 700;
  padding: 15px;
  font-size: 1.2rem;
  background-color: transparent;
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.faq-question:hover, .faq-question:focus {
  color: #fff;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"]::after {
  content: '−';
  transform: rotate(180deg);
}
.faq-answer {
  padding: 12px 20px 20px 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;
}
.faq-answer[hidden] {
  display: none;
}

/* Mobile friendly font scaling */
@media (max-width: 600px) {
  .faq h2 {
    font-size: 1.5rem;
  }
  .faq-question {
    font-size: 1.1rem;
  }
  .faq-answer {
    font-size: 1rem;
  }
}
.card-section {
  max-width: 1140px;
  margin: 50px auto 70px auto;
  padding: 0 20px;
  color: #ffffff;
}
.card-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.0rem;
  margin-bottom: 30px;
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
  text-align: center;
}

.card-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 30px;
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
  text-align: center;
}
.card-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 30px;
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
  text-align: center;
}
.card-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 30px;
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
  text-align: center;
}


.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 25px;
}

.card {
  background-color: #b20059;
  box-shadow: 0 0 25px #e888bfaa;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover,
.card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 0 40px #ff6ba4cc;
  outline: none;
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 3px solid #ff4d92;
  cursor: pointer;
}

.card-content {
  padding: 15px 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.star-rating {
  color: #e9ca2b;
  font-size: 1.2rem;
}

.star-rating .fa-star, .star-rating .fa-star-half-alt, .star-rating .fa-star-half {
  margin-right: 4px;
}

.status {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 15px;
  width: fit-content;
  letter-spacing: 0.1em;
}
.status.available {
  background-color: #3bf011;
  color: #5f003a;
}
.status.busy {
  background-color: #ff4466;
  color: #410017;
}

.card-actions {
  margin-top: auto;
  display: flex;
  gap: 15px;
}

.action-btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 0 18px #ff4d92cc;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.action-btn i {
  font-size: 1.4rem;
}

.action-btn.call {
  background-color: #ff356f;
}
.action-btn.call:hover,
.action-btn.call:focus {
  background-color: #d62257;
}

.action-btn.whatsapp {
  background-color: #25D366;
}
.action-btn.whatsapp:hover,
.action-btn.whatsapp:focus {
  background-color: #1fa950;
}

/* Mobile Responsiveness */

@media (max-width: 768px) {
  .card-container {
    grid-template-columns: 1fr 1fr;
  }
  .card img {
    height: 220px;
  }
}

@media (max-width: 440px) {
  .card-container {
    grid-template-columns: 1fr;
  }
  .card img {
    height: 300px;
  }
  .card-content h3 {
    font-size: 1.3rem;
  }
  .star-rating {
    font-size: 1rem;
  }
  .action-btn {
    font-size: 1rem;
    padding: 8px 0;
  }
}
.site-footer {
  background-color: #b2006599;
  color: #ffcce1;
  padding: 40px 15px 20px 15px;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  box-shadow: inset 0 10px 30px #aa006099;
  position: relative;
}
.footer-container {
  display: flex;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto 20px auto;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-container section {
  flex: 1 1 260px;
  min-width: 220px;
}
.footer-about h3, .footer-links h3, .footer-contact h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 15px;
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 6px;
}
.footer-about p {
  line-height: 1.5;
  max-width: 320px;
  font-size: 1rem;
  color: white;
}
.footer-links ul {
  list-style: none;
  padding-left: 0;
}
.footer-links ul li {
  margin-bottom: 12px;
}
.footer-links ul li a {
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}
.footer-links ul li a:hover, .footer-links ul li a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: white;
}
.footer-contact a {
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #fff0f6;
  text-decoration: underline;
}
.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.footer-socials a {
  color: #ffbdd7;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  outline-offset: 3px;
}
.footer-socials a:hover, .footer-socials a:focus {
  color: #fff0f6;
}
/* Footer bottom */
.footer-bottom {
  border-top: 1px solid #fff;
  max-width: 1140px;
  margin: 0 auto;
  padding: 15px 0 10px 0;
  text-align: center;
  position: relative;
  font-size: 0.9rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#toTopBtn {
  background-color: #ff4d92;
  border: none;
  font-size: 1.6rem;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 12px #ff4d92aa;
  outline-offset: 3px;
  transition: background-color 0.25s ease;
}
#toTopBtn:hover, #toTopBtn:focus {
  background-color: #b20f64;
  box-shadow: 0 0 25px #ff4d92cc;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    font-size: 0.85rem;
  }
}
.video-section {
  max-width: 100%;
  margin: 50px auto 70px auto;
  padding: 0 20px;
  color: #ffc0d1;
  text-align: center;
}
.video-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 20px;
  border-bottom: 3px solid #ff4d92;
  padding-bottom: 10px;
}
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 25px #ff4d92aa;
  background-color: #2f001f;
}
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  outline: none;
}

/* Accessibility helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Responsive Font Scaling */
@media (max-width: 300px) {
  .video-section h2 {
    font-size: 2rem;
  }
}
.content-box {
  max-width: 1100px;
  margin: 50px auto;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 0 15px;
  color: #ffd5df;
}

.content-image img {
  width: 460px;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 25px #ff4e92bb;
  object-fit: cover;
}

.content-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff0f6;
}

.content-text p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 550px;
  color: white;
}

/* Mobile responsiveness: stack vertically */
@media (max-width: 768px) {
  .content-box {
    flex-direction: column;
    text-align: center;
  }
  .content-box h1 {
    font-size: 2rem;
    color: white;
}
  .content-text p {
    max-width: 90%;
  }
}
.tags-section, .location-section {
  max-width: 1100px;
  margin: 50px auto 70px auto;
  padding: 0 15px;
  color: #ffd1e3;
}

.tags-section h4,
.location-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 25px;
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
  text-align: center;
  color: white;
}

/* Tags Section */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.tag-btn {
  background: #aa0f0f;
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  box-shadow: 0 0 20px #ff6fb1aa;
  transition: background-color 0.3s ease;
}
.tag-btn:hover, .tag-btn:focus {
  background: #b20070;
  outline: none;
}

/* Location Section */

.location-list {
  list-style: none;
  max-width: 500px;
  margin: 0 auto 30px auto;
  padding-left: 0;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #ffd1e3cc;
}
.location-list li {
  margin-bottom: 12px;
}

.location-section {
  max-width: 900px;
  margin: 50px auto 70px auto;
  padding: 0 15px;
  color: #ffd2e0;
  text-align: center;
}

.location-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 25px;
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
}

.location-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.loc-btn {
  background-color: #aa0f0f;
  border: none;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  box-shadow: 0 0 20px #ff6fb1aa;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.loc-btn:hover,
.loc-btn:focus {
  background-color: #c83776;
  outline: none;
  box-shadow: 0 0 30px #ff46a6cc;
}

/* Highlight selected location */
.loc-btn[aria-label$="Selected"] {
  background-color: #ff5fa2;
  box-shadow: 0 0 30px #ff2b73cc;
  cursor: default;
}

/* Responsive google map container for aspect ratio */
.google-maps {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 15px;
  box-shadow: 0 0 30px #ff4d92cc;
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  border-radius: 15px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .location-buttons {
    gap: 12px;
  }
  .loc-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}
.booking-contact-section {
  max-width: 1140px;
  margin: 50px auto 80px auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  flex-wrap: wrap;
  justify-content: center;
}

.booking-form-container, .contact-info {
  background-color: #a50860;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 0 30px #ea79beaa;
  flex: 1 1 400px;
  max-width: 480px;
}

.booking-form-container h4, .contact-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-bottom: 3px solid #fff;
  padding-bottom: 8px;
  text-align: center;
  color: #fff;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #fff;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="date"],
form input[type="time"],
form textarea {
  width: 100%;
  padding: 11px 14px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  box-shadow: inset 0 0 8px #ff94c5;
  color: #3c003a;
}

form input:focus, form textarea:focus {
  outline: 2px solid #ff8ac3;
}

form textarea {
  resize: vertical;
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 14px 0;
  background-color: #aa0f0f;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 25px #ff7eb1;
  transition: background-color 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #c71762;
  box-shadow: 0 0 35px #ff4d92;
}

/* Contact info styles */
.contact-info address p {
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 600;
}
.contact-info a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.3s ease;
}
.contact-info a:hover, .contact-info a:focus {
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .booking-contact-section {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .booking-form-container, .contact-info {
    max-width: 90%;
  }
}
