* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #f39c12;
    --dark-orange: #e67e22;
    --blue: #0066cc;
    --dark-blue: #004d99;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #cccccc;
    --dark-gray: #666666;
    --text-dark: #333333;
    --green: #27ae60;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    /* Split Layout Base */
    display: flex;
    min-height: 100vh;
}

.page-wrapper {
    display: flex;
    width: 100%;
}

.content-column {
    flex: 1;
    /* Takes remaining space */
    min-width: 0;
    /* Prevents overflow issues */
}

.sidebar-column {
    width: 280px;
    background: var(--white);
    height: 100vh;
    position: sticky;
    top: 0;
    flex-shrink: 0;
    border-left: 1px solid #e0e0e0;
    padding: 20px 15px;
    /* Reduced padding */
    overflow-y: auto;
    z-index: 1002;
    /* Higher than header? Or header should be sticky inside content? */
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.05);
}

/* Header Adjustments for Split Layout */
/* Since header is now inside content-column, sticky top 0 works relative to window usually, 
   but we want it to scroll with content or stay sticky? 
   Usually sticky navigation stays top. */


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    /* Fixed height for consistency */
}

.header-top {
    padding: 0;
    /* Remove padding to allow full height */
    height: 100%;
}

.header-top .container {
    display: flex;
    justify-content: flex-start;
    /* Left align */
    align-items: center;
    height: 100%;
}

/* Logo & Home Icon Group */
.header-left-group {
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: auto;
    /* Push nav to the right if needed, or keep next to it */
}

.logo {
    display: flex;
    align-items: center;
    padding-right: 20px;
    height: 100%;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Removed Home Icon Styles */


/* Navigation */
.main-nav {
    height: 100%;
    margin-left: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    /* Remove gap */
    height: 100%;
    align-items: center;
}

.main-nav li {
    height: 100%;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    /* Spacing for links */
    border-right: 1px solid #eee;
    /* Vertical separator */
}

/* Border for the first item to separate from home icon/logo group if touching */
.main-nav li:first-child a {
    border-left: 1px solid #eee;
}

.main-nav a:hover {
    color: #d4af37;
    background: #fafafa;
}

/* WhatsApp Button (Hidden in header now, but keeping style just in case) */
.whatsapp-btn {
    display: none;
    /* We moved it to sidebar */
}

/* Hero Section */
.hero-section {

    position: relative;
    background: var(--light-gray);
    overflow: hidden;
    padding-top: 0;
    background-image: url("/Assets/Desktop-slider-banner.webp");
    /* background-size: cover; */
    /* fills entire section */
    /* background-position: center; */
    background-repeat: no-repeat;
    /* Flush with nav bar */
}

.hero-mobile-image {
    display: none;
    width: 100%;
}

.hero-mobile-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* .hero-banner {
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("/Assets/Desktop-slider-banner.webp");
    background-size: cover;
    /* fills entire section */
/* background-position: center;
    background-repeat: no-repeat;
}

.hero-banner img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
} */
*/ .hero-content {
    position: absolute;
    top: 45%;
    left: 3%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 1400px;
    pointer-events: none;
    /* Allow clicks to pass through to sections below if needed, but the card should have pointer-events auto */
    padding: 0 20px;
}

.hero-left {
    background: var(--white);
    padding: 30px;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 400px;
    /* Fixed width for the card */
    pointer-events: auto;
    /* Enable clicks on the card */
}

.new-launch-badge {
    color: var(--orange);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-left h1 {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
    line-height: 1.2;
}

.location-text {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-bottom: 2px;
}

.by-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.property-highlights {
    background: #f1f1f1;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: block;
}

.highlight-item strong {
    display: block;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.highlight-item p {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.sidebar-whatsapp-btn i,
.sidebar-call-box i,
.sidebar-callback-btn i {
    margin-right: 10px;
}

.sidebar-whatsapp-btn i,
.fa-whatsapp {
    color: #25D366;
}

.fa-phone {
    color: #2196F3;
}

.fa-headset,
.fa-pen-to-square,
.fa-car,
.fa-tag {
    color: var(--orange);
}

.price-section h3 {
    font-size: 15px;
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
}

.price-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.rupee {
    font-size: 24px;
    font-weight: 700;
    color: var(--orange);
}

.amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--orange);
}

.onwards {
    color: #666;
    font-size: 14px;
    margin-top: 0;
}

.enquire-btn {
    display: none;
    /* Hide the button inside the card as per screenshot */
}

.hero-enquire-now-btn {
    width: 100%;
    background: #d49a00;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

.hero-enquire-now-btn:hover {
    background: #a87900;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-rera-text {
    text-align: center;
    font-size: 13px;
    color: #7d7d7d;
    margin-top: 15px;
    font-weight: 400;
}

/* Sidebar Styling Updates */
/* The sidebar buttons are in sidebar-column. */

.sidebar-wrapper h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 20px;
}

/* Moved Header Home Icon styles to main Header block */

/* Sidebar Wrapper */
.sidebar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-whatsapp-btn {
    background: #d4af37;
    /* Gold color */
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    transition: background 0.3s;
}

.sidebar-whatsapp-btn:hover {
    background: #c9a961;
}

.sidebar-call-box {
    background: var(--white);
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 12px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.sidebar-callback-btn {
    background: #d4af37;
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    transition: background 0.3s;
}

.sidebar-callback-box:hover {
    background-color: #c9a961;
}

.sidebar-form-container {
    background: transparent;
    /* Or white if needed, but usually transparent in this design */
    margin-top: 20px;
}

.sidebar-form-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 15px;
}

.sidebar-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    /* Light gray border */
    border-radius: 4px;
    /* Slightly sharper corners */
    font-size: 14px;
    outline: none;
    background: var(--white);
}

.sidebar-form input:focus {
    border-color: #d4af37;
}

.sidebar-submit-btn {
    width: 100%;
    background: #d4af37;
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.sidebar-submit-btn:hover {
    background: #c9a961;
}


/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--orange);
}

/* Overview Section */
.overview-section {
    background: var(--white);
}

.overview-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 50px;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.overview-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.overview-text {
    width: 100%;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.feature-box {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--orange);
}

.feature-box h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Price Section */
.price-section-full {
    background: var(--light-gray);
}

.price-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 20px;
    /* Reduced padding on mobile */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    /* Enable horizontal scroll */
}

