/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&display=swap');

:root {
    --primary-color: #4A0E17; /* Deep Maroon / Burgundy */
    --secondary-color: #C9A050; /* Elegant Gold */
    --accent-color: #6a1622;
    --text-dark: #2C2C2C;
    --text-light: #7A7A7A;
    --bg-light: #FDFBF7; /* Cream/Off-white */
    --bg-white: #FFFFFF;
    --font-main: "Inter", sans-serif;
    --font-heading: "Playfair Display", serif;
    --section-spacing: 40px;
    --transition-fast: 0.3s ease;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

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

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

.container {
    width: 90%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 12px;
}

/* Sections Setup */
section {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1200px) {
    section {
        padding-left: 0;
        padding-right: 0;
    }
}

.bg-gold-light{
    background-color: #ece1cebd;
}
/* Buttons */
.custom-btn, .custom-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 44px;
    padding: 0 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease;
    text-align: center;
}

.custom-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.custom-btn:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.custom-btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.custom-btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Topbar */
.topbar-section {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 8px 0;
    font-size: 14px;
}
.topbar-section a {
    color: var(--bg-white);
    transition: var(--transition-fast);
}
.topbar-section a:hover {
    opacity: 0.85;
}

/* Header & Nav */
.header-main {
    background-color: var(--bg-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.header-container-padding {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.header-logo-img {
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 14px 16px;
    text-transform: capitalize;
    position: relative;
    white-space: nowrap;
    font-size: 15px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Desktop Dropdown Hover Styles (1200px and above) */
@media (min-width: 1200px) {
    .navbar-nav .nav-item.dropdown {
        position: relative;
    }

    .navbar-nav .nav-item.dropdown:hover > .nav-link {
        color: var(--primary-color);
    }

    .navbar-nav .nav-item.dropdown:hover > .nav-link::before {
        width: 80%;
    }

    .navbar-nav .nav-link.dropdown-toggle::after {
        transition: transform 0.3s ease;
        vertical-align: middle;
        margin-left: 6px;
    }

    .navbar-nav .nav-item.dropdown:hover > .nav-link.dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .navbar-nav .dropdown-menu {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 0 !important;
        padding: 0 !important;
        border-radius: var(--border-radius-sm);
        border: 1px solid rgba(201, 160, 80, 0.25);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        background-color: var(--bg-white);
        min-width: 220px;
        z-index: 1000;
        overflow: hidden;
    }

    .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .navbar-nav .dropdown-menu .dropdown-item {
        padding: 12px 20px;
        color: var(--text-dark);
        font-weight: 500;
        font-size: 14px;
        text-transform: capitalize;
        transition: all 0.25s ease;
        border-bottom: 1px solid #F7F3EB;
        background: transparent;
    }

    .navbar-nav .dropdown-menu .dropdown-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .dropdown-menu .dropdown-item:hover,
    .navbar-nav .dropdown-menu .dropdown-item:focus {
        background-color: var(--bg-light);
        color: var(--primary-color);
        padding-left: 24px;
    }
}

/* =========================================
   reCAPTCHA Badge Hide (Invisible reCAPTCHA)
   ========================================= */
.grecaptcha-badge { 
    visibility: hidden !important; 
}

/* Hamburger Menu (Mobile & Tablet < 1200px) */
.hamburger-icon {
    border: none;
    outline: none;
    box-shadow: none !important;
}

@media (min-width: 1200px) {
    .hamburger-icon {
        display: none !important;
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1040;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 1050;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.open {
    right: 0;
}

.mobile-menu-overlay.open {
    display: block;
    opacity: 1;
}

.mobile-sidebar-header-title {
    color: var(--primary-color);
    font-weight: 700;
}

.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
}

.mobile-menu-content ul li {
    border-bottom: 1px solid #eee;
}

.mobile-menu-content ul li a {
    display: block;
    padding: 12px 16px;
    color: var(--text-dark);
    font-weight: 500;
    text-transform: capitalize;
    transition: var(--transition-fast);
}

.mobile-menu-content ul li a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

.mobile-submenu {
    display: none;
    background-color: var(--bg-light);
    padding-left: 15px;
}

.mobile-submenu.open {
    display: block;
}

.mobile-arrow {
    transition: transform 0.3s ease;
}

.mobile-arrow.rotate {
    transform: rotate(180deg);
}

.mobile-contact-item {
    color: var(--text-dark);
}

.mobile-contact-icon {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 0;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

.hero-subtitle {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* Section Title */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

/* At a Glance / Amenities Grid */
.amenity-card {
    text-align: center;
    padding: 25px 15px;
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    height: 100%;
    transition: var(--transition-fast);
    border: 1px solid #f0f0f0;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
    border-color: var(--secondary-color);
}

.amenity-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.amenity-title {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.amenity-text {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Perfect Venue / Services Cards */
.service-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background: var(--bg-white);
    transition: var(--transition-fast);
}

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

.service-img-wrapper {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

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

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-icon-float {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 20px;
    border: 3px solid var(--bg-white);
    z-index: 2;
}

.service-content {
    padding: 40px 20px 20px;
    text-align: center;
}

.service-title {
    font-size: 20px;
    margin: 0;
    color: var(--text-dark);
}

/* Gallery Preview */
.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-soft);
}

/* Why Choose Us Banner */
.why-choose-banner {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 30px;
}

.why-choose-banner .section-title {
    color: var(--bg-white);
}




.feature-box {
    text-align: center;
    padding: 20px 10px;
}

.feature-icon {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-title {
    color: var(--bg-white);
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--bg-white);
}

.cta-box {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.cta-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

/* Footer */
.footer {
    background-color: #333333;
    color: #e0e0e0;
    padding-top: 50px;
    padding-bottom: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--bg-white);
    margin-right: 10px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-icons a i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    margin-top: 2px; /* Slight visual adjustment for Flaticon baseline */
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--bg-white);
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: #b0b0b0;
    font-size: 14px;
}

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

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
    font-size: 14px;
    color: #b0b0b0;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 4px;
    margin-right: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
    color: #888;
}

.footer-bottom a {
    color: var(--secondary-color);
}

/* Owl Carousel Overrides */
.owl-nav {
    display: none;
}
.owl-dots {
    display: none !important; /* Rule: no dots at bottom */
}

/* Utility classes (replacing all inline styles) */
.footer-logo-img {
    object-fit: contain;
}

.hero-banner-section {
    background-image: url('../img/hero_hall_bg.webp');
    padding: 0;
}

.hero-content-box {
    max-width: 1100px;
    margin-top: auto;
    margin-bottom: auto;
    padding: 20px;
    border-radius: 10px;
    background: rgb(0 0 0 / 11%);
}

.hero-logo-img {
    width: 150px;
    height: auto;
}

.hero-title-main {
    font-family: var(--font-heading);
    background-image: url('../img/hero-title-bg.png');
    color: var(--bg-white);
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-pill {
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    display: inline-block;
    padding: 10px 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.5);
    box-shadow: 0 -1px 4px -1px rgba(0, 0, 0, 0.5), 0 1px 4px -1px rgba(0, 0, 0, 0.5);
}

.hero-bottom-text {
    bottom: 30px;
    left: 30px;
    text-align: left;
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-hours-label {
    display: block;
    font-size: 14px;
}

.stat-item-title {
    font-size: 16px;
}

.section-padding-var {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

.section-subtitle-gold {
    color: var(--secondary-color);
}

.map-embed-container {
    width: 100%;
    height: 300px;
    background: #ddd;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-heading-title {
    color: var(--primary-color);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 32px;
}

.cta-description {
    color: var(--text-dark);
    font-size: 16px;
}

/* About Section */
.about-section {
    background-color: var(--bg-white);
}

.about-image-wrapper {
    position: relative;
    border-radius: 10px 120px 10px 120px; /* Stunning asymmetrical shape */
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    height: 100%;
}

.about-img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}



.about-image-wrapper:hover .about-img {
    transform: scale(1.05); /* Smooth elegant zoom */
}

/* Quick Statistics Section */
.quick-stats-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #E8CA7C 50%, var(--secondary-color) 100%);
    color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255,255,255,0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
    margin-top: -30px; /* Pull up slightly over hero */
    border-radius: 50px 0 50px 0; /* Premium architectural asymmetrical shape */
    margin-left: 15px;
    margin-right: 15px;
    padding: 15px 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-card {
    padding: 12px 5px;
    transition: all 0.4s ease;
    cursor: default;
    border-radius: 12px;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--primary-color);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(0,0,0,0.05);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.stat-card:hover .stat-icon {
    transform: rotateY(360deg);
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.stat-item-title {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    margin-top: 8px;
    color: var(--primary-color);
    text-shadow: 0 1px 1px rgba(255,255,255,0.3);
}

/* Facilities Section Redesign */
.facility-card {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.02);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
}

.facility-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 20px;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.facility-card:hover .facility-icon {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: rotateY(180deg);
}

.facility-title {
    font-size: 16px;
    font-family: var(--font-main);
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
    line-height: 1.4;
}

.facility-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

.facility-image-wrapper:hover .facility-img {
    transform: scale(1.05);
}

/* Service Carousel & Cards */
.services-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}
.services-carousel .owl-stage-outer {
    padding-top: 15px;
}
.services-carousel .owl-item {
    display: flex;
    opacity: 0.5;
    transform: scale(0.85);
    transition: all 0.5s ease;
}
.services-carousel .owl-item > div {
    width: 100%;
}
.services-carousel .owl-item.center {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}
.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: visible;
    margin-bottom: 35px;
    height: calc(100% - 35px); /* Subtract margin */
    display: flex;
    flex-direction: column;
    transition: var(--transition-fast);
    border: 1px solid rgba(0,0,0,0.02);
}
.service-img-wrapper {
    height: 250px;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    overflow: hidden;
    position: relative;
}
.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}
.service-content {
    padding: 15px 15px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.service-title {
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px !important;
    transition: var(--transition-fast);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}
.service-content p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.service-card:hover .service-title {
    color: var(--primary-color);
}
.service-icon-float {
    position: absolute;
    top: 250px; /* Aligns exactly with the bottom of the 250px image */
    right: 30px;
    width: 60px;
    height: 60px;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border: 4px solid var(--bg-white); /* Creates a premium cutout effect */
    z-index: 2;
    transition: transform 0.5s ease, background-color 0.4s ease;
}
.service-card:hover .service-icon-float {
    background-color: var(--secondary-color);
    transform: translateY(-50%) rotateY(360deg);
}

/* Global Premium Sweep Hover Effect for Images */
.about-image-wrapper,
.cta-img-wrapper,
.gallery-carousel .item,
.img-sweep-wrapper,
.birthday-image-side {
    position: relative;
    overflow: hidden;
}
.gallery-carousel .item {
    border-radius: var(--border-radius-lg);
}

.about-image-wrapper::before,
.facility-image-wrapper::before,
.service-img-wrapper::before,
.cta-img-wrapper::before,
.gallery-carousel .item::before,
.img-sweep-wrapper::before,
.birthday-image-side::before {
    position: absolute;
    top: 0;
    left: -150%;
    z-index: 2;
    display: block;
    content: '';
    width: 120%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(245,245,245,0.4) 40%, rgba(255,255,255,0.6) 50%, rgba(245,245,245,0.4) 60%, rgba(255,255,255,0) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    transition: all 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    mix-blend-mode: overlay;
}

.about-image-wrapper:hover::before,
.facility-image-wrapper:hover::before,
.service-card:hover .service-img-wrapper::before,
.cta-img-wrapper:hover::before,
.gallery-carousel .item:hover::before,
.img-sweep-wrapper:hover::before,
.birthday-image-side:hover::before {
    left: 150%;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-title { font-size: 48px; }
    .hero-title-main { font-size: 40px; }
    .section-title { font-size: 32px; }
    .cta-box { flex-direction: column; text-align: center; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 36px; }
    .hero-title-main { font-size: 30px; }
    .hero-subtitle { font-size: 20px; }
    .hero-text { font-size: 16px; }
    .section-title { font-size: 28px; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 32px; }
    .hero-title-main { font-size: 24px; }
    .custom-btn, .custom-btn-outline { padding: 10px 20px; font-size: 14px; }
}

/* CTA Section Specifics */
.cta-section {
    background-color: var(--primary-color);
    padding-top: 30px;
    padding-bottom: 30px;
}
.cta-section .cta-heading-title, .cta-section .cta-description {
    color: var(--bg-white);
}

.cta-section .custom-btn {
    background-color: var(--bg-white);
    color: var(--primary-color);
}
.cta-section .custom-btn:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-color: var(--secondary-color);
}
.cta-section .custom-btn-outline {
    border-color: var(--bg-white);
    color: var(--bg-white);
}
.cta-section .custom-btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-img {
    width: 600px;
    max-width: 100%;
    height: 300px;
    object-fit: cover;
}
.cta-box {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-lg, 16px);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* Footer Logo White BG */
.footer-logo-img {
    background-color: var(--bg-white, #ffffff);
    padding: 8px 15px;
    border-radius: var(--border-radius-sm, 6px);
}

@media (max-width: 575px) {
    .facility-card {
        flex-direction: column;
        padding: 12px 8px;
        text-align: center;
    }
    .facility-icon {
        margin-right: 0;
        margin-bottom: 8px;
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }
    .facility-title {
        font-size: 13px;
        line-height: 1.3;
    }
}

/* Parallax Location Section */
.parallax-location {
    background-image: linear-gradient(rgba(0, 0, 0, 0.61), rgba(0, 0, 0, 0.699)), url('../img/hall_exterior.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

.area-pills-container {
    gap: 12px;
}
.area-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: #00000082;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s ease;
}
.area-pill:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
@media (max-width: 767px) {
    .location-glass-box {
        padding: 30px 20px;
    }
    .parallax-location {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .cta-content {
        text-align: center;
        padding: 30px 20px;
    }
    .cta-content .d-flex {
        justify-content: center;
    }
}

/* Fix bottom spacing in the Hall Highlights / Services section */
#facilities {
    padding-bottom: 40px !important;
}
.services-carousel .service-card {
    margin-bottom: 10px !important;
}

@media (max-width: 991px) {
    .hero-section {
        height: 60vh;
        min-height: 450px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 50vh;
        min-height: 380px;
    }
    .hero-title-main {
        font-size: 22px !important;
        line-height: 1.4;
        letter-spacing: 1px;
    }
    .hero-subtitle-pill {
        font-size: 12px;
        letter-spacing: 2px;
    }
}

/* Birthday Party Section */
.birthday-hero-section {
    position: relative;
    overflow: hidden;
    background-color: #fcf9f2; /* Cream background matching image */
}
.birthday-layout-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.birthday-content-side {
    width: 55%;
    position: relative;
    padding: 80px 2% 80px 6%;
    display: flex;
    align-items: center;
    background-color: #fcf9f2;
    z-index: 2;
}

.birthday-desc-scroll {
    max-height: 260px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 15px; /* Prevent text from hitting the scrollbar */
}

/* Custom scrollbar for premium look */
.birthday-desc-scroll::-webkit-scrollbar {
    width: 6px;
}
.birthday-desc-scroll::-webkit-scrollbar-track {
    background: #fcf9f2;
}
.birthday-desc-scroll::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}
.birthday-curve-overlay {
    position: absolute;
    top: -10%;
    right: -5vw;
    width: 15vw;
    height: 120%;
    background-color: #fcf9f2;
    border-right: 10px solid var(--primary-color);
    box-shadow: 8px 0 0 var(--secondary-color);
    border-radius: 50%;
    z-index: -1;
}
.birthday-content-inner {
    max-width: 600px;
}
.text-primary-custom {
    color: var(--primary-color);
    font-family: var(--font-heading);
}
.text-dark-custom {
    color: #242424;
    font-weight: 500;
}
.text-gold-custom {
    color: var(--secondary-color) !important;
}
.cake-ornament {
    text-align: center;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-size: 30px;
    position: relative;
}
.cake-ornament .ornament-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.cake-ornament .ornament-lines::before,
.cake-ornament .ornament-lines::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 1px;
    background-color: var(--secondary-color);
    vertical-align: middle;
}
.birthday-title {
    font-size: 34px;
    line-height: 1.4;
}
.birthday-subtitle {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}
.section-desc,
.birthday-desc {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}
.birthday-image-side {
    width: 45%;
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    z-index: 1;
}
.address-floating-box {
    position: absolute;
    bottom: 40px;
    left: 75px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px 15px 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.location-icon-wrapper {
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--secondary-color);
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.address-floating-box p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .birthday-content-side {
        width: 100%;
        padding:20px;
    }
    .birthday-curve-overlay {
        display: none; /* Hide curve on mobile */
    }
    .birthday-image-side {
        width: 100%;
        min-height: 400px;
    }
    .address-floating-box {
        bottom: 20px;
    }
}


/* Birthday Page New Sections */

.card-desc-scroll {
    max-height: 150px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}
.card-desc-scroll::-webkit-scrollbar {
    width: 4px;
}
.card-desc-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.card-desc-scroll::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}
.planning-tips-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}
.planning-tips-carousel .owl-item {
    display: flex;
}
.planning-tips-carousel .owl-item > div {
    width: 100%;
}

.feature-card-premium {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}
.feature-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.feature-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.feature-card-content {
    padding: 25px;
    flex-grow: 1;
}
.feature-card-content h4 {
    font-size: 20px;
}
.feature-card-content p {
    color: #666;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 0;
}

.birthday-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.b-type-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}
.b-type-card:hover {
    border-bottom-color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.b-type-icon {
    font-size: 35px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}
.b-type-card h5 {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.b-type-card p {
    font-size: 13px;
    color: #777;
    margin-bottom: 0;
}

.theme-bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 30px 30px;
    z-index: 1;
}
.theme-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}
.theme-box:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.theme-box-title {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}
.theme-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.theme-list li {
    padding: 8px 0;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    position: relative;
    padding-left: 20px;
}
.theme-list li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 18px;
}

