/* --- 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: 'Fraunces', serif;
  --font-body: 'Jost', 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: 500;
  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: clamp(1.8rem, 4vw, 2.8rem);
  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);
}

/* Top Bar css */
.top-bar{
    background:#120F0C;
    color:#fff;
    font-size:14px;
    padding:10px 0;
    width:100%;
}

.top-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:18px;
}

.top-bar a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}
.top-bar svg {
    width:18px;
    height:18px;
}
.top-bar a:hover{
    color:#d4af37;
}

.top-bar i{
    color:#d4af37;
    margin-right:6px;
}

/* Navbar below top bar */
.custom-nav{
    top:44px;
}

@media(max-width:991px){

    .top-content{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .top-left,
    .top-right{
        justify-content:center;
        flex-wrap:wrap;
        gap:12px;
    }

    .custom-nav{
        top:80px;
    }
}

/* --- Navbar (Glassmorphism) --- */
.custom-nav {
  position: sticky;
  top: 0;
  left: 0;
  padding: 10px 0;
  transition: var(--transition-smooth);
  background: rgba(18, 15, 12, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 74, .18);
  /* subtle shadow */
}

.custom-nav.scrolled {
  padding: 10px 0;
  background: #101010;
  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: 90px;
  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: #e8e0d2 !important;
    font-size: .82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    font-weight: 400;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

        .dropdown-menu.inner {
        width: 260px;
        background: #111;
        padding: 15px 0;
        border-top: 2px solid #C9A24A;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
        color:#FFF;
        }
        .dropdown-menu.inner .dropdown-item {
            color:#e8e0d2;
            font-size:0.72rem;
            text-transform:uppercase;
            letter-spacing: 1.5px;
            padding: 12px 22px;
        }
  .enquiry-btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:12px 24px;
  font-size:.72rem;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:500;
  border-radius:2px;
  cursor:pointer;
  transition:all .5s cubic-bezier(.22,.8,.2,1);
  border:1px solid transparent;
  position:relative;
  overflow:hidden;
}
.enquiry-btn{
  background:linear-gradient(135deg,#C9A24A,#E7C873);
  color:#120F0C;
  box-shadow:0 14px 30px -12px rgba(201,162,74,.6);
}
.enquiry-btn:hover{transform:translateY(-3px);box-shadow:0 20px 38px -12px rgba(201,162,74,.75);}
.enquiry-btn svg{width:16px;height:16px;transition:transform .4s cubic-bezier(.22,.8,.2,1);}

.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: #FFF !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: 992px) {

  .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;
    overflow: hidden;
}

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

.hero-slider .swiper-wrapper {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #000;
}

.hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
}

.hero-slide.swiper-slide-active img {
    animation: heroZoomIn 5s ease-out forwards;
}

@keyframes heroZoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
}

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

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


/* --- 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-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.2;
  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;
  overflow: hidden;
}

/* 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: 280px;
  max-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;
  /* 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);
  overflow: hidden;
}

.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: 100%;
  max-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);
  overflow: hidden;
}

.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(-30px);
}

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

.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 {
    padding:10px;
  }

  .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;
  overflow: hidden;
}

.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: 1;
  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 {
    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: 500px;
  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;
  overflow: hidden;
}

.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 */
  }

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

  .section-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }

  .about-collage {
    height: 300px;
    margin-bottom: 30px;
  }

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

  .collage-item.secondary {
    width: 55%;
    height: 40%;
  }

  .signature-bg-text {
    font-size: 6rem;
    letter-spacing: 10px;
  }

  .signature-image-container {
    height: 300px;
  }

  .heritage-content {
    padding: 40px 20px;
  }

  .booking-info-col,
  .booking-form-wrapper {
    padding: 40px 20px;
  }

  .corporate-reviews .container .rows .item {
    min-width: 280px;
  }

  .classic-contact {
    padding: 60px 0;
  }
}

