/* Shri Mahakaleshwar Bhakta Niwas - Modern Custom Styles */
:root {
    --navy: #0d1b2a;
    --navy-light: #1b263b;
    --gold: #c9a227;
    --gold-dark: #a67c00;
    --gold-light: #e8d48b;
    --cream: #f8f1e3;
    --cream-dark: #efe6d5;
    --text: #1a1a2e;
    --muted: #6c757d;
    --success-green: #198754;
    --whatsapp: #25d366;
    --shadow-soft: 0 8px 30px rgba(13, 27, 42, 0.08);
    --shadow-hover: 0 16px 40px rgba(13, 27, 42, 0.14);
    --radius: 14px;
    --radius-sm: 10px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background-color: #fff;
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .brand-name, .display-font {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

img {
    max-width: 100%;
    height: auto;
}

/* Top Bar */
.top-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.85rem;
}
.top-bar a {
    color: rgba(255, 255, 255, 0.92);
    transition: color 0.2s;
}
.top-bar a:hover {
    color: var(--gold);
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 18px rgba(13, 27, 42, 0.07);
    padding: 0.55rem 0;
    transition: box-shadow 0.3s;
}
.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(13, 27, 42, 0.12);
}
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}
.brand-name {
    display: block;
    font-size: 1.22rem;
    color: var(--navy);
    line-height: 1.15;
}
.brand-sub {
    display: block;
    font-size: 0.72rem;
    color: var(--gold-dark);
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.nav-link {
    color: var(--navy) !important;
    font-weight: 500;
    font-size: 0.94rem;
    padding: 0.5rem 0.9rem !important;
    transition: color 0.2s;
    position: relative;
}
.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark) !important;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 220px;
    margin-top: 0.4rem !important;
    border: 1px solid rgba(13, 27, 42, 0.06);
}
.dropdown-item {
    border-radius: 8px;
    padding: 0.55rem 1rem;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--navy);
    transition: background 0.2s, color 0.2s;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold-dark);
}
.dropdown-item i {
    width: 1.25rem;
}
.dropdown-toggle::after {
    margin-left: 0.35rem;
    vertical-align: 0.15em;
}

/* Buttons */
.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff !important;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-whatsapp:hover {
    background: #1da851;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff !important;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-gold:hover {
    filter: brightness(1.08);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(201, 162, 39, 0.35);
}
.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold-dark);
    font-weight: 600;
    background: transparent;
    border-radius: 8px;
    transition: all 0.2s;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff !important;
    border-color: var(--gold);
}

/* Hero Slider */
.hero-slider .carousel-item {
    height: 560px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(13, 27, 42, 0.88) 0%, rgba(13, 27, 42, 0.55) 55%, rgba(13, 27, 42, 0.4) 100%);
}
.hero-slider .carousel-caption {
    bottom: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    left: 0;
    right: 0;
    padding: 0;
}
.hero-slider .carousel-caption .container {
    position: relative;
    z-index: 2;
}
.hero-slider .carousel-indicators {
    bottom: 1.5rem;
}
.hero-slider .carousel-indicators [data-bs-target] {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
    border: none;
    opacity: 1;
}
.hero-slider .carousel-indicators .active {
    background-color: var(--gold);
    transform: scale(1.15);
}
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 50px;
    opacity: 0.85;
}
.hero-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.18);
    border: 1px solid rgba(201, 162, 39, 0.5);
    color: var(--gold-light);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(4px);
}
.hero-slider h1 {
    font-size: clamp(2.1rem, 5vw, 3.5rem);
    line-height: 1.12;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.hero-slider .lead {
    font-size: 1.12rem;
    opacity: 0.92;
    max-width: 560px;
}

/* Trust strip under hero */
.trust-strip {
    background: var(--navy);
}
.trust-strip span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Sections */
.section-padding {
    padding: 4.75rem 0;
}
.section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.section-subtitle {
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 2.75rem;
    font-size: 1.05rem;
}
.text-gold {
    color: var(--gold) !important;
}
.text-navy {
    color: var(--navy) !important;
}
.bg-cream {
    background: var(--cream);
}
.bg-navy {
    background: var(--navy);
    color: #fff;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    border: 1px solid rgba(13, 27, 42, 0.06);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.feature-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.18), rgba(201, 162, 39, 0.06));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--gold-dark);
    margin-bottom: 1rem;
    transition: transform 0.3s;
}
.feature-card:hover .feature-icon {
    transform: scale(1.08);
}

/* Stats / Counter section */
.stats-section {
    background: linear-gradient(135deg, var(--navy) 0%, #152a40 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}
.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* How it works / Steps */
.step-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    height: 100%;
    border: 1px solid rgba(13, 27, 42, 0.06);
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}
.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 16px rgba(201, 162, 39, 0.3);
}

/* Room Cards */
.room-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(13, 27, 42, 0.07);
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}
.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.room-card .room-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.room-card .room-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--navy);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    z-index: 2;
}
.room-card .room-badge.ac {
    background: var(--gold-dark);
}
.room-price {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Cormorant Garamond', serif;
}
.room-price small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.85rem;
    border-left: 4px solid var(--gold);
    height: 100%;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}