@media (min-width: 768px) {
    .price-table-wrapper {
        padding: 40px;
    }
}

.price-table {
    width: 100%;
    min-width: 600px;
    /* Ensure table doesn't squash too much */
    border-collapse: collapse;
    margin-bottom: 30px;
}

.price-table thead {
    background: var(--orange);
    color: var(--white);
}

.price-table th,
.price-table td {
    padding: 12px 10px;
    text-align: center;
    border: 1px solid var(--gray);
    font-size: 14px;
}

@media (min-width: 768px) {

    .price-table th,
    .price-table td {
        padding: 15px;
        font-size: 16px;
    }
}

.price-table tbody tr:nth-child(even) {
    background: var(--light-gray);
}

.price-note {
    text-align: center;
    color: var(--dark-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.download-price-btn {
    display: block;
    margin: 0 auto;
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.download-price-btn:hover {
    background: var(--dark-orange);
}

/* Floor Plans Section */
.floor-plans-section {
    background: var(--white);
}

.floor-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 40%);
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.floor-plan-card {
    background: var(--white);
    border: 2px solid var(--gray);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.floor-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--orange);
}

.plan-image img {
    width: 100%;
    height: 300px;
    filter: blur(4px);
    object-fit: cover;
}

.plan-details {
    padding: 25px;
    text-align: center;
}

.plan-details h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.plan-details p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.view-price-btn {
    background: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.view-price-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
}

.view-plan-btn {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.view-plan-btn:hover {
    background: var(--dark-orange);
}

/* Gallery Section */
.gallery-section {
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Location Section */
.location-section {
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.location-details {
    align-items: center;
    padding: 20px;
    margin-top: 90px;
}

.location-details h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 22px;
}

.location-details p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.connectivity-container {
    margin-top: 30px;
}

.connectivity-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: left;
}

@media screen and (max-width: 767px) {
    .connectivity-title {
        font-size: 15px;
    }
}

.connectivity-intro {
    margin-bottom: 40px;
}

.connectivity-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
}

.connectivity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.connectivity-item {
    text-align: center;
}

.connectivity-icon {
    font-size: 35px;
    color: var(--orange);
    margin-bottom: 15px;
    display: block;
}

.connectivity-item p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}



/* Walkthrough Section */
.walkthrough-section {
    background: var(--light-gray);
}

.walkthrough-content {
    max-width: 800px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 25px;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s;
}

.stat-item:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 50px 20px 30px;
}

.footer-rera {
    text-align: center;
    margin-bottom: 30px;
}

.footer-rera h4 {
    color: var(--orange);
    font-size: 15px;
}

.footer-disclaimer {
    max-width: 1000px;
    margin: 0 auto 30px;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.8;
    color: #cccccc;
}

.footer-links {
    text-align: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--orange);
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-copyright p {
    font-size: 14px;
    color: #999;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.call-btn {
    background: var(--blue);
}

.whatsapp-btn-float {
    background: var(--green);
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    /* Dark background */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
}

.mobile-bottom-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    height: 60px;
}

.mobile-bottom-nav li {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eee;
}

.mobile-bottom-nav li:last-child {
    border-right: none;
}