/* === Small Phones (max-width: 576px) === */
@media (max-width: 576px) {
  .section-padding {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

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

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .btn-gold {
    padding: 10px 25px;
    font-size: 14px;
  }

  .about-collage {
    height: 320px;
  }

  .collage-item.main {
    width: 75%;
    height: 70%;
  }

  .collage-item.secondary {
    width: 50%;
    height: 50%;
  }

  .signature-bg-text {
    font-size: 3.5rem;
    letter-spacing: 5px;
  }

  .signature-image-container {
    height: 220px;
  }

  .heritage-content {
    padding: 30px 15px;
  }

  .booking-info-col,
  .booking-form-wrapper {
    padding: 30px 15px;
  }

  .testimonial-card {
    width: 90vw;
    padding: 20px;
  }

  .testimonials-swiper {
    padding: 30px 0 60px;
  }

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

  .gallery-header {
    padding: 0 15px;
  }
}

/* === Very Small Phones (max-width: 400px) === */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .signature-bg-text {
    font-size: 2.5rem;
  }
}

/* === Contact Section Responsive (index.php inline styles override) === */
@media (max-width: 768px) {
  #contact > div > div:last-child {
    flex-direction: column !important;
  }

  #contact > div > div:last-child > div,
  #contact > div > div:last-child > form,
  #contact > div > div:last-child > div:last-child {
    min-width: 100% !important;
    flex: none !important;
  }

  #contact h2 {
    font-size: 24px !important;
  }
}

@media (max-width: 576px) {
  /* --- Hero Section --- */
.hero {
  height: 400px;
}
  .hero-overlay {
  background:rgba(0,0,0,0.2)
  }
    .brand-logo img {
   max-height: 100px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap:12px !important;
    }
  .premium-gallery-item {
    height: 100% !important;
    aspect-ratio:1;
}
  .contact-info {
  font-size:20px;
  }
  #contact {
    padding: 30px 0 !important;
  }

  #contact > div {
    padding: 0 12px !important;
  }

  #contact > div > div {
    padding: 0 12px !important;
  }

  #contact h2 {
    font-size: 20px !important;
  }

  #contact input,
  #contact select,
  #contact textarea {
    font-size: 14px !important;
  }
}