.testimonial-card .quote {
    font-style: italic;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.65;
}
.testimonial-author {
    font-weight: 600;
    color: var(--navy);
}

/* Nearby / Places */
.place-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
}
.place-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}
.place-card .place-img {
    height: 160px;
    background-size: cover;
    background-position: center;
}
.place-distance {
    display: inline-block;
    background: var(--cream);
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

/* Gallery preview */
.gallery-preview-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 4/3;
    background: var(--cream);
}
.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-preview-item:hover img {
    transform: scale(1.08);
}
.gallery-preview-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.7), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    color: #fff;
}
.gallery-preview-item:hover .overlay {
    opacity: 1;
}

/* Location cards */
.location-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(13, 27, 42, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.location-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.location-card img {
    height: 190px;
    object-fit: cover;
    width: 100%;
}
.location-card .card-body {
    padding: 1.5rem;
}
.location-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--navy);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    z-index: 2;
}

/* FAQ */
.accordion-button:not(.collapsed) {
    background: rgba(201, 162, 39, 0.1);
    color: var(--navy);
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: var(--gold);
}
.accordion-button {
    font-weight: 600;
    color: var(--navy);
    border-radius: 10px !important;
}
.accordion-item {
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 0.65rem;
    border: 1px solid rgba(13, 27, 42, 0.08) !important;
}

/* Contact Form */
.form-control, .form-select {
    border-radius: 9px;
    padding: 0.75rem 1.05rem;
    border-color: #dee2e6;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.18);
}
.contact-info-box {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
}
.contact-info-box a {
    color: var(--gold);
    text-decoration: none;
}
.contact-info-box a:hover {
    text-decoration: underline;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    background: var(--cream);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s;
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.45);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    color: #fff;
    font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, #1a365d 100%);
    color: #fff;
    position: relative;
}
.cta-banner h2 {
    color: #fff;
}

/* Footer */
.site-footer {
    background: #0a1420;
    color: rgba(255, 255, 255, 0.75);
}
.footer-logo {
    height: 46px;
}
.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}
.footer-links li {
    margin-bottom: 0.4rem;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: var(--whatsapp);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    z-index: 1050;
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
    color: #fff;
    animation: none;
}
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7); }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff;
    padding: 3.25rem 0 2.75rem;
    text-align: center;
}
.page-header h1 {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    margin-bottom: 0.5rem;
}
.breadcrumb-nav {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.4);
}
.breadcrumb-nav .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}
.breadcrumb-nav .breadcrumb-item.active {
    color: var(--gold);
}

/* Tables */
.table-custom {
    border-radius: 10px;
    overflow: hidden;
}
.table-custom th {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
}

/* Utility */
.rounded-xl {
    border-radius: var(--radius);
}
.shadow-soft {
    box-shadow: var(--shadow-soft);
}
.booking-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(13, 27, 42, 0.1);
    padding: 2rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 0.75rem;
        background: transparent;
    }
    .navbar-nav .nav-link {
        padding: 0.6rem 0.5rem !important;
    }
    .hero-slider .carousel-item {
        height: 500px;
    }
}