.planning-tip-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.planning-tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.tip-number {
    font-size: 50px;
    font-weight: 700;
    color: rgba(201, 160, 80, 0.15); /* light gold */
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: -1;
    font-family: var(--font-heading);
}
.planning-tip-card h5 {
    font-size: 18px;
    margin-bottom: 15px;
}
.planning-tip-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.timeline-container {
    position: relative;
    padding-left: 30px;
    margin-top: 30px;
}
.timeline-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #eee;
}
.timeline-item {
    position: relative;
    margin-bottom: 30px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -36px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--secondary-color);
}
.timeline-item h5 {
    font-size: 17px;
    margin-bottom: 8px;
}

.checklist-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.checklist-ul li {
    padding: 8px 0;
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.checklist-ul li i {
    color: var(--secondary-color);
    margin-top: 3px;
}

/* Stacking Cards - Section 6 */
.stacking-cards-container {
    padding: 0;
}
.stacking-card {
    position: sticky;
    padding: 70px 0;
    margin: 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}
.stacking-card-1 {
    top: 80px;
    background: #fff;
    z-index: 10;
}
.stacking-card-2 {
    top: 95px;
    background: #fcf9f2;
    z-index: 11;
   
}
.stacking-card-3 {
    top: 110px;
    background: #fff5f5;
    z-index: 12;
    
}
.stacking-card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.stacking-card-num {
    font-size: 60px;
    font-weight: 700;
    color: rgba(114,47,55,0.08);
    font-family: var(--font-heading);
    line-height: 1;
    display: block;
}
@media (max-width: 991px) {
    .stacking-card {
        position: relative;
        top: auto !important;
        margin: 0 0 20px 0;
        border-radius: 16px;
        padding: 40px 20px;
    }
    .stacking-card-img {
        height: 250px;
        margin-bottom: 25px;
    }
}

/* Birthday Page Specific Image Sizes */
.bday-hero-img {
    object-fit: cover;
    width: 100%;
    height: 500px;
}
.bday-why-img {
    object-fit: cover;
    width: 100%;
    height: 480px;
}
.bday-mahal-img {
    object-fit: cover;
    width: 100%;
    height: 300px;
}

@media (max-width: 991px) {
    .bday-hero-img { height: 400px; }
    .bday-why-img { height: 400px; }
}

@media (max-width: 767px) {
    .bday-hero-img { height: 300px; }
    .bday-why-img { height: 300px; }
    .bday-mahal-img { height: 250px; }
}

/* Birthday Type Card Hover Effects */
.bday-type-card {
    padding: 20px 10px;
    border-radius: 16px;
    transition: all 0.4s ease;
    cursor: default;
}
.bday-type-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.bday-type-icon {
    transition: all 0.4s ease;
}
.bday-type-card:hover .bday-type-icon {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    transform: rotateY(360deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
}

/* FAQ Mobile Merge (<992px) */
@media (max-width: 991px) {
    .faq-mobile-wrapper {
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
        border-radius: var(--border-radius-sm);
        background: #fff;
    }
    .faq-col-left .accordion {
        box-shadow: none !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    .faq-col-right .accordion {
        box-shadow: none !important;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }
    .faq-col-left .accordion-item:last-of-type .accordion-button.collapsed {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .faq-col-right .accordion-item:first-of-type {
        border-top: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    .faq-col-right .accordion-item:first-of-type .accordion-button {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}

/* Cute Hero Form */
.cute-hero-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-width: 400px;
    border: 2px solid rgba(201, 160, 80, 0.3);
    backdrop-filter: blur(10px);
}
.cute-input {
    border-radius: var(--border-radius-sm);
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 14px;
    background: #fcfcfc;
    transition: var(--transition-fast);
}
.cute-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.2);
    outline: none;
    background: var(--bg-white);
}
.cute-submit-btn {
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: var(--border-radius-sm);
    padding: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-fast);
    border: 2px solid var(--primary-color);
}
.cute-submit-btn:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(201, 160, 80, 0.3);
}
.cute-hero-form .cute-input.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}
.cute-hero-form .invalid-feedback {
    display: none;
    font-size: 11px;
    color: #dc3545;
    margin-top: 4px;
}
.cute-hero-form .cute-input.is-invalid ~ .invalid-feedback {
    display: block;
}

