/* CSS RESET & VARIABLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
font-family: 'Avenir Next World', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

:root {
    --bg-color: #ffffff;             /* Deep Purple Header Background */
    --gold-accent: #c9955f;           /* Requested Gold Accent Color */
    --gold-hover: #e5b37e;            /* Lighter Gold for Hover */
    --text-color: #ffffff;
    --hover-glow: rgba(201, 149, 95, 0.4);
    --glass-bg: rgba(61, 3, 56, 0.92);
}

body {
    background-color: #1e011b;
    color: var(--text-color);
    min-height: 200vh; /* For scrolling demonstration */
}

/* HEADER STYLES */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

/* Glassmorphism Effect on Scroll */
.header.scrolled {
    background: var(--bg-color);
    backdrop-filter: blur(12px);
    padding: 8px 5%;
    border-bottom: 1px solid rgba(201, 149, 95, 0.2);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

/* LOGO STYLES */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    height: 65px;                    /* Optimal header height for logo */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.04);
}

/* NAVIGATION MENU */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 22px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #3d0338;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 10px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Creative Underline Hover Effect in Gold */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-accent), var(--gold-hover));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--gold-hover);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 85%;
}

/* HIGHLIGHTED CONTACT BUTTON */
/* ==========================================
   CREATIVE HIGHLIGHTED CONTACT BUTTON
   ========================================== */

/* Base Button Styling */
.nav-item.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.nav-item.btn-contact .nav-link {
    position: relative;
    background: linear-gradient(135deg, #c9955f 0%, #e5ab71 100%); /* Gold Gradient Base */
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    overflow: hidden;
    display: inline-block;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
    
    /* Continuous Pulsing Soft Glow Animation */
    animation: contactPulse 2s infinite ease-in-out;
}

/* Moving Light/Shimmer Overlay Effect */
.nav-item.btn-contact .nav-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: rotate(45deg) translateY(-100%);
    animation: contactShimmer 3s infinite ease-in-out;
}

/* Hover State - Transforms to Royal Purple with Glow */
.nav-item.btn-contact .nav-link:hover {
    background: linear-gradient(135deg, #3d0338 0%, #250222 100%); /* Purple Gradient */
    color: #ffffff !important;
    border-color: #c9955f;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(61, 3, 56, 0.5), 0 0 15px rgba(201, 149, 95, 0.4);
    animation: none; /* Stop pulsing on hover for focus */
}

/* Keyframe 1: Continuous Pulsing Glow */
@keyframes contactPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 149, 95, 0.7), 0 4px 15px rgba(201, 149, 95, 0.3);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(201, 149, 95, 0), 0 8px 25px rgba(201, 149, 95, 0.5);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 149, 95, 0), 0 4px 15px rgba(201, 149, 95, 0.3);
    }
}

/* Keyframe 2: Light Sweep Shimmer Effect */
@keyframes contactShimmer {
    0% {
        transform: rotate(45deg) translateY(-120%);
    }
    20%, 100% {
        transform: rotate(45deg) translateY(120%);
    }
}
/* ==========================================
   CREATIVE VIRTUAL TOUR BUTTON (PURPLE TO GOLD HOVER)
   ========================================== */

/* Base Container Styling */
.nav-item.btn-virtual {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.nav-item.btn-virtual .nav-link {
    position: relative;
    background: linear-gradient(135deg, #3d0338 0%, #250222 100%); /* Purple Gradient Base */
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    overflow: hidden;
    display: inline-block;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(201, 149, 95, 0.4); /* Gold Border Accent */
    
    /* Continuous Pulsing Purple Glow */
    animation: virtualPulse 2s infinite ease-in-out;
}

/* Moving Light Shimmer Overlay */
.nav-item.btn-virtual .nav-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg) translateY(-100%);
    animation: virtualShimmer 3s infinite ease-in-out;
}

/* Hover State - Transforms to Gold Theme */
.nav-item.btn-virtual .nav-link:hover {
    background: linear-gradient(135deg, #c9955f 0%, #e5ab71 100%); /* Gold Gradient Hover */
    color: #ffffff !important;
    border-color: #ffffff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(201, 149, 95, 0.5), 0 0 15px rgba(61, 3, 56, 0.4);
    animation: none; /* Stop pulsing on hover */
}

/* Keyframe 1: Continuous Purple Pulse Glow */
@keyframes virtualPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(61, 3, 56, 0.7), 0 4px 15px rgba(61, 3, 56, 0.3);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(61, 3, 56, 0), 0 8px 25px rgba(61, 3, 56, 0.5);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(61, 3, 56, 0), 0 4px 15px rgba(61, 3, 56, 0.3);
    }
}

/* Keyframe 2: Light Sweep Animation */
@keyframes virtualShimmer {
    0% {
        transform: rotate(45deg) translateY(-120%);
    }
    20%, 100% {
        transform: rotate(45deg) translateY(120%);
    }
}
/* MOBILE HAMBURGER ICON */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    outline: none;
}

.bar {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #c8945f;
    border-radius: 2px;
}