@media (max-width: 767.98px) {
    .hero-slider .carousel-item {
        height: 460px;
    }
    .hero-slider h1 {
        font-size: 1.85rem;
    }
    .hero-slider .lead {
        font-size: 1rem;
    }
    .section-padding {
        padding: 3.25rem 0;
    }
    .logo-img {
        height: 42px;
    }
    .brand-name {
        font-size: 1.05rem;
    }
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        bottom: 18px;
        right: 18px;
    }
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-slider .carousel-item {
        height: 420px;
    }
    .hero-slider .carousel-caption .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}


/*----------------cta section-------------*/

/* ---------- CTA Banner (Premium 3D) ---------- */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, #1a0a0e 0%, #4a121c 40%, #6b1e2a 70%, #8b2e3c 100%);
  color: #fff;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(201, 162, 39, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(196, 92, 38, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.cta-banner-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-1 {
  width: 220px;
  height: 220px;
  background: rgba(201, 162, 39, 0.35);
  top: -60px;
  left: 8%;
  animation-delay: 0s;
}
.orb-2 {
  width: 160px;
  height: 160px;
  background: rgba(196, 92, 38, 0.3);
  bottom: -40px;
  right: 12%;
  animation-delay: -4s;
}
.orb-3 {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.08);
  top: 40%;
  right: 30%;
  animation-delay: -7s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(18px, -22px) scale(1.08); }
  66% { transform: translate(-14px, 12px) scale(0.95); }
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light, #e8d48b);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.15rem;
  backdrop-filter: blur(6px);
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(201, 162, 39, 0); }
}

.cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.85rem;
  line-height: 1.2;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.01em;
}

.cta-desc {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* 3D CTA Buttons */
.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.65rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    background 0.3s ease;
  will-change: transform;
}

.btn-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-cta-label {
  position: relative;
  z-index: 1;
}

.btn-cta-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 45%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