/* ============================================
   Call + WhatsApp CTA
   Mobile (<768px): full-width bar with labels
   Tablet/Desktop (>=768px): small floating pulse circles
   ============================================ */

/* Mobile: Full-width Call + WhatsApp Bar */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
}

.mobile-cta-btn:hover {
    color: #fff;
    opacity: 0.9;
}

.mobile-cta-btn i {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-cta-call {
    background-color: var(--primary-color);
}

.mobile-cta-whatsapp {
    background-color: var(--secondary-color);
}

/* Tablet & Desktop: Small Floating Circles */
.float-cta-stack {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1030;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.float-cta-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
	border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-cta-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

.float-cta-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    line-height: 1;
}

.float-cta-whatsapp {
    background-color: var(--secondary-color);
    animation: ctaPulseGold 2s infinite;
}

.float-cta-call {
    background-color: var(--primary-color);
    animation: ctaPulseMaroon 2s infinite;
}

@keyframes ctaPulseGold {
    0% { box-shadow: 0 0 0 0 rgba(201, 160, 80, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(201, 160, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 160, 80, 0); }
}

@keyframes ctaPulseMaroon {
    0% { box-shadow: 0 0 0 0 rgba(74, 14, 23, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(74, 14, 23, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 14, 23, 0); }
}
}