/* MOBILE RESPONSIVE VIEW */
@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--gold-accent);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--gold-accent);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 78%;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 22px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        padding: 40px 0;
        border-left: 1px solid rgba(201, 149, 95, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.4s ease;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    /* Smooth Entry Stagger Animation */
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.6s; }
    .nav-menu.active .nav-item:nth-child(7) { transition-delay: 0.7s; }

    .nav-link {
        font-size: 18px;
    }

    .logo-img {
        height: 48px;
    }
}
/* slider */
/* CONTAINER - Keeps 1400x500 Aspect Ratio */
.hero-image-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1400 / 500; /* Maintains exact 1400px x 500px banner proportions */
    max-height: 599px;
    margin-top: 87px;
    overflow: hidden;
    background-color: #3d0338;
}

/* IMAGE WRAPPER */
.slider-image-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* FADE-IN FROM LEFT ANIMATION (NO ZOOM) */
.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: translateX(-60px);
    animation: fadeInLeft 1.2s ease-out forwards;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* SUBTLE OVERLAY FOR SMOOTH LOOK */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* MOBILE RESPONSIVE VIEW */
@media (max-width: 768px) {
    .hero-image-slider {
        aspect-ratio: auto;
            margin-top: 68px;
        height: 200px; /* Perfect height for reading banner text on phones */
    }

    .slider-img {
        object-fit: fill; /* Ensures full banner text & building stay 100% visible */
    }
}
/* overview */
/* OVERVIEW MAIN SECTION (WHITE BACKGROUND) */
.overview-section {
    background-color: #ffffff;
    padding: 80px 5%;
    color: #1e1e1e;
    overflow: hidden;
}

.overview-container {
    max-width: 100%;
    margin: 0 auto;
}

/* TOP ROW FLEX LAYOUT */
.overview-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 70px;
}

/* LEFT SIDE: CREATIVE IMAGE SHAPE */
.overview-img-wrapper {
    flex: 1;
    position: relative;
    max-width: 520px;
    display: flex;
    justify-content: center;
}

.overview-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 180px 180px 20px 20px; /* Creative Luxury Arch Shape */
    box-shadow: 0 15px 35px rgba(61, 3, 56, 0.15);
    position: relative;
    z-index: 2;
}

.creative-shape-border {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 480px;
    border: 2px solid #c9955f;
    border-radius: 180px 180px 20px 20px;
    z-index: 1;
}

/* RIGHT SIDE: TEXT CONTENT */
.overview-text-content {
    flex: 1.2;
}