/* WhatsApp */
.btn-cta-whatsapp {
  background: linear-gradient(145deg, #25d366 0%, #1ebe57 50%, #128c3d 100%);
  color: #fff !important;
  box-shadow:
    0 6px 0 #0d6b2c,
    0 10px 28px rgba(37, 211, 102, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-cta-whatsapp .btn-cta-icon {
  background: rgba(255, 255, 255, 0.2);
}
.btn-cta-whatsapp:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 10px 0 #0d6b2c,
    0 18px 40px rgba(37, 211, 102, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #fff !important;
}
.btn-cta-whatsapp:hover .btn-cta-icon {
  transform: scale(1.15) rotate(-8deg);
}
.btn-cta-whatsapp:hover .btn-cta-shine {
  left: 120%;
}
.btn-cta-whatsapp:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 4px 0 #0d6b2c,
    0 8px 20px rgba(37, 211, 102, 0.35);
}

/* Call */
.btn-cta-call {
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  box-shadow:
    0 4px 0 rgba(0, 0, 0, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.btn-cta-call .btn-cta-icon {
  background: rgba(255, 255, 255, 0.12);
}
.btn-cta-call:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 8px 0 rgba(0, 0, 0, 0.2),
    0 16px 36px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: #fff !important;
}
.btn-cta-call:hover .btn-cta-icon {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.22);
}
.btn-cta-call:active {
  transform: translateY(-2px);
}

/* Rooms (gold) */
.btn-cta-rooms {
  background: linear-gradient(145deg, #e8d48b 0%, #c9a227 45%, #a67c00 100%);
  color: #1c1410 !important;
  box-shadow:
    0 6px 0 #7a5c00,
    0 10px 28px rgba(201, 162, 39, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-cta-rooms .btn-cta-icon {
  background: rgba(28, 20, 16, 0.12);
  color: #1c1410;
}
.btn-cta-rooms:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 10px 0 #7a5c00,
    0 18px 40px rgba(201, 162, 39, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #1c1410 !important;
}
.btn-cta-rooms:hover .btn-cta-icon {
  transform: scale(1.15) rotate(6deg);
}
.btn-cta-rooms:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 4px 0 #7a5c00,
    0 8px 20px rgba(201, 162, 39, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; }
  .cta-eyebrow { animation: none; }
  .btn-cta { transition: none; }
  .btn-cta:hover { transform: none; }
}

@media (max-width: 575.98px) {
  .cta-banner { padding: 3.5rem 0; }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin: 0 auto;
  }
  .btn-cta {
    justify-content: center;
    width: 100%;
  }
}



/* =========================================================================
   PREMIUM UPGRADE LAYER — Modern, elegant, high-end visual system
   (Overrides/extends the rules above. No class names removed —
   only enhanced. Existing content, structure & links are untouched.)
   ========================================================================= */

:root {
    /* Refined premium palette, still on-brand (navy + gold) */
    --navy: #0b1826;
    --navy-2: #122236;
    --navy-light: #1c2f47;
    --gold: #c9a227;
    --gold-2: #e8c766;
    --gold-dark: #9c7a12;
    --gold-light: #f1e0a8;
    --cream: #f9f4e8;
    --cream-dark: #efe6d5;
    --text: #16202c;
    --muted: #667085;
    --whatsapp: #25d366;

    --grad-gold: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    --grad-navy: linear-gradient(140deg, #0b1826 0%, #16283d 55%, #1f3552 100%);
    --grad-hero: linear-gradient(120deg, rgba(9,16,25,.92) 0%, rgba(11,24,38,.72) 45%, rgba(11,24,38,.32) 100%);
    --glass-bg: rgba(255, 255, 255, 0.66);
    --glass-border: rgba(255, 255, 255, 0.45);
    --glass-bg-dark: rgba(16, 28, 44, 0.55);
    --glass-border-dark: rgba(255, 255, 255, 0.10);

    --shadow-soft: 0 10px 30px rgba(11, 24, 38, 0.08);
    --shadow-hover: 0 22px 48px rgba(11, 24, 38, 0.16);
    --shadow-gold: 0 14px 34px rgba(201, 162, 39, 0.28);
    --radius: 16px;
    --radius-sm: 12px;
    --radius-lg: 22px;

    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Smooth foundations */
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

/* Selection & scrollbar */
::selection { background: var(--gold); color: #1a1305; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--gold-dark)); border-radius: 10px; }

/* Gradient text utility (applied via existing .text-gold spans / headings) */
.hero-slider h1 .text-gold,
.section-title .text-gold,
.cta-title,
.section-title {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
}
.section-title { -webkit-text-fill-color: transparent; color: var(--navy); position: relative; display: inline-block; }
.text-center .section-title { display: block; }
.hero-slider h1 .text-gold { -webkit-text-fill-color: transparent; }

/* ---------- Glassmorphic Navbar ---------- */
.navbar {
    background: rgba(255, 255, 255, 0.78) !important;
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid rgba(201, 162, 39, 0.14);
    box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 8px 30px rgba(11,24,38,.05);
    transition: box-shadow .35s var(--ease-premium), padding .35s var(--ease-premium), background .35s;
}
.navbar.scrolled {
    padding-top: .3rem; padding-bottom: .3rem;
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 10px 32px rgba(11,24,38,.12);
}
.nav-link { position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    left: 0.9rem; right: 0.9rem; bottom: 0.15rem;
    height: 2px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease-premium);
    border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.dropdown-menu {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-hover);
    animation: dropIn .22s var(--ease-premium);
}
@keyframes dropIn { from { opacity: 0; transform: translateY(-6px);} to { opacity: 1; transform: translateY(0);} }

/* ---------- Buttons: premium 3D, gradient, magnetic-ready ---------- */
.btn-gold, .btn-whatsapp, .btn-outline-gold {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 12px !important;
    transform-style: preserve-3d;
    transition: transform .4s var(--ease-premium), box-shadow .4s var(--ease-premium), color .3s, background .3s;
}
.btn-gold {
    background: var(--grad-gold) !important;
    box-shadow: 0 4px 0 var(--gold-dark), var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-4px); box-shadow: 0 8px 0 var(--gold-dark), 0 22px 40px rgba(201,162,39,.4); }
.btn-gold:active { transform: translateY(-1px); box-shadow: 0 2px 0 var(--gold-dark), var(--shadow-gold); }

.btn-whatsapp { box-shadow: 0 4px 0 #128c3d, 0 10px 26px rgba(37,211,102,.35); }
.btn-whatsapp:hover { transform: translateY(-4px); box-shadow: 0 8px 0 #128c3d, 0 20px 38px rgba(37,211,102,.42); }
.btn-whatsapp:active { transform: translateY(-1px); }

.btn-outline-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }

.btn-gold::before, .btn-whatsapp::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.35) 45%, transparent 100%);
    transform: translateX(-120%) skewX(-15deg);
    transition: transform .6s ease;
    z-index: -1;
}
.btn-gold:hover::before, .btn-whatsapp:hover::before { transform: translateX(120%) skewX(-15deg); }

.btn-outline-light { border-radius: 12px !important; backdrop-filter: blur(6px); transition: transform .35s var(--ease-premium); }
.btn-outline-light:hover { transform: translateY(-4px); }

/* ---------- Hero Slider: cinematic depth ---------- */
.hero-slider .carousel-item {
    height: 620px;
}
.hero-slider .carousel-item::before {
    background: var(--grad-hero);
}
.hero-slider .carousel-item::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 15% 20%, rgba(201,162,39,.14), transparent 55%);
    pointer-events: none;
}
.hero-slider .carousel-item > div[style*="background-image"],
.hero-slider .carousel-item {
    animation: none;
}
.hero-slider .carousel-item.active {
    animation: heroZoom 9s ease-out forwards;
}
@keyframes heroZoom {
    from { background-size: 108% auto; }
    to { background-size: 100% auto; }
}
.hero-badge {
    box-shadow: 0 6px 20px rgba(201,162,39,.25);
    animation: badgeFloat 3.4s ease-in-out infinite;
}
@keyframes badgeFloat { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-4px); } }

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    background: transparent;
}
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    background-color: rgba(255,255,255,.14);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    padding: 22px;
    background-size: 22px;
    transition: transform .3s var(--ease-premium), background-color .3s;
}
.hero-slider .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-slider .carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(201,162,39,.55);
    transform: scale(1.1);
}