.mobile-bottom-nav a,
.mobile-bottom-nav button {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    /* White text */
    font-size: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-bottom-nav .icon {
    font-size: 20px;
    margin-bottom: 2px;
    display: block;
}

.fa-icon i {
    font-size: 22px;
}

/* Mobile Hamburger Menu (Hidden by default) */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* Responsive Styles */
@media (max-width: 1023px) {
    section {
        padding: 50px 0;
    }

    body {
        flex-direction: column;
    }

    .page-wrapper {
        flex-direction: column;
    }

    .content-column {
        width: 100%;
    }

    .sidebar-column {
        width: 100%;
        height: auto;
        position: static;
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-bottom: 80px;
        /* Space for bottom nav */
    }

    .header {
        height: 60px;
        padding: 0 15px;
    }

    .header-top {
        padding: 0;
    }

    .header-top .container {
        justify-content: space-between;
        padding: 0;
    }

    .header-left-group {
        width: auto;
    }

    .logo img {
        height: 40px;
    }

    .home-icon-btn {
        display: none;
        /* Hide home icon on mobile to save space */
    }

    .main-nav {
        display: none;
        /* Hide desktop nav */
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #ffffff !important;
        background: #ffffff !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 2005;
        opacity: 1 !important;
        visibility: visible;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        height: auto;
        background: #ffffff !important;
        padding: 10px 0;
    }

    .main-nav li {
        width: 100%;
        height: 50px;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav a {
        border-right: none;
        padding: 0 20px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-bottom-nav {
        display: block;
        /* Show on mobile */
    }

    .hero-section {
        position: relative;
    }

    .hero-banner img {
        height: 400px;
        object-fit: cover;
    }

    .hero-mobile-image {
        display: block;
    }

    .hero-section {
        background-image: none !important;
    }

    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 20px;
        max-width: 100%;
    }

    .hero-left {
        width: 100%;
        /* margin: -40px auto 0; */
        position: relative;
        z-index: 2;
    }

    .overview-intro {
        margin-bottom: 30px;
    }

    .overview-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid,
    .property-highlights,
    .feature-grid,
    .floor-plans-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-details {
        margin-top: 0;
        padding-top: 0;
        text-align: center;
    }

    .connectivity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .floor-plans-grid,
    .gallery-grid,
    .connectivity-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Hide old floating buttons */
.floating-actions {
    display: none;
}

html {
    scroll-behavior: smooth;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background: #e0e0e0;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: var(--orange);
    padding: 15px;
    text-align: center;
}

.modal-header h3 {
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.modal-body {
    padding: 30px;
}

.modal-logo {
    text-align: center;
    margin-bottom: 25px;
}

.modal-logo img {
    height: 60px;
    width: auto;
}

.modal-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.modal-feature-item {
    text-align: center;
    flex: 1;
}

.modal-fa-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.modal-feature-item p {
    font-size: 11px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.modal-form .form-group {
    margin-bottom: 15px;
}

.modal-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background: #fff;
}

.modal-submit-btn {
    width: 100%;
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.modal-submit-btn:hover {
    background: var(--dark-orange);
}

@media (max-width: 600px) {
    .modal-content {
        width: 95%;
    }

    .modal-features {
        gap: 10px;
    }
}

/* Robot Check Styling */
.robot-check-container {
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 10px 12px;
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 300px;
}

.modal-robot {
    max-width: 100%;
    margin-bottom: 20px;
}

.robot-check {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 12px;
}

.robot-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 24px;
    width: 24px;
    background-color: #fff;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
    display: inline-block;
    position: relative;
    transition: all 0.2s;
}

.robot-check:hover .checkmark {
    border-color: #b2b2b2;
}

.robot-checkbox:checked~.checkmark {
    background-color: #fff;
    border-color: #4d90fe;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 8px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.robot-checkbox:checked~.checkmark:after {
    display: block;
}

.robot-text {
    font-size: 14px;
    color: #333;
    font-weight: 400;
}

.captcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.captcha-logo img {
    height: 32px;
    width: auto;
}

.captcha-logo p {
    font-size: 8px;
    color: #555;
    margin: 0;
    font-weight: 400;
}

button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Custom Feedback Popup */
.feedback-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    text-align: center;
    max-width: 400px;
    width: 90%;
    display: none;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.feedback-popup.active {
    display: flex;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.feedback-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    backdrop-filter: blur(5px);
}

.feedback-overlay.active {
    display: block;
}

.feedback-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.feedback-icon.success {
    background: #e8f5e9;
    color: #4caf50;
}

.feedback-icon.error {
    background: #ffebee;
    color: #f44336;
}

.feedback-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.feedback-message {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 25px;
    line-height: 1.5;
}

.feedback-btn {
    background: #2c3e50;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.feedback-btn:hover {
    background: #1a252f;
}