.sub-heading {
  padding: 9px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #c9955f;
    background: whitesmoke;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.main-heading {
    color: #3d0338;
       font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 10px;
}

.main-heading span {
    color: #c9955f;
}

.lead-text {
    font-size: 17px;
    font-weight: 600;
    color: #3d0338;
    line-height: 1.6;
    margin-bottom: 12px;
}

.body-text {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 12px;
}

.body-text strong {
    color: #3d0338;
}

.brand-tagline {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.brand-tagline span {
    font-size: 14px;
    font-weight: 700;
    color: #c9955f;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #fcf8f3;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(201, 149, 95, 0.3);
}

/* BOTTOM ROW: WHY ROYAL KEYS */
.why-royal-keys-wrapper {
    background: #fdfbf7;
    border: 1px solid rgba(201, 149, 95, 0.25);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.why-title {
    text-align: center;
    color: #3d0338;
    font-size: 37px;
    font-weight: 600;
    margin-bottom: 35px;
}

.why-title span {
    color: #c9955f;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
}

.why-card {
    background: #ffffff;
    border: 1px solid #f0e6da;
    border-radius: 16px;
    padding: 32px 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: #c9955f;
    box-shadow: 0 10px 25px rgba(201, 149, 95, 0.15);
}

.icon-box {
    width: 55px;
    height: 55px;
    background: #3d0338;
    color: #c9955f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin: 0 auto 12px auto;
    transition: all 0.3s ease;
}

.why-card:hover .icon-box {
    background: #c9955f;
    color: #ffffff;
}

.why-card h4 {
    color: #2c2c2c;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.4;
}

/* ANIMATION INITIAL STATES */
.animate-left {
    opacity: 0;
    transform: translateX(-70px);
    transition: all 1s ease-out;
}

.animate-right {
    opacity: 0;
    transform: translateX(70px);
    transition: all 1s ease-out;
}

.animate-bottom {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease-out;
}

/* ACTIVE CLASS TRIGGERED BY JS */
.animate-left.appear,
.animate-right.appear,
.animate-bottom.appear {
    opacity: 1;
    transform: translate(0, 0);
}

/* MOBILE RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .overview-top-row {
        flex-direction: column;
        gap: 40px;
    }

    .overview-img-wrapper {
        max-width: 100%;
    }

    .overview-img, .creative-shape-border {
        height: 380px;
        border-radius: 140px 140px 20px 20px;
    }

    .main-heading {
        font-size: 30px;
    }

    .brand-tagline {
        flex-wrap: wrap;
        gap: 8px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .overview-section {
        padding: 50px 4%;
    }

    .why-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* why charoli */
/* SECTION MAIN LAYOUT (WHITESMOKE BG) */
.why-charholi-section {
    background-color: #f8f9fa; /* Whitesmoke */
    padding: 50px 5%;
    overflow: hidden;
}

.charholi-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT SIDE: CONTENT */
.charholi-left {
    flex: 1;
}

.sub-heading {
  padding: 9px 30px;
    border-radius: 50px;
    font-size: 14px;
    color: #c9955f;
    font-weight: 600;
    background: whitesmoke;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.main-heading {
    color: #3d0338;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.main-heading span {
    color: #c9955f;
}

.tagline {
    font-size: 20px;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 20px;
}

.body-text {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* RIGHT SIDE: FAQ ACCORDION */
.charholi-right {
    flex: 1.2;
}

.reasons-title {
    color: #3d0338;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-left: 4px solid #c9955f;
    padding-left: 12px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: #c9955f;
    box-shadow: 0 8px 20px rgba(61, 3, 56, 0.08);
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background-color: #ffffff;
    transition: background 0.3s ease;
}

.faq-number {
    font-size: 18px;
    font-weight: 600;
    color: #c9955f;
    margin-right: 18px;
}

.faq-header h4 {
    flex: 1;
    color: #3d0338;
    font-size: 17px;
    font-weight: 600;
}

.faq-icon {
    color: #3d0338;
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* ACCORDION CONTENT EXPANSION */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    background-color: #fdfbf7;
    padding: 0 24px;
}

.faq-content p {
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.6;
}

/* ACTIVE ACCORDION STYLES */
.faq-item.active {
    border-color: #3d0338;
}

.faq-item.active .faq-header {
    background-color: #3d0338;
}

.faq-item.active .faq-number,
.faq-item.active .faq-header h4,
.faq-item.active .faq-icon {
    color: #ffffff;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-content {
    max-height: 200px;
    padding: 16px 24px 20px 24px;
    border-top: 1px solid rgba(201, 149, 95, 0.2);
}

/* SCROLL ANIMATION STATES */
.animate-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.9s ease-out;
}

.animate-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.9s ease-out;
}

.animate-left.appear,
.animate-right.appear {
    opacity: 1;
    transform: translateX(0);
}

/* MOBILE RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .charholi-container {
        flex-direction: column;
        gap: 40px;
    }

    .main-heading {
        font-size: 32px;
    }

    .tagline {
        font-size: 18px;
    }

    .charholi-right {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .why-charholi-section {
        padding: 50px 4%;
    }

    .faq-header {
        padding: 16px 18px;
    }

    .faq-header h4 {
        font-size: 15px;
    }
}/* GENERAL WRAPPER STYLES */
.main-amenities-wrapper {
    width: 100%;
    overflow: hidden;
    font-family: system-ui, -apple-system, sans-serif;
}

/* 1. AMENITIES SECTION (WHITE SMOKE BACKGROUND) */
.amenities-section {
    background-color: #f8f9fa; /* White Smoke */
    padding: 60px 5% 40px 5%;
    color: #333333;
}

.amenities-container, 
.specifications-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* CREATIVE HEADING DESIGN */
.amenities-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 30px auto;
}

.luxury-badge {
    background: rgba(201, 149, 95, 0.15);
    border: 1px solid #c9955f;
    color: #c9955f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 15px;
}

.main-heading1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
    color: #2b0326;
}

.glow-text {
    color: #c9955f;
}

.heading-line {
    width: 80px;
    height: 3px;
    background: rgba(201, 149, 95, 0.3);
    margin: 18px auto;
    position: relative;
    border-radius: 3px;
}

.heading-line span {
    width: 25px;
    height: 100%;
    background: #c9955f;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.section-intro {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
}

.amenities-block {
    text-align: center;
}

.custom-title-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3d0338;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 35px;
}

.custom-title-badge i {
    color: #c9955f;
    font-size: 16px;
}

/* AMENITIES IMAGE GRID */
.amenities-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.amenity-img-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e2e2;
    transition: all 0.4s ease;
    text-align: center;
    padding-bottom: 20px;
}

.amenity-img-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(61, 3, 56, 0.15);
}

.img-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

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

.amenity-img-card:hover .img-box img {
    transform: scale(1.08);
}

.amenity-img-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2b0326;
    margin-top: 18px;
    padding: 0 15px;
    line-height: 1.4;
}

/* 2. SPECIFICATIONS PURPLE CURVED SECTION */
.specifications-curved-section {
    background: linear-gradient(135deg, #2d0228 0%, #4a0644 100%);
    position: relative;
    padding: 90px 5% 120px 5%;
    color: #ffffff;
}

.top-wave, .bottom-wave {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.top-wave {
    top: 0;
}

.bottom-wave {
    bottom: 0;
}

.top-wave svg, .bottom-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.dark-badge {
    background: #ffffff;
    color: #3d0338;
}

.specifications-block {
    text-align: center;
}

.specs-pills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    text-align: left;
}

.spec-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 149, 95, 0.4);
    border-radius: 50px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.spec-pill:hover {
    background: rgba(201, 149, 95, 0.2);
    border-color: #c9955f;
    transform: translateX(5px);
}

.spec-pill i {
    color: #c9955f;
    font-size: 18px;
    min-width: 18px;
}

.spec-pill span {
    font-size: 14px;
    color: #f5ebf4;
    font-weight: 500;
}

/* ANIMATION STATES */
.animate-scale, .animate-up {
    opacity: 1; /* Replace with JavaScript for scroll animations if needed */
    transform: none;
}