.hero-slider .btn { will-change: transform; }

/* Floating decorative orbs injected by JS (purely visual, no content) */
.hero-decor {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1;
}
.hero-decor span {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(232,199,102,.55), rgba(232,199,102,0) 70%);
    filter: blur(2px);
    animation: floatParticle 10s ease-in-out infinite;
}
@keyframes floatParticle {
    0%,100% { transform: translate(0,0); opacity: .5; }
    50% { transform: translate(14px,-26px); opacity: .95; }
}

/* Cursor glow (desktop, injected by JS) */
.cursor-glow {
    position: fixed; width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,162,39,.10), transparent 70%);
    pointer-events: none; z-index: 2; left: 0; top: 0;
    transform: translate(-50%,-50%);
    transition: opacity .3s ease;
    will-change: transform;
}

/* ---------- Cards: glass, depth, tilt-ready ---------- */
.feature-card, .room-card, .step-card, .testimonial-card, .place-card, .location-card {
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
    border-radius: var(--radius) !important;
    background: rgba(255,255,255,0.86);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(11,24,38,0.06) !important;
    box-shadow: var(--shadow-soft);
    transition: transform .5s var(--ease-premium), box-shadow .5s var(--ease-premium), border-color .4s;
}
.feature-card::before, .step-card::before {
    content: '';
    position: absolute; inset: -1px; border-radius: inherit;
    padding: 1px;
    background: var(--grad-gold);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity .4s ease;
    pointer-events: none;
}
.feature-card:hover::before, .step-card:hover::before { opacity: .55; }

.feature-card:hover, .room-card:hover, .step-card:hover, .testimonial-card:hover, .place-card:hover, .location-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(201,162,39,.28) !important;
}
.feature-icon {
    background: var(--grad-gold);
    color: #fff;
    box-shadow: 0 8px 20px rgba(201,162,39,.32);
}
.feature-icon i { -webkit-text-fill-color: #fff; }
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-4deg); }

.room-card, .location-card { box-shadow: var(--shadow-soft); }
.room-card .room-img, .gallery-preview-item img, .gallery-item img, .location-card img {
    transition: transform .7s var(--ease-premium);
}
.room-card:hover .room-img { transform: scale(1.06); }
.room-price { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.step-card { overflow: hidden; }
.step-number {
    box-shadow: var(--shadow-gold);
    transition: transform .45s var(--ease-premium);
}
.step-card:hover .step-number { transform: scale(1.12) rotate(-6deg); }

.testimonial-card {
    border-left: none;
    border-image: var(--grad-gold) 1;
    border-left: 4px solid;
    background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(249,244,232,.85));
}
.testimonial-card::before {
    content: '\201C';
    position: absolute; top: 6px; right: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    color: rgba(201,162,39,.14);
    line-height: 1;
}

