/* --- Variables & Core Setup --- */
:root {
  --color-dark: #1A1610;
  --color-dark-tone: #24201a;
  --color-gold: #C9A84C;
  --color-gold-hover: #a07a20;
  --color-light: #fdfdfd;
  --color-light-tone: #fcf8f0;
  --color-muted: #8a7a60;
  --color-border: #e8dfc8;

  --font-heading: "Cormorant Garamond", serif;
  --font-body: "DM Sans", sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Overrides */
.pt-5,
.py-5 {
  padding-top: 1rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 2rem !important;
}


body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-light);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  color: var(--color-dark);
}

label,
ul,
.row {
  font-family: var(--font-body);
}


a {
  transition: var(--transition-smooth);
}

a:hover {
  text-decoration: none;
}

.gold-text {
  color: var(--color-gold);
}

.text-dark {
  color: var(--color-dark) !important;
}

.text-muted {
  color: #000 !important;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-gold);
}

.text-left .section-title::after,
.about-text .section-title::after {
  left: 0;
  transform: none;
}

.bg-light-tone {
  background-color: var(--color-light-tone);
}

.bg-dark-tone {
  background-color: var(--color-dark-tone);
}

/* --- Buttons --- */
.btn-gold {
  display: inline-block;
  background-color: var(--color-gold);
  color: #fff;
  padding: 12px 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  border: 2px solid var(--color-gold);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-gold:hover {
  background-color: white;
  color: var(--color-gold);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold {
  display: inline-block;
  background-color: transparent;
  color: var(--color-gold);
  padding: 12px 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  border: 2px solid var(--color-gold);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-outline-gold:hover {
  background-color: var(--color-gold);
  color: #fff;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* --- Navbar (Glassmorphism) --- */
.custom-nav {
  position: sticky;
  top: 0;
  left: 0;
  padding: 10px 0;
  transition: var(--transition-smooth);
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  /* subtle shadow */
}

.custom-nav.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.brand-logo {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

.brand-logo img {
  max-height: 70px;
  width: auto;
  transition: var(--transition-smooth);
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
}

.why-split-row {
  align-items: stretch !important;
}

.custom-nav .nav-link {
  color: #111111 !important;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
  margin: 0 10px;
  position: relative;
  transition: var(--transition-smooth);
}

.custom-nav .nav-link:hover {
  color: var(--color-gold) !important;
}

.custom-nav .nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.custom-.navbar .btn-gold:hover {
  color: var(--color-dark) !important;
}

/* Venue Gallery Swiper */
.venue-gallery-swiper {
  padding-bottom: 40px;
}

.venue-gallery-img-wrapper {
  overflow: hidden;
  border-radius: 12px;
  border: 3px solid transparent;
  transition: all 0.4s ease;
  position: relative;
}

.venue-gallery-img-wrapper:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: none !important;
}

.venue-gallery-img-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.venue-gallery-img-wrapper:hover img {
  transform: scale(1.1);
}

.venue-gallery-pagination .swiper-pagination-bullet-active {
  background: var(--color-gold);
}

.custom-nav.scrolled .brand-logo img {
  max-height: 65px;
}

.custom-nav.scrolled .nav-link {
  color: #111111 !important;
}

.custom-nav.scrolled .nav-link:hover {
  color: var(--color-gold) !important;
}

.btn-book {
  border: none;
  padding: 8px 10px !important;
  color: #111111 !important;
}

.btn-book:hover {
  background: transparent;
  color: var(--color-gold) !important;
}

.custom-toggler {
  border-color: rgba(0, 0, 0, 0.2);
  padding: 8px 12px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991px) {
  .custom-nav {
    background: #ffffff !important;
  }

  .navbar-collapse {
    background: #ffffff !important;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-title {
  font-size: 5rem;
  font-style: italic;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1px;
  max-width: 600px;
  margin: 0 auto;
}

/* --- About Section Redesign (Full-Width Refined) --- */
.about {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0 20px 0;
}

.about .row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.about-collage {
  position: relative;
  height: 480px;
  width: 100%;
}

.collage-item {
  position: absolute;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.collage-item.main {
  width: 80%;
  height: 90%;
  top: 0;
  left: 0;
  z-index: 2;
}

.collage-item.secondary {
  width: 60%;
  height: 55%;
  bottom: 0;
  right: 0;
  z-index: 4;
  border: 10px solid #fff;
}

.about-text-wrapper {
  padding: 40px 0 40px 30px;
}

.about-experience-badge {
  position: absolute;
  bottom: 15%;
  left: 40px;
  background: #b8860b;
  color: #fff;
  padding: 25px 30px;
  border-radius: 15px;
  z-index: 5;
  text-align: center;
  box-shadow: 0 12px 30px rgba(184, 134, 11, 0.4);
  animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.about-text-wrapper .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-text-wrapper .gold-text {
  font-family: 'Montserrat', sans-serif;
  color: #b8860b;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 25px;
  display: block;
}

.about p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 95%;
}

@media (max-width: 992px) {
  .contact-map-side {
    min-height: 350px;
  }
}

/* Footer Premium */
.footer-premium {
  background: #080808;
  color: #f1f1f1;
  padding: 90px 0 0;
  font-family: 'DM Sans', sans-serif;
  border-top: 3px solid var(--color-gold);
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.5);
}

.footer-logo {
  max-height: 100px;
}

.footer-premium p {
  font-size: 14px;
  color: #999;
  line-height: 1.8;
}

.footer-head {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--color-gold);
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: #1a1a1a;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.social-links a:hover {
  background: var(--color-gold);
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(201, 168, 76, 0.4);
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  gap: 12px;
}

.footer-contact .iconify {
  color: var(--color-gold);
  font-size: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 60px;
  padding: 25px 0;
  border-top: 1px solid #222;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 13px;
  color: #666;
}

@media (max-width: 992px) {
  .about-collage {
    height: 450px;
    margin-bottom: 40px;
    padding-left: 0;
  }

  .about-text-wrapper {
    padding: 20px 5%;
  }

  .collage-item.main {
    width: 85%;
    height: 80%;
  }

  .collage-item.secondary {
    width: 65%;
    height: 45%;
    bottom: 0;
    right: 5%;
  }

  .about-text-wrapper .section-title {
    font-size: 2.5rem;
  }
}


/* --- Services Section --- */
.services-section {
  background-color: #ffeee3;
  /* Soft mint background */
  padding: 40px 0 80px 0;
}

/* Header Styling */
.sub-title {
  color: #b8860b;
  font-size: 18px;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.main-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 2px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.line {
  width: 60px;
  height: 1px;
  background-color: #b8860b;
  margin: 0 15px;
}

.divider-icon {
  font-size: 40px;
  color: #b8860b;
}

/* Card Styling */
.service-card {
  background: #ffffff;
  padding: 50px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon {
  font-size: 35px;
  color: #5ba38e;
  margin: 0 15px;
}

.dash {
  width: 30px;
  height: 2px;
  background-color: #5ba38e;
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #002d4b;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #777;
  margin-bottom: 0;
}

/* --- Premium Service Swiper Layout --- */
.services-section {
  padding: 50px 0;
  background-color: #fdfaf5;
  overflow: hidden;
}

.services-swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
}

.services-swiper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 320px;
  /* Base width for coverflow */
  height: 380px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s;
}

.services-swiper .swiper-slide-active {
  box-shadow: none !important;
}

.service-slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.service-slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  z-index: 1;
}

.service-slider-content {
  position: relative;
  z-index: 3;
  padding: 30px;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.swiper-slide-active .service-slider-content {
  transform: translateY(0);
}

.service-slider-title {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-premium-discover {
  display: inline-block;
  background: #d48b37;
  /* Gold */
  color: #fff !important;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}

.swiper-slide-active .btn-premium-discover {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.3s;
}

.btn-premium-discover:hover {
  background: #fff;
  color: #d48b37 !important;
  box-shadow: 0 5px 15px rgba(212, 139, 55, 0.4);
}

.services-swiper .swiper-pagination-bullet {
  background: #d48b37 !important;
}

.services-swiper .swiper-pagination-bullet-active {
  width: 30px !important;
  border-radius: 5px !important;
}

/* --- Gallery Section --- */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item img {
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-overlay span {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* testimonial Styling*/
.corporate-reviews {
  padding: 60px 20px;
}

.corporate-reviews .container .rows {
  position: relative;
  width: 100%;
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  transition: 0.5s ease;
  gap: 15px;
}

.corporate-reviews .container .rows .item {
  position: relative;
  min-width: 400px;
  height: auto;
}

.corporate-reviews .container .rows .item .review-card {
  height: 100%;
}

.corporate-reviews .container .nav-arrows {
  display: flex;
}

.corporate-reviews .container .nav-arrows button {
  position: relative;
  width: 50px;
  height: 50px;
  align-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* --- Booking Form --- */
.premium-form .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  color: #fff;
  padding: 10px 0;
}

.premium-form .form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--color-gold);
  background: transparent;
  color: #fff;
}

/* Floating Labels */
.floating-label {
  position: absolute;
  top: 10px;
  left: 15px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s ease all;
  pointer-events: none;
}

.col-md-6.position-relative {
  padding-left: 15px;
}

.premium-form input.form-control,
.premium-form textarea.form-control,
.premium-form select.form-control {
  padding-left: 0;
  /* Align with border instead of having padding in BS4 */
}

/* Better positioning when focusing or non-empty */
.premium-form .form-control:focus~.floating-label,
.premium-form .form-control:not(:placeholder-shown)~.floating-label {
  top: -15px;
  font-size: 0.8rem;
  color: var(--color-gold);
}

.premium-form select.form-control {
  color: rgba(255, 255, 255, 0.5);
}

.premium-form select.form-control option {
  color: var(--color-dark);
}

/* Address a specific bug with select floating label not going up since placeholder-shown doesn't work on select */
.premium-form select.form-control~.floating-label {
  top: -15px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Footer Redesign --- */
.footer {
  background-color: #111111;
  /* Deeper, more premium charcoal */
  padding: 100px 0 40px;
  color: #fff;
  border-top: 1px solid rgba(184, 134, 11, 0.2);
  /* Subtle gold border */
  position: relative;
}

.footer-logo {
  max-height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
  /* Makes the logo white for dark bg if needed, or adjust based on actual logo */
  transition: transform 0.3s ease;
}

/* If the logo should retain its colors, remove the filter and maybe add a slight glow */
/* .footer-logo { filter: drop-shadow(0 0 5px rgba(184, 134, 11, 0.2)); } */

.footer-logo:hover {
  transform: translateY(-5px);
}

.text-light-muted {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  color: var(--color-gold);
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-gold);
  transform: translateX(10px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer .iconify {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-top: 4px;
}

/* --- Why Choose Us Slider --- */
.why-choose-us {
  padding: 40px 0;
  background-color: var(--color-light);
}

.why-split-row>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-choose-split-swiper {
  width: 100%;
  padding: 0;
  height: 100%;
  flex-grow: 1;
  min-height: 450px;
  max-height: 550px;
  /* Safety cap */
}

.why-choose-split-swiper .swiper-slide {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: none !important;
}

.why-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-slide {
  width: 400px;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: none !important;
}

.why-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.why-slide:hover img {
  transform: scale(1.1);
}

.why-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  z-index: 2;
}

.why-slide-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.why-slide-content p {
  font-size: 1rem;
  opacity: 0.9;
}

/* --- Testimonials Premium --- */
/* --- Testimonials Premium --- */
.testimonials-premium {
  padding: 1px 0;
  background-color: var(--color-light-tone);
}

.testimonials-swiper {
  padding: 50px 70px 80px;
  /* Space for arrows outside */
  position: relative;
  overflow: visible;
  /* CRITICAL: Allows arrows to stay visible outside the Swiper container */
}

/* Force equal height for Swiper cards */
.testimonials-swiper .swiper-wrapper {
  display: flex !important;
  align-items: stretch !important;
}

.testimonials-swiper .swiper-slide {
  height: auto !important;
  display: flex !important;
}

.testimonial-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  box-shadow: none !important;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.testimonial-card p {
  flex-grow: 1;
  /* Ensures text takes up available space to push footer items if needed */
  margin-bottom: 0;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: none !important;
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

/* Navigation Arrow Styling */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  color: var(--color-gold) !important;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
  background: var(--color-gold);
  color: #fff !important;
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.testimonials-swiper .swiper-button-next {
  right: 0px;
}

.testimonials-swiper .swiper-button-prev {
  left: 0px;
}

@media (max-width: 992px) {
  .testimonials-swiper {
    padding: 50px 0 80px;
    overflow: hidden;
    /* Standard reveal on mobile */
  }

  .testimonials-swiper .swiper-button-next,
  .testimonials-swiper .swiper-button-prev {
    display: none;
  }
}

/* --- Animations (Intersection Observer) --- */
.reveal {


  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  transform: translateX(-50px);
}

.slide-right {
  transform: translateX(50px);
}

.slide-left.active,
.slide-right.active {
  transform: translateX(0);
}

/* Responsive fixes */
@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .hero-title {
    font-size: 3rem;
  }

  .custom-nav {
    background: #ffffff !important;
  }

  .custom-nav .nav-link {
    color: #111111 !important;
    text-align: center;
    padding: 10px 0;
  }

  .custom-nav .nav-link:hover {
    background: transparent;
    color: var(--color-gold) !important;
  }

  .custom-nav .nav-link.dropdown-toggle {
    justify-content: center;
  }

  .navbar-collapse {
    background: #ffffff !important;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
}

/* --- Signature Section (Refined Wide Layout) --- */
.signature-section {
  padding: 80px 0;
  /* Adding top/bottom padding for better spacing */
  background: #fff;
  position: relative;
  overflow: hidden;
}

.signature-section .row.no-gutters {
  margin: 0;
  width: 100%;
  max-width: 1600px;
  /* Capping width for better presentation on wide screens */
  margin: 0 auto;
}

.signature-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  font-size: 15rem;
  font-weight: 950;
  color: rgba(184, 134, 11, 0.04);
  z-index: 1;
  pointer-events: none;
  letter-spacing: 25px;
  white-space: nowrap;
  text-transform: uppercase;
}

.signature-image-container {
  position: relative;
  z-index: 2;
  height: 650px;
  /* Reduced height as requested */
  padding: 20px;
  /* Space around the image to prevent cutting */
}

.signature-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Ensures the focal point isn't cut */
  border-radius: 40px;
  /* Rounded corners for a premium, non-cut look */
  box-shadow: none !important;
}

.signature-text-wrapper {
  padding: 60px 10%;
  background: transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.glass-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-card-1 {
  position: absolute;
  bottom: 50px;
  left: -40px;
  /* Adjusted offset to look better with padded image */
  width: 300px;
  z-index: 3;
  animation: floating-y 5s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.9);
}

.signature-accent {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #b8860b;
  font-size: 1.3rem;
  display: block;
  margin-bottom: 2px;
}

.floating-row {
  background: #fff;
  border: 1px solid rgba(184, 134, 11, 0.1);
  margin-bottom: 20px;
  padding: 25px;
  /* Added internal padding for cards */
}

@media (max-width: 992px) {
  .signature-image-container {
    height: 400px;
    order: -1;
  }

  .signature-text-wrapper {
    padding: 40px 5%;
  }

  .floating-card-1 {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
  }
}

/* --- Premium Gallery Section --- */
.premium-gallery {
  padding: 100px 0;
  background: #fdfcfb;
}

.gallery-header {
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 5%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  aspect-ratio: 4 / 5;
  box-shadow: none !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: none !important;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(184, 134, 11, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay .iconify {
  font-size: 3rem;
  color: #fff;
  background: rgba(184, 134, 11, 0.8);
  padding: 15px;
  border-radius: 50%;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-overlay .iconify {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 15px;
  }
}

/* --- Booking Section --- */
.booking-section {
  position: relative;
  padding: 80px 0;
  background: url('../img/hall.jpg') no-repeat center center/cover;
  background-attachment: fixed;
}

.booking-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.booking-section .container {
  position: relative;
  z-index: 2;
}

.booking-wrapper {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.booking-info-col {
  background: rgba(184, 134, 11, 0.05);
  padding: 80px 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-form-wrapper {
  padding: 80px 60px;
  background: rgba(255, 255, 255, 0.02);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-item .iconify {
  font-size: 2rem;
  color: #b8860b;
}

.contact-item h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.booking-form .form-group {
  margin-bottom: 25px;
}

.booking-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  padding: 15px 20px;
  height: auto;
  transition: all 0.3s ease;
}

.booking-form .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #b8860b;
  box-shadow: none;
}

.booking-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.booking-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
}

.booking-form select option {
  background: #1a1a1a;
  color: #fff;
}

@media (max-width: 992px) {

  .booking-info-col,
  .booking-form-wrapper {
    padding: 50px 30px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

/* About Page Premium Styles */
.about-premium-page {
  padding: 100px 0;
  background: #fff;
}

.about-page-img-wrapper {
  position: relative;
  padding: 20px;
}

.experience-seal {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--hvps-gold);
  color: #fff;
  padding: 30px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 140px;
  height: 140px;
}

.seal-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.seal-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 1px solid #eee;
  padding-top: 40px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  color: var(--hvps-gold);
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
}

.stat-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.vision-card {
  background: #fdfbf7;
  padding: 50px 40px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid #f0e6cc;
}

.vision-card.active {
  background: var(--hvps-dark);
  color: #fff;
  border-color: var(--hvps-dark);
}

.vision-card .iconify {
  font-size: 3rem;
  color: var(--hvps-gold);
  margin-bottom: 25px;
}

.vision-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.expertise-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.pill {
  padding: 12px 30px;
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #555;
  transition: all 0.3s ease;
}

.pill:hover {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

/* Services Page Premium Styles */
.services-premium-page {
  padding: 100px 0;
  background: #fff;
}

.services-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-premium-item {
  background: #fdfbf7;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid #f0e6cc;
  transition: all 0.4s ease;
}

.service-premium-item:hover {
  transform: translateY(-10px);
  box-shadow: none !important;
}

.service-img {
  height: 300px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-premium-item:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 40px;
}

.service-content .iconify {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.service-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .services-premium-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Ultra-Premium Refinements --- */

/* Heritage Section */
.heritage-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.heritage-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.heritage-images {
  position: relative;
  width: 50%;
  height: 600px;
}

.heritage-img-1 {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: none !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.heritage-img-2 {
  width: 60%;
  height: 60%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: none !important;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 15px solid #fff;
}

.heritage-content {
  width: 50%;
}

.heritage-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: var(--color-gold);
  line-height: 1;
  float: left;
  margin-right: 20px;
  margin-top: -10px;
}

/* Glassmorphism Vision Cards */
.vision-card-premium {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 60px 40px;
  border-radius: 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.vision-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}

.vision-card-premium:hover {
  transform: translateY(-15px);
  padding: 80px 60px;
}

/* Classic Split Contact Section (Original) */
.classic-contact {
  padding: 120px 0;
  position: relative;
  background: #111;
}

.classic-contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/hall.jpg') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 1;
}

.classic-contact .container {
  position: relative;
  z-index: 2;
}

.contact-form-panel {
  padding: 80px 0;
  max-width: 700px;
  margin: 0 auto;
}

.classic-input-group {
  position: relative;
  margin-bottom: 35px;
}

.classic-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
}

.classic-input:focus {
  outline: none;
  border-bottom-color: var(--color-gold);
}

.classic-label {
  position: absolute;
  top: 15px;
  left: 0;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: all 0.3s ease;
}

.classic-input:focus~.classic-label,
.classic-input:not(:placeholder-shown)~.classic-label {
  top: -15px;
  font-size: 0.8rem;
  color: var(--color-gold);
}

@media (max-width: 992px) {
  .heritage-layout {
    flex-direction: column;
  }

  .heritage-images,
  .heritage-content {
    width: 100%;
  }

  .heritage-images {
    height: 400px;
  }

  .contact-info-panel {
    padding: 50px 30px;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: #f9f7f0;
  /* Soft cream/pearl */
}

/* Why Choose Us Split Layout */
.why-split-row {
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.why-split-row .col-lg-6 {
  display: flex;
}

.why-split-row .col-lg-6:first-child {
  padding: 40px 15px 40px 20px;
}

.why-choose-split-swiper {
  width: 100%;
  height: 100%;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
}

.why-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-split-content {
  padding: 40px 40px 40px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.why-split-list {
  list-style: none;
  padding: 0;
}

.why-split-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.why-split-list .iconify {
  font-size: 2.2rem;
  color: var(--color-gold);
  flex-shrink: 0;
}

.why-split-list h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-family: var(--font-heading);
}

.why-split-list p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

@media (max-width: 992px) {
  .why-split-row {
    flex-direction: column;
  }

  .why-split-row .col-lg-6:first-child {
    padding: 20px 15px 0 15px;
  }

  .why-choose-split-swiper {
    min-height: auto;
    height: auto;
    aspect-ratio: 16/9;
  }

  .why-split-content {
    padding: 30px 15px;
  }
}

/* --- Heritage Section (Original) --- */
.heritage-section {
  padding: 120px 0;
  background: #fff;
  overflow: hidden;
}

.heritage-layout {
  display: flex;
  align-items: center;
  background: #fdfdfd;
  border: 1px solid var(--color-border);
  border-radius: 40px;
  overflow: hidden;
}

.heritage-images {
  width: 50%;
  height: 600px;
  position: relative;
}

.heritage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heritage-content {
  width: 50%;
  padding: 80px 60px;
}

/* Classic Split Contact Section */
.classic-contact {
  padding: 120px 0;
  position: relative;
  background: #111;
}

.classic-contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/hall.jpg') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 1;
}

.classic-contact .container {
  position: relative;
  z-index: 2;
}

.split-layout {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  overflow: hidden;
}

.contact-info-panel {
  width: 40%;
  background: rgba(201, 168, 76, 0.05);
  padding: 80px 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  color: #fff;
}

.contact-form-panel {
  width: 60%;
  padding: 80px 60px;
}

/* Standardize all Premium Sections Padding */
.premium-gallery,
.booking-section {
  padding: 30px 0;
}

/* --- Royal Testimonials Section --- */
.testimonials-premium {
  padding: 80px 0;
  background-color: #fcfbf9;
  /* Very subtle warm background */
  position: relative;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: none !important;
  border: 1px solid rgba(184, 134, 11, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
  width: 400px;
  max-width: 85vw;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: none !important;
}

.testi-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testi-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  margin-right: 15px;
  box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.testi-header h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 5px 0;
  color: #1a1a1a;
}

.stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin: 0;
  flex-grow: 1;
  /* Pushes content evenly */
}

/* Adjust pagination dots */
.testimonials-premium .swiper-pagination-bullet {
  background: var(--color-gold);
  opacity: 0.3;
}

.testimonials-premium .swiper-pagination-bullet-active {
  opacity: 1;
}

.testimonials-swiper {
  padding-bottom: 60px;
  /* Space for pagination */
  padding-top: 20px;
}

@media (max-width: 992px) {

  .heritage-layout,
  .split-layout {
    flex-direction: column;
  }

  .heritage-images,
  .heritage-content,
  .contact-info-panel,
  .contact-form-panel {
    width: 100%;
  }

  .heritage-images {
    height: 400px;
  }

  .contact-info-panel {
    padding: 50px 30px;
  }
}

/* Custom Bootstrap Padding Overrides */
.pl-5,
.px-5 {
  padding-left: 1rem !important;
}

.pr-5,
.px-5 {
  padding-right: 1rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 1rem !important;
}

/* --- About Page Redesign Premium Styles --- */
/* Premium Intro */
.premium-about-intro {
  background: #fff;
  overflow: hidden;
}

.about-desc {
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-intro-images {
  position: relative;
  padding: 20px;
}

.about-intro-images::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: var(--color-gold);
  opacity: 0.1;
  border-radius: 20px;
  z-index: 0;
}

.main-img {
  position: relative;
  z-index: 1;
  border-radius: 15px;
  box-shadow: none !important;
}

/* Established Section */
.established-section {
  background: var(--color-light-tone);
}

.established-desc {
  font-size: 1.1rem;
  line-height: 1.8;
}

.established-swiper {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none !important;
}

.established-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.established-pagination .swiper-pagination-bullet {
  background: var(--color-gold);
}

/* Amenities Section */
.amenities-section {
  background: #fff;
}

.amenity-item {
  padding: 20px 10px;
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.amenity-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border-color: rgba(201, 168, 76, 0.3);
}

.amenity-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.amenity-title {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-dark);
}

/* Mission & Vision Section */
.mv-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  box-shadow: none !important;
  position: relative;
  overflow: hidden;
  border-left: 5px solid var(--color-gold);
  transition: transform 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
}

.mv-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.mv-icon {
  font-size: 30px;
  color: var(--color-gold);
}

.mv-title {
  font-family: var(--font-body);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.mv-desc {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
}

.mv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mv-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: #555;
  font-size: 0.95rem;
}

.list-icon {
  color: var(--color-gold);
  font-size: 20px;
  margin-right: 10px;
  margin-top: 2px;
}

.mv-card.border-green .list-icon {
  color: #2e7d32;
}

/* Arrivals & Access */
.access-section {
  background: #fdfdfd;
}

.access-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.access-card:hover {
  transform: translateY(-5px);
  box-shadow: none !important;
}

.access-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.access-icon {
  font-size: 35px;
  color: var(--color-gold);
}

.access-title {
  font-family: var(--font-body);
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--color-dark);
}

.access-desc {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.access-badge {
  display: inline-block;
  padding: 8px 15px;
  background: #f8f9fa;
  color: #555;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 20px;
}

/* FAQ Section */
.faq-section {
  background: #fdfaf5;
}

.whatsapp-box {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-accordion .card {
  background: transparent;
}

.custom-accordion .btn-link {
  color: var(--color-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  white-space: normal;
}

.custom-accordion .btn-link:hover,
.custom-accordion .btn-link:focus {
  text-decoration: none;
  box-shadow: none;
}

.custom-accordion .card-body {
  font-size: 1rem;
  line-height: 1.6;
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

/* --- New Services Page Specific Styles --- */
.service-grid-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.service-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: none !important;
  border-color: rgba(201, 168, 76, 0.3) !important;
}

.decor-card {
  transition: all 0.3s ease;
  cursor: pointer;
  border-left: 3px solid transparent !important;
}

.decor-card:hover {
  transform: translateY(-5px);
  box-shadow: none !important;
  border-left-color: var(--color-gold) !important;
}

.why-card {
  transition: all 0.4s ease;
  border-bottom: 3px solid transparent !important;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: none !important;
  border-bottom-color: var(--color-gold) !important;
}

.service-media-wrapper:hover img {
  transform: scale(1.05);
}

/* --- Header Dropdown Improvements --- */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.dropdown-item:active,
.dropdown-item.active {
  background-color: var(--color-gold) !important;
  color: #fff !important;
}

.dropdown-item:hover {
  background-color: rgba(201, 168, 76, 0.1) !important;
  color: var(--color-gold) !important;
}

/* --- Floating Contact Buttons --- */
.floating-contact {
  position: fixed;
  bottom: 30px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1050;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  position: relative;
  box-shadow: none !important;
  transition: transform 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-wa {
  background-color: #25D366;
  border: 3px solid rgba(255, 255, 255, 0.9);
  background-clip: padding-box;
  box-shadow: none !important;
}

.float-wa .iconify {
  color: #fff;
  font-size: 30px;
}

.float-call {
  background-color: #0044FF;
  border: 3px solid rgba(255, 255, 255, 0.9);
  background-clip: padding-box;
  box-shadow: none !important;
}

.float-call .iconify {
  color: #fff;
  font-size: 26px;
}

/* --- Booking Modal --- */
#bookingPopup .modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

#bookingPopup .modal-header {
  background-color: var(--color-light-tone);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px 25px;
}

#bookingPopup .modal-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-dark);
}

#bookingPopup .modal-body {
  padding: 20px 25px;
  background: #fff;
}

.booking-modal-form label {
  font-weight: 600;
  font-size: 0.85rem;
  color: #444;
  margin-bottom: 3px;
}

.booking-modal-form .form-control {
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 8px 12px;
  box-shadow: none;
  font-size: 0.9rem;
  height: auto;
}

.booking-modal-form .form-control:focus {
  border-color: var(--color-gold);
}

.btn-booking-submit {
  background-color: var(--color-gold);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px;
  border-radius: 6px;
  border: none;
  width: 100%;
  transition: all 0.3s ease;
}

/* --- Standardized Service Hero --- */
.service-hero {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
}

.service-hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.service-hero-desc {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 35px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.service-hero-btn {
  display: inline-block;
  background-color: #fff;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  border-radius: 50px;
  padding: 16px 45px;
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.service-hero-btn:hover {
  background-color: var(--color-gold);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(184, 150, 61, 0.4);
}

@media (max-width: 768px) {
  .service-hero {
    height: 450px;
  }

  .service-hero-title {
    font-size: 38px;
  }

  .service-hero-desc {
    font-size: 17px;
  }

  /* Prevent floating buttons from overlapping text */
  .floating-contact {
    bottom: 15px;
    left: 15px;
    gap: 10px;
  }

  .float-btn {
    width: 45px;
    height: 45px;
  }

  .float-wa .iconify {
    font-size: 24px;
  }

  .float-call .iconify {
    font-size: 20px;
  }

  .why-choose-us {
    padding-bottom: 80px; /* Extra space for floating buttons */
  }
}