/* MOBILE RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .specs-pills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-heading1 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .amenities-section {
        padding: 50px 4% 30px 4%;
    }

    .specifications-curved-section {
        padding: 90px 4% 90px 4%;
    }

    .top-wave svg, .bottom-wave svg {
        height: 40px;
    }

    .amenities-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .amenity-img-card {
        border-radius: 14px;
        padding-bottom: 12px;
    }

    .img-box {
        height: 120px;
    }

    .amenity-img-card h4 {
        font-size: 13px;
        margin-top: 10px;
        padding: 0 8px;
    }

    .specs-pills-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .spec-pill {
        border-radius: 12px;
        padding: 12px 16px;
    }

    .custom-title-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
}
/* floor plan */

/* MAIN PRICING SECTION *//* ==========================================
   COMPLETE PRICING SECTION & POPUP MODAL STYLES
   ========================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pricing-section {
    background-color: #ffffff;
    padding: 60px 5%;
    overflow: hidden;
}

.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* SECTION HEADER */
.pricing-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 50px auto;
}

.sub-heading {
    color: #c9955f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.main-heading {
    color: #3d0338;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.main-heading span {
    color: #c9955f;
}

.section-desc {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

/* PRICING GRID LAYOUT */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* PLAN CARD MAIN CONTAINER */
.plan-card {
    position: relative;
    border-radius: 24px;
    border-radius: 31px 75px;
    overflow: hidden;
    background: #3d0338;
    border: 5px double rgba(213, 168, 120, 0.35);
    box-shadow: 0 15px 35px rgba(61, 3, 56, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    min-height: 369px;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(61, 3, 56, 0.3);
    border-color: #c9955f;
}
/* FULL CARD BLURRED IMAGE BACKGROUND */
.plan-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.blurred-plan-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(9px) brightness(0.4);
    transform: scale(1.1);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.plan-card:hover .blurred-plan-img {
    filter: blur(3px) brightness(0.55);
    transform: scale(1.2);
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(61, 3, 56, 0.7) 0%, rgba(61, 3, 56, 0.3) 50%, rgba(61, 3, 56, 0.9) 100%);
}

/* CARD BODY (OVERLAY CONTENT ON TOP OF BLURRED IMAGE) */
.plan-card-body {
    position: relative;
    z-index: 2;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    flex-grow: 1;
    text-align: center;
}

/* BADGE DESIGN */
.plan-badge {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    background: rgb(162 110 56 / 25%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 16px;
        margin: 0 auto 15px auto;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid rgba(201, 149, 95, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* PRICE BLOCK */
.price-container {
    margin-bottom: 20px;
}

.plan-price {
  font-size: 35px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 4px 12px rgb(0 0 0 / 38%);
    line-height: 1.1;
}
.plan-price span{
    font-size: 19px;
    color: #cbc5c5;
}

.price-tax {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #c9955f;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

/* CARPET AREA STRIP */
.plan-carpet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    margin: 10px;;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.plan-carpet i {
    color: #c9955f;
    font-size: 16px;
}
/* Animated Shimmer Button (Gold to Purple Hover) */
.download-plan-btn {
    position: relative;
    background: #c9955f; /* Base Color: Gold */
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    font-size:15px;
    margin: 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 149, 95, 0.3);
}

.download-plan-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.6s ease;
}

.download-plan-btn:hover::before {
    transform: rotate(45deg) translateY(100%);
}

.download-plan-btn:hover {
    background: #3d0338; /* Hover Color: Royal Purple */
    box-shadow: 0 8px 20px rgba(61, 3, 56, 0.4); /* Dark Purple Glow */
    transform: translateY(-2px);
}
/* ==========================================
   POPUP MODAL STYLES
   ========================================== */

.plan-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 2, 14, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 20px;
}

.plan-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.plan-modal-content {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
      max-width: 404px;
    padding: 27px 30px;
    position: relative;
    box-shadow: 0 25px 60px rgba(61, 3, 56, 0.35);
    transform: scale(0.85) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(201, 149, 95, 0.4);
    overflow: hidden;
}

.plan-modal-overlay.active .plan-modal-content {
    transform: scale(1) translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 18px;
    right: 20px;
    background: rgba(61, 3, 56, 0.06);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    color: #3d0338;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-modal-btn:hover {
    background: #3d0338;
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-icon-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(201, 149, 95, 0.15) 0%, rgba(61, 3, 56, 0.08) 100%);
    border: 1px solid rgba(201, 149, 95, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    color: #c9955f;
    font-size: 24px;
    box-shadow: 0 6px 15px rgba(201, 149, 95, 0.15);
}

.modal-header h3 {
    color: #3d0338;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
}

.modal-header-divider {
    height: 3px;
    width: 50px;
    background: linear-gradient(90deg, #c9955f 0%, #3d0338 100%);
    margin: 15px auto 0 auto;
    border-radius: 3px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 16px;
    color: #c9955f;
    font-size: 15px;
    transition: color 0.3s ease;
}

.input-group input {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 1px solid #e2d8e2;
    border-radius: 12px;
    font-size: 14px;
    color: #3d0338;
    background: #fcfaff;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input::placeholder {
    color: #998897;
}

.input-group input:focus {
    border-color: #c9955f;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(201, 149, 95, 0.15);
}

.input-group input:focus + i,
.input-group:focus-within i {
    color: #3d0338;
}

.submit-modal-btn {
    background: linear-gradient(135deg, #3d0338 0%, #250222 100%);
    color: #ffffff;
    border: 1px solid #c9955f;
    padding: 15px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 8px 20px rgba(61, 3, 56, 0.25);
}

.submit-modal-btn:hover {
    background: linear-gradient(135deg, #e5ab71 0%, #c9955f 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(201, 149, 95, 0.5);
    transform: translateY(-2px);
}

.submit-modal-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.submit-modal-btn:hover i {
    transform: translateX(4px);
}

/* SCROLL ANIMATION STATES */
.animate-fade-down,
.animate-fade-up {
    opacity: 1; /* Set to 0 if scroll observer script is used */
    transform: translateY(0);
}

/* MOBILE RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 30px;
    }

    .featured-card {
        transform: scale(1);
    }

    .featured-card:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 50px 4%;
    }

    .plan-price {
        font-size: 28px;
    }

    .plan-card-body {
        padding: 30px 18px;
    }

    .plan-modal-content {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .modal-header h3 {
        font-size: 20px;
    }
}
/* SECTION BASE (WHITESMOKE THEME) */
.location-section {
    background-color: #ffffff;
    padding: 50px 5%;
    position: relative;
    overflow: hidden;
}

.location-container {
    max-width: 1240px;
    margin: 0 auto;
}

/* HEADER STYLING */
.location-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px auto;
}

.location-tag {
    color: #c9955f;
    font-size: 13px;
    font-weight: 600;
    background-color: whitesmoke;
    padding: 8px 11px;
    letter-spacing: 3px;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.location-heading {
    font-size: 33px;
    font-weight: 600;
    color: #240122;
    line-height: 1.3;
}

.purple-highlight {
    color: #4a0644;
}

.marathi-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4a0644 0%, #2e022b 100%);
    color: #c9955f;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    margin-top: 14px;
    box-shadow: 0 4px 15px rgba(74, 6, 68, 0.2);
    border: 1px solid #c9955f;
}

.accent-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4a0644, #c9955f);
    margin: 18px auto;
    border-radius: 10px;
}

.location-description {
    font-size: 16px;
    color: #584656;
    line-height: 1.75;
}

/* MAIN LAYOUT GRID */
.location-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 35px;
    align-items: center;
}

/* LEFT: CREATIVE MAP CARD */
.map-wrapper-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(201, 149, 95, 0.3);
    box-shadow: 0 15px 35px rgba(45, 2, 43, 0.08);
    overflow: hidden;
}

.map-card-header {
    background: linear-gradient(145deg, #2d022b 0%, #480643 100%);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
}

.map-title {
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c9955f;
}

.live-pulse {
    font-size: 12px;
    color: #e2d3e1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.4);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.map-frame-container {
    position: relative;
    width: 100%;
    height: 434px;
}

.location-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(45, 2, 43, 0.92);
    border: 1px solid #c9955f;
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.map-floating-badge i {
    font-size: 22px;
    color: #c9955f;
}

.map-floating-badge strong {
    display: block;
    font-size: 13px;
    color: #ffffff;
}

.map-floating-badge p {
    font-size: 11px;
    color: #d1bdd0;
    margin: 0;
}

.map-card-footer {
    padding: 18px 24px;
    background: #ffffff;
    border-top: 1px solid rgba(201, 149, 95, 0.15);
}

.map-card-footer p {
    font-size: 14px;
    color: #584656;
    line-height: 1.6;
    margin: 0;
    display: flex;
    gap: 10px;
}

.map-card-footer i {
    color: #4a0644;
    margin-top: 3px;
}

/* RIGHT: CONNECTIVITY LIST */
.connectivity-wrapper {
    background: linear-gradient(145deg, #2d022b 0%, #480643 100%);
    border-radius: 28px;
    padding: 35px 28px;
    border: 1.5px solid #c9955f;
    box-shadow: 0 15px 35px rgba(45, 2, 43, 0.25);
}

.connectivity-title {
   margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 9px;
}

.connectivity-title h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.connectivity-title p {
    color: #c9955f;
    font-size: 13px;
    margin: 0;
}

.connectivity-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.connect-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.connect-card:hover {
    background: rgba(201, 149, 95, 0.15);
    border-color: #c9955f;
    transform: translateX(6px);
}

.highlight-gold {
    background: rgba(201, 149, 95, 0.12);
    border-color: rgba(201, 149, 95, 0.4);
}

.connect-icon {
    width: 38px;
    height: 38px;
    background: rgba(201, 149, 95, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9955f;
    font-size: 16px;
    margin-right: 14px;
}

.connect-info {
    flex: 1;
}

.connect-info h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 2px 0;
}

.connect-info p {
    color: #d1bdd0;
    font-size: 11px;
    margin: 0;
}

.time-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gold-bg {
    background: linear-gradient(135deg, #c9955f 0%, #a27241 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(201, 149, 95, 0.4);
}

/* ANIMATION CLASSES */
.animate-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: all 0.8s ease-out;
}

.animate-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease-out;
}

.animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease-out;
}

.animate-scale.appear,
.animate-left.appear,
.animate-right.appear {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* RESPONSIVE DESIGN (MOBILE VIEW) */
@media (max-width: 992px) {
    .location-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-heading {
        font-size: 30px;
    }

    .connectivity-wrapper {
        padding: 28px 20px;
    }
}

@media (max-width: 576px) {
    .location-section {
        padding: 60px 4%;
    }

    .location-heading {
        font-size: 26px;
    }

    .map-frame-container {
        height: 280px;
    }

    .connect-card {
        padding: 10px 14px;
    }

    .connect-info h4 {
        font-size: 13px;
    }

    .time-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* SECTION BASE (CLEAN WHITE/WHITESMOKE) */
.virtual-tour-section {
    background-color: #fbf9fc;
    padding: 50px 4%;
    position: relative;
    overflow: hidden;
}

.tour-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* SECTION HEADER */
.tour-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 50px auto;
}

.gold-sub-tag {
    color: #c9955f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.tour-heading {
    font-size: 33px;
    font-weight: 600;
    color: #240122;
    line-height: 1.3;
}

.purple-highlight {
    color: #4a0644;
}

.heading-accent {
    width: 70px;
    height: 3px;
    background: rgba(201, 149, 95, 0.3);
    margin: 16px auto;
    position: relative;
    border-radius: 3px;
}

.heading-accent span {
    width: 24px;
    height: 100%;
    background: #c9955f;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.tour-desc {
    font-size: 15px;
    color: #584656;
    line-height: 1.7;
}

/* FULL WIDTH ADVERTISING VIDEO CARD */
.video-hero-card {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 32px; /* Creative Curved Corners */
    overflow: hidden;
    border: 2px solid #c9955f;
    box-shadow: 0 20px 50px rgba(45, 2, 43, 0.25);
    background: #240122;
}

/* VIDEO MEDIA & OVERLAY */
.video-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-preview-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.purple-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(36, 1, 34, 0.5) 0%, rgba(36, 1, 34, 0.85) 100%);
}