/* ---------- Stats: animated gradient panel ---------- */
.stats-section {
    background: var(--grad-navy);
}
.stat-item { transition: transform .4s var(--ease-premium); }
.stat-number {
    background: var(--grad-gold);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow: 0 8px 30px rgba(201,162,39,.25);
}

/* ---------- Gallery lightbox-ready hover ---------- */
.gallery-item, .gallery-preview-item { border-radius: var(--radius-sm) !important; cursor: zoom-in; }
.gallery-overlay, .gallery-preview-item .overlay {
    background: linear-gradient(to top, rgba(11,24,38,.82), rgba(11,24,38,0) 60%);
}

/* Simple lightbox (built by JS, styled here) */
.lb-overlay {
    position: fixed; inset: 0; background: rgba(6,10,16,.92);
    display: flex; align-items: center; justify-content: center;
    z-index: 2000; opacity: 0; visibility: hidden;
    transition: opacity .35s ease;
    backdrop-filter: blur(6px);
}
.lb-overlay.active { opacity: 1; visibility: visible; }
.lb-overlay img {
    max-width: min(92vw, 1100px); max-height: 86vh; border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
    transform: scale(.92); transition: transform .35s var(--ease-premium);
}
.lb-overlay.active img { transform: scale(1); }
.lb-close {
    position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem; cursor: pointer;
    transition: background .25s, transform .25s;
}
.lb-close:hover { background: rgba(201,162,39,.55); transform: rotate(90deg); }

/* ---------- CTA banner refinements ---------- */
.btn-cta { transform-style: preserve-3d; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--grad-navy);
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--grad-gold);
}
.footer-links a, .footer-contact a { position: relative; }
.footer-links a::after {
    content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
    background: var(--gold); transition: width .3s var(--ease-premium);
}
.footer-links a:hover::after { width: 100%; }

/* Page header depth */
.page-header {
    background: var(--grad-navy);
    position: relative; overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 0%, rgba(201,162,39,.18), transparent 60%);
}

/* Form focus premium */
.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 4px rgba(201,162,39,.14);
}
.booking-form-card, .contact-info-box { border-radius: var(--radius-lg) !important; }

/* Reveal-ready state for JS/GSAP driven fade-ins (progressive enhancement; safe default = visible) */
.reveal-up { opacity: 1; transform: none; }
.js-reveal-init .reveal-up { opacity: 0; transform: translateY(26px); }
.reveal-up.is-visible { opacity: 1 !important; transform: none !important; transition: opacity .8s var(--ease-premium), transform .8s var(--ease-premium); }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-slider .carousel-item.active { animation: none; }
    .hero-badge { animation: none; }
    .hero-decor span { animation: none; }
}

/* Responsive polish */
@media (max-width: 991.98px) {
    .hero-slider .carousel-item { height: 540px; }
}
@media (max-width: 767.98px) {
    .hero-slider .carousel-item { height: 480px; }
    .cursor-glow { display: none; }
}


/* =========================================================
   NATIVE MOUSE / WHEEL SCROLL FIX
   =========================================================
   The site uses normal browser scrolling. Do not lock the
   document or create a second wheel/scroll container.
*/
html {
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scroll-behavior: smooth;
    overscroll-behavior-y: auto;
}

body {
    height: auto !important;
    min-height: 100vh !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    position: relative !important;
    overscroll-behavior-y: auto;
}

/* Only visual clipping; these elements must not become
   the document's scroll container. */
.hero-slider,
.hero-slider .carousel-inner {
    overflow: hidden !important;
}

/* Keep decorative/fixed elements from intercepting wheel input. */
.hero-decor,
.cursor-glow,
.cta-banner-bg,
.cta-banner-orbs,
.whatsapp-float {
    pointer-events: none;
}

.whatsapp-float {
    pointer-events: auto;
}