/* Package Page and Section */

    .sfp-page * { box-sizing: border-box; }
    .sfp-page { font-family: 'DM Sans', -apple-system, sans-serif; color: #1A1610; }
    .sfp-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

    .sfp-section { padding: 80px 0; }
    .sfp-section--alt { background: #FCF8F2; }
    .sfp-eyebrow { display: block; text-align: center; font-family: 'Playfair Display', serif; font-style: italic; color: #b8860b; font-size: 1.1rem; margin-bottom: 8px; }
    .sfp-heading { text-align: center;  font-weight: 500; font-size: clamp(24px, 3.2vw, 34px); margin: 0 0 14px; }
    .sfp-heading em { color: #C9A84C; font-style: italic; }
    .sfp-subtext { text-align: center; font-size: 16px; color: #5a5245; max-width: 640px; margin: 0 auto 50px; line-height: 1.7; }

    /* Package cards */
    .sfp-grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .sfp-card {
      background: #fff; border-radius: 18px; border: 1px solid rgba(201,168,76,0.14);
      box-shadow: 0 15px 38px rgba(26,22,16,0.06); padding: 30px 22px;
      display: flex; flex-direction: column; position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .sfp-card:hover { transform: translateY(-8px); box-shadow: 0 25px 55px rgba(201,168,76,0.2); }
    .sfp-card--featured { background: linear-gradient(160deg, #1A1610, #2b241a); color: #fff; }
    .sfp-badge {
      position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
      background: linear-gradient(135deg, #C9A84C, #E7C873); color: #1A1610;
      font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
      padding: 5px 16px; border-radius: 20px; box-shadow: 0 6px 16px rgba(201,168,76,0.4);
    }
    .sfp-card-name { font-weight: 500; font-size: 24px; margin: 6px 0 2px; }
    .sfp-card-pax { font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.65; margin-bottom: 16px; }
    .sfp-card-price { font-size: 28px; font-weight: 700; color: #C9A84C; }
    .sfp-card-price span { font-size: 14px; font-weight: 400; opacity: 0.9; font-family: 'Jost', sans-serif; }
    .sfp-card-price-note { font-size: 12px; opacity: 0.8; margin-bottom: 18px; }
    .sfp-card-list { list-style: none; margin: 0 0 22px; padding: 0; flex-grow: 1; }
    .sfp-card-list li { display: flex; gap: 8px; font-size: 15px; line-height: 1.5; margin-bottom: 9px; }
    .sfp-card-list li svg { flex: 0 0 13px; margin-top: 3px; }
    .sfp-card:not(.sfp-card--featured) .sfp-card-list li,
    .sfp-card:not(.sfp-card--featured) .sfp-card-name { color: #3a342a; }
    .sfp-card--featured .sfp-card-list li { color: #e8e2d6; }
    .sfp-card-cta { display: block; text-align: center; padding: 11px 0; border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; transition: transform 0.3s ease; }
    .sfp-card:not(.sfp-card--featured) .sfp-card-cta { background: linear-gradient(135deg, #C9A84C, #E7C873); color: #1A1610; }
    .sfp-card--featured .sfp-card-cta { background: #fff; color: #1A1610; }
    .sfp-card-cta:hover { transform: translateY(-3px); }

    /* Detailed menu accordion */
    .sfp-menu-block { background: #fff; border: 1px solid rgba(201,168,76,0.14); border-radius: 16px; margin-bottom: 16px; overflow: hidden; }
    .sfp-menu-head {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 26px; cursor: pointer; user-select: none;
    }
    .sfp-menu-head h3 { font-size: 18px; margin: 0; color: #1A1610; }
    .sfp-menu-head span.sfp-arrow { color: #C9A84C; font-size: 18px; transition: transform 0.3s ease; }
    .sfp-menu-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 26px; }
    .sfp-menu-block.open .sfp-menu-body { max-height: 900px; padding-bottom: 24px; }
    .sfp-menu-block.open .sfp-arrow { transform: rotate(180deg); }
    .sfp-menu-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 30px; }
    .sfp-menu-cat h5 { font-size: 16px; text-transform: uppercase; letter-spacing: 0.5px; color: #b8860b; margin: 14px 0 8px; }
    .sfp-menu-cat ul { list-style: none; margin: 0; padding: 0; }
    .sfp-menu-cat li { font-size: 16px; color: #4a4238; margin-bottom: 5px; }

    /* Price table */
    .sfp-table-wrap { background: #fff; border-radius: 18px; border: 1px solid rgba(201,168,76,0.14); box-shadow: 0 15px 38px rgba(26,22,16,0.06); overflow: hidden; }
    .sfp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
    .sfp-table th { background: #1A1610; color: #C9A84C; font-family: 'Playfair Display', serif; padding: 16px 20px; text-align: left; }
    .sfp-table td { padding: 13px 20px; border-bottom: 1px solid rgba(201,168,76,0.12); color: #3a342a; }
    .sfp-table tr:last-child td { border-bottom: none; }
    .sfp-table tr:hover td { background: #FFF8F0; }

    /* Terms accordion (simple list) */
    .sfp-terms { background: #fff; border-radius: 16px; border: 1px solid rgba(201,168,76,0.14); padding: 30px 32px; }
    .sfp-terms ul { margin: 0; padding-left: 20px; }
    .sfp-terms li { font-size: 15px; color: #4a4238; line-height: 1.8; margin-bottom: 6px; }

    /* CTA */
    .sfp-cta-block { background: linear-gradient(135deg, #C9A84C, #E7C873); border-radius: 24px; padding: 50px 30px; text-align: center; box-shadow: 0 25px 55px rgba(201,168,76,0.3); }
    .sfp-cta-block h2 { font-size: 28px; margin: 0 0 12px; color: #1A1610; }
    .sfp-cta-block p { font-size: 14px; color: #3a3226; margin: 0 0 24px; }
    .sfp-cta-btn { background: #1A1610; color: #fff; padding: 14px 34px; border-radius: 8px; font-weight: 700; font-size: 14px; text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .sfp-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 32px rgba(26,22,16,0.3); }

    @media (max-width: 992px) { .sfp-grid4 { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) {
      .sfp-grid4 { grid-template-columns: 1fr; }
      .sfp-menu-cols { grid-template-columns: 1fr; }
      .sfp-table { font-size: 12.5px; }
      .sfp-table th, .sfp-table td { padding: 10px 12px; }
    }