/* ADVERTISEMENT OVERLAY CONTENT */
.video-overlay-content {
    position: relative;
    z-index: 3;
    height: 100%;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* TOP BAR */
.ad-top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ad-tag {
    background: linear-gradient(135deg, #c9955f 0%, #a27241 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 7px 18px;
    border-radius: 30px;
    box-shadow: 0 6px 15px rgba(201, 149, 95, 0.4);
}

.hd-badge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* CENTER PLAY CTA BUTTON */
.ad-center-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.play-pulse-ring {
    position: absolute;
    width: 95px;
    height: 95px;
    background: rgba(201, 149, 95, 0.4);
    border-radius: 50%;
    animation: ripple 2s infinite;
    top: -5px;
}

@keyframes ripple {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.master-play-btn {
    position: relative;
    z-index: 2;
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #c9955f 0%, #a27241 100%);
    border: 3px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ad-center-cta:hover .master-play-btn {
    transform: scale(1.12);
    background: #ffffff;
    color: #4a0644;
}

.play-label {
    margin-top: 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
}

/* BOTTOM BAR */
.ad-bottom-bar {
    width: 100%;
    background: rgba(36, 1, 34, 0.85);
    border: 1px solid rgba(201, 149, 95, 0.4);
    backdrop-filter: blur(12px);
    padding: 16px 28px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ad-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
}

.ad-info-item i {
    font-size: 26px;
    color: #c9955f;
}

.ad-info-item strong {
    display: block;
    font-size: 14px;
    color: #ffffff;
}

.ad-info-item p {
    font-size: 12px;
    color: #d1bdd0;
    margin: 0;
}

.unlock-tour-cta-btn {
    background: linear-gradient(135deg, #c9955f 0%, #a27241 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(201, 149, 95, 0.4);
}

.unlock-tour-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 149, 95, 0.6);
}

/* CREATIVE TOUR POPUP MODAL STYLES */
.tour-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 1, 17, 0.88);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    padding: 20px;
}

.tour-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.tour-modal-card {
    background: linear-gradient(145deg, #2a0227 0%, #3a0435 100%);
    border: 1.5px solid #c9955f;
    border-radius: 28px;
    width: 100%;
    max-width: 410px;
    padding: 38px 28px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
    transform: scale(0.85) translateY(20px);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tour-modal-overlay.active .tour-modal-card {
    transform: scale(1) translateY(0);
}

.modal-close-trigger {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    color: #e0d5e1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-close-trigger:hover {
    background: rgba(201, 149, 95, 0.4);
}

.modal-top-design {
    text-align: center;
    margin-bottom: 26px;
}

.modal-play-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c9955f 0%, #a27241 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px auto;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 10px 22px rgba(201, 149, 95, 0.35);
}

.modal-top-design h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.modal-top-design p {
    font-size: 13px;
    color: #d1bdcf;
    line-height: 1.5;
}

.tour-modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input-group i {
    position: absolute;
    left: 18px;
    color: #c9955f;
    font-size: 16px;
}

.form-input-group input {
    width: 100%;
    padding: 15px 15px 15px 48px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 149, 95, 0.3);
    border-radius: 14px;
    font-size: 14px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.form-input-group input::placeholder {
    color: #9f8a9e;
}

.form-input-group input:focus {
    border-color: #c9955f;
    background: rgba(255, 255, 255, 0.12);
}

.popup-play-submit {
    background: linear-gradient(135deg, #c9955f 0%, #a27241 100%);
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 5px;
    box-shadow: 0 10px 25px rgba(201, 149, 95, 0.4);
}

.popup-play-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(201, 149, 95, 0.6);
}

/* ANIMATIONS */
.animate-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: all 0.8s ease-out;
}

.animate-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-scale.appear,
.animate-up.appear {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* RESPONSIVE DESIGN (MOBILE VIEW) */
@media (max-width: 992px) {
    .video-hero-card {
        height: 440px;
        border-radius: 24px;
    }

    .tour-heading {
        font-size: 30px;
    }

    .video-overlay-content {
        padding: 25px 22px;
    }
}

@media (max-width: 576px) {
    .virtual-tour-section {
        padding: 60px 4%;
    }

    .video-hero-card {
        height: 420px;
        border-radius: 20px;
    }

    .tour-heading {
        font-size: 24px;
    }

    .master-play-btn {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }

    .play-pulse-ring {
        width: 80px;
        height: 80px;
    }

    .play-label {
        font-size: 10px;
        letter-spacing: 1px;
        padding: 6px 14px;
    }

    .ad-bottom-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 14px 18px;
    }

    .ad-info-item {
        flex-direction: column;
        gap: 4px;
    }

    .ad-info-item i {
        font-size: 20px;
    }

    .unlock-tour-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }
}
/* Section Container */
.contact-section {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 32px 16px;
    color: #ffffff;
}

/* Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 28px;
}

.badge {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #d8b4fe;
    font-weight: 600;
    background: rgba(88, 28, 135, 0.6);
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.main-title {
    font-size: 26px;
    font-weight: 800;
    margin-top: 12px;
    background: linear-gradient(to right, #e9d5ff, #fbcfe8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: #d8b4fe;
    font-size: 12px;
    margin-top: 4px;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(216, 180, 254, 0.2);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #f3e8ff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-title i {
    color: #c084fc;
}

/* Form Styles */
.input-group {
    margin-bottom: 14px;
}

/* .input-group input, 
.input-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(192, 132, 252, 0.3);
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
} */

/* .input-group input::placeholder, 
.input-group textarea::placeholder {
    color: #d8b4fe;
    opacity: 0.7;
} */
/* 
.input-group input:focus, 
.input-group textarea:focus {
    border-color: #c084fc;
    box-shadow: 0 0 10px rgba(192, 132, 252, 0.5);
    background: rgba(255, 255, 255, 0.12);
} */

.glow-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #9333ea 0%, #4f46e5 100%);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0.8px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
    transition: all 0.3s ease;
}

.glow-btn:hover {
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.8);
    transform: translateY(-2px);
}

.glow-btn:active {
    transform: scale(0.98);
}

/* Animations */
.floating-animation {
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.phone-pulse {
    color: #c084fc;
    animation: pulseIcon 1.8s infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

/* Info Rows & Address */
.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.info-row.space-between {
    justify-content: space-between;
}

.icon-box1 {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(147, 51, 234, 0.3);
    border: 1px solid rgba(192, 132, 252, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d8b4fe;
}

.label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #d8b4fe;
    display: block;
}

.val-text {
    font-size: 14px;
    font-weight: 700;
    color: #f3e8ff;
}

.sub-text {
    font-size: 11px;
    color: #c084fc;
}

.brand-logo {
    background: #2e1065;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid rgba(192, 132, 252, 0.2);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #d8b4fe;
}

.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(192, 132, 252, 0.4);
    border-radius: 12px;
    color: #f3e8ff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: background 0.3s ease;
}

.call-btn:hover {
    background: rgba(168, 85, 247, 0.3);
}

.address-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
}

.address-box i {
    color: #c084fc;
    margin-top: 2px;
}

.address-title {
    font-size: 12px;
    font-weight: 700;
    color: #e9d5ff;
}

.address-text {
    font-size: 11.5px;
    color: #d8b4fe;
    line-height: 1.4;
    margin-top: 2px;
}
/* footer */
/* Footer Wrapper & Dark Purple Gradient BG */
.footer-wrapper {
    position: relative;
    background: linear-gradient(135deg, #360333 0%, #360333 50%, #360333 100%);
    color: #ffffff;
    padding-top: 20px;
    overflow: hidden;

}

/* Wave Curve Shape Styling */
.wave-container {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-container svg {
    position: relative;
    display: block;
    width: calc(140% + 1.3px);
    height: 60px;
}

.wave-container path {
    fill: #ffffff; /* Body Background se match kijiye */
    transition: d 0.2s ease;
}

/* Grid Layout */
.footer-content {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px 20px 12px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-col h3 {
    font-size: 1.2rem;
    color: #b98753; /* Royal Gold Accent */
    margin-bottom: 15px;
    letter-spacing: 0.8px;
}

.footer-col p {
    color: #d1c4e9;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Column 1: QR Box */
.qr-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(5px);
    margin-bottom: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.qr-box img {
    width: 110px;
    height: 110px;
    border-radius: 6px;
    display: block;
}

.maharera-text {
    font-weight: 500;
    margin-bottom: 4px;
}

.rera-no {
    color: #b98753;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

/* Column 2: Logo Box */
.partner-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 0px;
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.reg-no {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Column 3: Contact & Address */
.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-info i {
    color: #b98753;
    margin-top: 4px;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffffff;
}

/* Social Buttons */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #b98753;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #a092b7;
}
.logo-box{
    background-color: white;   
    border-radius: 5px;
    padding: 3px; 
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* Smooth Scrolling Enable Karein */
html {
    scroll-behavior: smooth;
}

/* Sabhi Sections ke liye Standard Styling aur Header Offset Padding */
section {
    /* 80px aapke Fixed Header ki height hai (isey apne header size ke hisab se 70px ya 90px adjust kar sakte hain) */
    scroll-margin-top: 80px; 
    
    padding: 60px 20px; /* Top aur Bottom proper spacing */
    box-sizing: border-box;
}





/* Mobile Screen Specific Spacing (Chote Headers ke Liye) */
@media (max-width: 768px) {
    section
     {
        scroll-margin-top: 60px; /* Mobile header height */
        padding: 40px 15px;
    }
}
/* Section Container & Fixed Header Offset Fix */
.luxury-connect-wrapper {
    scroll-margin-top: 80px; /* Header height offset */
    padding: 80px 20px;
    background: #ffffff;

}

.royal-grid-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Left Side Showcase Styling */
.brand-showcase-panel {
    padding-right: 20px;
}

.royal-tagline-badge {
    background: rgba(46, 8, 84, 0.1);
    color: #2e0854;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.main-heading-title {
    font-size: 2.2rem;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 600;
}

.subheading-description {
    color: #666666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-avatar-holder {
    width: 48px;
    height: 48px;
    background: #360333;
    color: #d4af37; /* Royal Gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-title-label {
    font-size: 1.1rem;
    color: #222222;
    margin-bottom: 4px;
}

.card-info-link a, 
.card-info-address {
    color: #555555;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.card-info-link a:hover {
    color: #360333;
}

.value-bullets-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.bullet-chip-item {
    font-size: 0.9rem;
    color: #360333;
    font-weight: 600;
}

.bullet-chip-item i {
    color: #28a745;
    margin-right: 5px;
}

/* Right Side Lead Form Card */
.lead-form-card {
    background: whitesmoke;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.form-title-text {
    font-size: 1.6rem;
    color: #360333;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-subtext-info {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.input-field-block {
    margin-bottom: 20px;
}

.field-label-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.field-input-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e1e1e1;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.field-input-control:focus {
    border-color: #360333;
    box-shadow: 0 0 0 3px rgba(46, 8, 84, 0.1);
}

.submit-action-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #360333 0%, #360333 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-action-btn:hover {
    background: linear-gradient(135deg, #360333 0%, #360333 100%);
    box-shadow: 0 6px 20px rgba(46, 8, 84, 0.3);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .royal-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand-showcase-panel {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .luxury-connect-wrapper {
        scroll-margin-top: 60px;
        padding: 50px 15px;
    }

    .lead-form-card {
        padding: 25px 20px;
    }

    .main-heading-title {
        font-size: 1.8rem;
    }
}
/* Floating Container (Bottom Right Corner) */
.floating-action-container {
    position: fixed;
    bottom: 30px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 9999;
}

/* Base Button Styles */
.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(24, 3, 36, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* -----------------------------------
   1. CREATIVE WHATSAPP FLOATING BUTTON 
----------------------------------- */
.whatsapp-btn {
    position: relative;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    font-size: 1.7rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Pulse Ripple Animation */
.whatsapp-btn .btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(37, 211, 102, 0.4);
    border-radius: 50%;
    animation: waPulse 2s infinite;
    z-index: -1;
}

@keyframes waPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.7);
        opacity: 0;
    }
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}


/* -----------------------------------
   2. PURPLE & GOLD TOP ARROW BUTTON
----------------------------------- */
.top-btn {
    background: linear-gradient(135deg, #4a115e 0%, #4a115e 100%);
    color: #d4af37; /* Gold Arrow */
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

/* Scroll Active State */
.top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-btn:hover {
    background: #d4af37;
    color: #180324;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .floating-action-container {
        bottom: 20px;
        right: 15px;
        gap: 12px;
    }

    .floating-btn {
        width: 44px;
        height: 44px;
    }

    .whatsapp-btn {
        font-size: 1.4rem;
    }

    .top-btn {
        font-size: 1rem;
    }
}
/*  */
/* 1. Scrollbar Width & Height Setup */
::-webkit-scrollbar {
    width: 10px;  /* Vertical scrollbar ki width */
    height: 10px; /* Horizontal scrollbar ki height */
}

/* 2. Scrollbar Track (Background Line) */
::-webkit-scrollbar-track {
    background: #6f0ba8; /* Dark Purple Background */
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

/* 3. Scrollbar Thumb (Draggable Bar) */
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2e0854 0%, #d4af37 100%); /* Purple to Gold Gradient */
    border-radius: 10px; /* Rounded corners */
    border: 2px solid #180324; /* Border for padding effect */
    transition: background 0.3s ease;
}

/* 4. Scrollbar Thumb on Hover */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #3f0b73 0%, #f3e5ab 100%); /* Lighter Glow Gradient */
}

/* 5. Scrollbar Corner (Jab dono horizontal & vertical scrollbar milein) */
::-webkit-scrollbar-corner {
    background: #6f0ba8;
}

/* --------------------------------------------------
   Firefox Support (Standard CSS for Cross-Browser)
-------------------------------------------------- */
html {
    scrollbar-width: thin;
    scrollbar-color: #d4af37 #180324; /* Thumb Color | Track Color */
}
/*  */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.modal-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: popupAnimation 0.3s ease-in-out;
}

@keyframes popupAnimation {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}

.modal-icon {
    font-size: 50px;
    color: #28a745;
    margin-bottom: 15px;
}

.modal-card h3 {
    color: #1e011b;
    margin-bottom: 10px;
}

.modal-card p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.modal-btn {
    background: #1e011b;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}