   :root {
            --primary-gold: #D4AF37;
            --secondary-gold: #B8941F;
            --accent-gold: #F4E4BC;
            --dark-navy: #1A2332;
            --medium-navy: #2C3E50;
            --light-navy: #34495E;
            --cream-white: #FDF8F0;
            --pure-white: #FFFFFF;
            --text-dark: #2C3E50;
            --text-light: #7F8C8D;
            --success-green: #27AE60;
            --error-red: #E74C3C;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-sm: 0 2px 8px rgba(26, 35, 50, 0.08);
            --shadow-md: 0 4px 16px rgba(26, 35, 50, 0.12);
            --shadow-lg: 0 8px 32px rgba(26, 35, 50, 0.16);
            --shadow-xl: 0 16px 64px rgba(26, 35, 50, 0.20);
        }


        :root {
    --primary-gold: #D4AF37;
    --secondary-gold: #B8941F;
    --accent-gold: #F4E4BC;
    --dark-navy: #1A2332;
    --medium-navy: #2C3E50;
    --light-navy: #34495E;
    --cream-white: #FDF8F0;
    --pure-white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-md: 0 4px 16px rgba(26, 35, 50, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 35, 50, 0.16);
    --shadow-xl: 0 16px 64px rgba(26, 35, 50, 0.20);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark-navy);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 35, 50, 0.7), rgba(44, 62, 80, 0.7)), url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/1-FJJOIJx35V5Vem51kSNhsfKdEZTfmH.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--pure-white);
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, var(--pure-white), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    color: var(--accent-gold);
}

/* Button Styles */
.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--pure-white);
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--pure-white);
}

.btn-navy {
    background: linear-gradient(135deg, var(--dark-navy), var(--medium-navy));
    color: var(--pure-white);
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.btn-navy:hover {
    background: linear-gradient(135deg, var(--medium-navy), var(--light-navy));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--pure-white);
}

/* CENTERED PRICING AND PAYMENT SECTION */
.pricing-payment-main-section {
    background: linear-gradient(135deg, #072c44, #042446);
    /* padding: 80px 0; */
    position: relative;
    overflow: hidden;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-payment-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.pricing-payment-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-payment-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-payment-title {
    font-size: 3.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-payment-subtitle {
    font-size: 1.3rem;
    color: #f0f8ff;
    margin-bottom: 40px;
    opacity: 0.9;
}

.pricing-unlock-btn {
    background: linear-gradient(135deg, rgb(224, 210, 13), #f7e11e);
    color: #ffffff;
    border: none;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.pricing-unlock-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.pricing-unlock-btn:hover::before {
    left: 100%;
}

.pricing-unlock-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #f7931e, #ff6b35);
}

.pricing-unlock-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Pricing Details Modal Styles */
.pricing-details-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.pricing-details-modal.show-modal {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    animation: fadeInModal 0.5s ease;
    padding: 20px 0;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pricing-modal-content {
    background: #ffffff;
    border-radius: 20px;
    width: 95%;
    max-width: 1000px;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    animation: slideInModal 0.5s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
}

@keyframes slideInModal {
    from { transform: translateY(-50px) scale(0.9); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.pricing-modal-header {
    background: linear-gradient(135deg, #1a5490, #0f4c75);
    color: #ffffff;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.pricing-modal-title {
    font-size: 1.8rem;
    margin: 0;
    color: #ffd700;
}

.pricing-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.pricing-modal-body {
    padding: 30px;
}

.pricing-form-container {
    margin-bottom: 30px;
    transition: all 0.5s ease;
}

/* Hide form after submission */
.pricing-form-container.form-hidden {
    opacity: 0;
    transform: translateX(-100%);
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.pricing-form-group {
    margin-bottom: 20px;
}

.pricing-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a5490;
    font-size: 1rem;
}

.pricing-form-input {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.pricing-form-input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    background: #ffffff;
    outline: none;
}

.pricing-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.pricing-form-row .pricing-form-group {
    flex: 1;
    margin-bottom: 0;
}

.pricing-submit-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-submit-btn:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Pricing Content Styles with Left-to-Right Animation */
.pricing-content-section {
    display: none;
    margin-top: 40px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-content-section.show-content {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: slideInFromRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    50% {
        opacity: 0.5;
        transform: translateX(20%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Price List Section */
.pricing-list-section {
    background: linear-gradient(135deg, #1a5490, #0f4c75);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    color: white;
    transform: translateX(50px);
    opacity: 0;
    animation: slideInStaggered 0.6s ease forwards;
    animation-delay: 0.2s;
}

.pricing-content-section.show-content .pricing-list-section {
    animation: slideInStaggered 0.6s ease forwards;
    animation-delay: 0.3s;
}

@keyframes slideInStaggered {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pricing-list-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #ffd700;
    font-family: 'Playfair Display', serif;
}

.pricing-list-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.pricing-list-table th {
    background: #ffd700;
    color: #1a5490;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: left;
}

.pricing-list-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    font-weight: 500;
}

.pricing-list-table tr:last-child td {
    border-bottom: none;
}

.pricing-list-table .price-value {
    font-weight: 700;
    color: #ffd700;
    font-size: 1.2rem;
}

/* Payment Plans Container */
.pricing-plans-container {
    margin-top: 30px;
    transform: translateX(50px);
    opacity: 0;
}

.pricing-content-section.show-content .pricing-plans-container {
    animation: slideInStaggered 0.6s ease forwards;
    animation-delay: 0.5s;
}

.pricing-plan-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.pricing-plan-toggle-btn {
    background: linear-gradient(135deg, #1a5490, #0f4c75);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.pricing-plan-toggle-btn:hover,
.pricing-plan-toggle-btn.active-plan {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.pricing-plan-details {
    display: none;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #e0e6ed;
    margin-bottom: 20px;
}

.pricing-plan-details.show-plan {
    display: block;
    animation: fadeInPlan 0.5s ease;
}

@keyframes fadeInPlan {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pricing-plan-title {
    font-size: 1.8rem;
    color: #1a5490;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-table th,
.pricing-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.pricing-table th {
    background: linear-gradient(135deg, #1a5490, #0f4c75);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-table tr:nth-child(even) {
    background: #ffffff;
}

.pricing-table tr:hover {
    background: #f1f3f4;
}

.pricing-table td {
    font-size: 1rem;
    font-weight: 500;
}

/* Notes Section */
.pricing-notes-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    color: white;
    transform: translateX(50px);
    opacity: 0;
}

.pricing-content-section.show-content .pricing-notes-section {
    animation: slideInStaggered 0.6s ease forwards;
    animation-delay: 0.7s;
}

.pricing-notes-title {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.pricing-notes-list {
    list-style: none;
    padding: 0;
}

.pricing-notes-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-notes-list li::before {
    content: '•';
    color: #ffd700;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Other existing styles remain the same */
.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    color: var(--dark-navy);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 20px;
}

.title-separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    margin: 0 auto 50px;
    border-radius: 2px;
}

.floor-plan-card {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    position: relative;
    margin-bottom: 30px;
}

.floor-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.floor-plan-card img {
    width: 100%;
    height: auto;
    display: block;
    filter: blur(1px);
    transition: filter 0.3s ease-in-out;
}

.floor-plan-card:hover img {
    filter: blur(2px);
}

.floor-plan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.floor-plan-overlay .btn {
    pointer-events: auto;
    z-index: 2;
}

.floor-plan-image-container {
    position: relative;
    padding: 30px;
    background: var(--cream-white);
}

.floor-plan-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.floor-plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--pure-white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.floor-plan-details {
    padding: 40px;
}

.plan-title {
    font-size: 2.2rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
    text-align: center;
}

.plan-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 30px;
}

.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dimension-item {
    text-align: center;
    padding: 20px;
    background: var(--cream-white);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.dimension-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md);
}

.dimension-icon {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.dimension-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dimension-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-navy);
}

.download-section {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--dark-navy), var(--medium-navy));
    border-radius: 15px;
    margin-top: 30px;
}

.download-title {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.download-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: none;
    background: linear-gradient(135deg, var(--dark-navy), var(--medium-navy));
    color: var(--pure-white);
    padding: 25px 30px;
}

.modal-title {
    color: var(--primary-gold);
    font-size: 1.8rem;
}

.modal-body {
    padding: 40px;
    background: var(--pure-white);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-navy);
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    transition: var(--transition);
    background: var(--cream-white);
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    background: var(--pure-white);
    outline: none;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.btn-close {
    background: none;
    border: none;
    color: var(--pure-white);
    font-size: 1.5rem;
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
    color: var(--accent-gold);
}

/* ROI Calculator Overlay Styles */
.results-section {
    position: relative;
    display: none;
}

.results-section.show {
    display: block;
}

.results-content {
    position: relative;
    transition: filter 0.8s ease-in-out;
}

.results-content.blur-effect {
    filter: blur(5px);
    pointer-events: none;
}

.unlock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(2px);
    transition: opacity 0.5s ease;
}

.unlock-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 50, 0.7);
    border-radius: 15px;
    z-index: -1;
}

.unlock-overlay form {
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.unlock-overlay h4 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

.unlock-overlay p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
    position: relative;
    z-index: 1;
}

.unlock-overlay .form-control {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: #333;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.unlock-overlay .form-control::placeholder {
    color: rgba(51, 51, 51, 0.7);
}

.unlock-overlay .form-control:focus {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-gold);
    color: #333;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.unlock-overlay.hidden {
    display: none !important;
}

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f2f2f2;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon.facebook:hover {
    background-color: #1877f2;
    color: #fff;
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: #fff;
}

.social-icon.twitter:hover {
    background-color: #1da1f2;
    color: #fff;
}

.social-icon.linkedin:hover {
    background-color: #0077b5;
    color: #fff;
}

.social-icon.youtube:hover {
    background-color: #ff0000;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-payment-title {
        font-size: 2.5rem;
    }
    
    .pricing-unlock-btn {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
    
    .pricing-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .pricing-form-row .pricing-form-group {
        margin-bottom: 20px;
    }
    
    .pricing-plan-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-plan-toggle-btn {
        width: 100%;
        max-width: 300px;
    }

    .pricing-modal-content {
        width: 98%;
        margin: 10px auto;
    }
    
    .pricing-modal-body {
        padding: 20px;
    }

    .pricing-list-title {
        font-size: 2rem;
    }

    .pricing-list-table th,
    .pricing-list-table td {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .section-title { 
        font-size: 2.2rem; 
    }
    
    .floor-plan-details { 
        padding: 25px; 
    }
    
    .plan-title { 
        font-size: 1.8rem; 
    }
    
    .form-row { 
        flex-direction: column; 
        gap: 0; 
    }
    
    .form-row .form-group { 
        margin-bottom: 25px; 
    }
    
    .modal-body { 
        padding: 25px; 
    }
    
    .dimensions-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }

    .social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .pricing-payment-title {
        font-size: 2rem;
    }
    
    .pricing-modal-content {
        width: 95%;
        margin: 5px auto;
    }
    
    .pricing-modal-body {
        padding: 15px;
    }

    .pricing-list-title {
        font-size: 1.8rem;
    }

    .pricing-list-table th,
    .pricing-list-table td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .pricing-plan-title {
        font-size: 1.5rem;
    }

    .section-title { 
        font-size: 1.8rem; 
    }
    
    .dimensions-grid { 
        grid-template-columns: 1fr; 
    }

    .bhutani-logo {
        height: 100% !important;
    }
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            background-color: var(--cream-white);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--dark-navy);
        }
        
       /* Utility Classes */
        .text-gold { color: var(--primary-gold) !important; }
        .bg-gold { background-color: var(--primary-gold) !important; }
        .bg-navy { background-color: var(--dark-navy) !important; }
        .bg-cream { background-color: var(--cream-white) !important; }

        .btn-gold {
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            color: var(--pure-white);
            border: none;
            padding: 12px 28px;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 8px;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-gold:hover {
            background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: var(--pure-white);
        }

        .btn-navy {
            background: linear-gradient(135deg, var(--dark-navy), var(--medium-navy));
            color: var(--pure-white);
            border: none;
            padding: 12px 28px;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 8px;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .btn-navy:hover {
            background: linear-gradient(135deg, var(--medium-navy), var(--light-navy));
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: var(--pure-white);
        }

        /* Navbar Styles */
        #mainNavbar {
            transition: var(--transition);
            padding: 15px 0;
            z-index: 1000;
            background: linear-gradient(135deg, var(--dark-navy), var(--medium-navy));
        }

        #mainNavbar.scrolled {
            background: rgba(26, 35, 50, 0.95) !important;
            padding: 10px 0;
            box-shadow: var(--shadow-md);
            backdrop-filter: blur(10px);
        }

        #mainNavbar .navbar-brand img {
            height: 40px;
            transition: var(--transition);
        }

        #mainNavbar.scrolled .navbar-brand img {
            height: 35px;
        }

        .nav-link {
            color: var(--pure-white) !important;
            font-weight: 500;
            padding: 8px 15px !important;
            margin: 0 5px;
            position: relative;
            transition: var(--transition);
            border-radius: 6px;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary-gold) !important;
            background: rgba(212, 175, 55, 0.1);
        }

        .nav-link:hover:after {
            width: 70%;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(26, 35, 50, 0.7), rgba(44, 62, 80, 0.7)), url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/1-FJJOIJx35V5Vem51kSNhsfKdEZTfmH.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 100vh;
            display: flex;
            align-items: center;
            color: var(--pure-white);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: radial-gradient(circle, rgba(26,35,50,0.4) 0%, rgba(26,35,50,0.8) 100%);*/
            z-index: 1;
        }

        .hero-section .container {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            animation: fadeInDown 1s ease;
            background: linear-gradient(135deg, var(--pure-white), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.8rem;
            margin-bottom: 10px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease 0.3s;
            animation-fill-mode: both;
            color: var(--accent-gold);
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            color: var(--pure-white);
            border: none;
            padding: 10px 20px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: var(--transition);
            animation: fadeInUp 1s ease 0.6s;
            animation-fill-mode: both;
            box-shadow: var(--shadow-lg);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }

        /* Section Styles */
        section {
            padding: 40px 0;
        }

        .section-title {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            /* display: inline-block; */
            color: var(--dark-navy);
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 40%;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* Why Invest Section - 3D Cards */
        .why-invest-section {
            background: linear-gradient(135deg, var(--cream-white), var(--pure-white));
            position: relative;
            overflow: hidden;
        }

        .card-3d-wrapper {
            perspective: 1000px;
            height: 350px;
            position: relative;
        }

        .card-3d {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 0.8s;
            border-radius: 15px;
            box-shadow: var(--shadow-md);
        }

        .card-3d-wrapper:hover .card-3d {
            transform: rotateY(180deg);
        }

        .card-front, .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            text-align: center;
        }

        .card-front {
            background: linear-gradient(145deg, var(--pure-white), var(--cream-white));
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .card-back {
            background: linear-gradient(145deg, var(--dark-navy), var(--medium-navy));
            color: var(--pure-white);
            transform: rotateY(180deg);
        }

        .animated-icon {
            font-size: 3.5rem;
            color: var(--primary-gold);
            margin-bottom: 20px;
            filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
        }

        .card-title {
            font-size: 1.2rem;
            /* margin-bottom: 15px; */
            color: var(--dark-navy);
        }

        .card-back .card-title {
            color: var(--accent-gold);
        }

        .card-text {
            /* font-size: 1rem; */
            font-weight: 500;
            color: #000;
            line-height: 1.6;
            margin-top: 20px;
        }

        .card-back .card-text {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Gallery Section */
        .gallery-section {
            background: var(--pure-white);
            position: relative;
        }

        .carousel {
            margin: 0 auto;
            overflow: hidden;
            text-align: center;
            position: relative;
            padding: 0;
            list-style: none;
            width: 100%;
            /* max-width: 900px; */
            border-radius: 15px;
            box-shadow: var(--shadow-lg);
        }

        .slides {
            display: block;
            position: relative;
            height: 500px;
            margin: 0;
            padding: 0;
            overflow: hidden;
            list-style: none;
        }

        .slides * {
            user-select: none;
            -ms-user-select: none;
            -moz-user-select: none;
            -khtml-user-select: none;
            -webkit-user-select: none;
            -webkit-touch-callout: none;
        }

        .slides input {
            display: none;
        }

        .slide-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide-image {
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            opacity: 0;
            transition: all 0.7s ease-in-out;
            z-index: 0; /* Ensure proper z-index stacking */
        }

        .slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block; /* Ensure image is properly displayed */
        }

        .carousel-controls {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            font-size: 100px;
            line-height: 500px;
            color: var(--pure-white);
        }

        .carousel-controls label {
            display: none;
            position: absolute;
            padding: 0 20px;
            opacity: 0;
            transition: opacity 0.2s;
            cursor: pointer;
            background: rgba(26, 35, 50, 0.3);
            border-radius: 50%;
            width: 80px;
            height: 80px;
            line-height: 80px;
            font-size: 30px;
            top: 50%;
            transform: translateY(-50%);
        }

        .slide-image:hover + .carousel-controls label {
            opacity: 0.7;
        }

        .carousel-controls label:hover {
            opacity: 1;
            background: rgba(212, 175, 55, 0.8);
        }

        .carousel-controls .prev-slide {
            left: 20px;
        }

        .carousel-controls .next-slide {
            right: 20px;
        }

        .carousel-dots {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 20px;
            z-index: 999;
            text-align: center;
        }

        .carousel-dots .carousel-dot {
            display: inline-block;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .carousel-dots .carousel-dot:hover {
            background-color: var(--primary-gold);
            border-color: var(--pure-white);
        }

        #carousel-img-1:checked ~ .slide-container .slide-image:nth-child(1),
        #carousel-img-2:checked ~ .slide-container .slide-image:nth-child(2),
        #carousel-img-3:checked ~ .slide-container .slide-image:nth-child(3),
        #carousel-img-4:checked ~ .slide-container .slide-image:nth-child(4) {
            opacity: 1;
            z-index: 1;
        }

        #carousel-img-1:checked ~ .carousel-dots label:nth-child(1),
        #carousel-img-2:checked ~ .carousel-dots label:nth-child(2),
        #carousel-img-3:checked ~ .carousel-dots label:nth-child(3),
        #carousel-img-4:checked ~ .carousel-dots label:nth-child(4) {
            background-color: var(--primary-gold);
            border-color: var(--pure-white);
        }

        #carousel-img-1:checked ~ .carousel-controls label:nth-child(4),
        #carousel-img-2:checked ~ .carousel-controls label:nth-child(1),
        #carousel-img-3:checked ~ .carousel-controls label:nth-child(2),
        #carousel-img-4:checked ~ .carousel-controls label:nth-child(3) {
            display: block;
        }

        /* Features Section */
        .features-section {
            background: linear-gradient(135deg, var(--dark-navy), var(--medium-navy));
            position: relative;
            overflow: hidden;
        }

        .feature-card-dark {
            background: linear-gradient(145deg, var(--light-navy), var(--medium-navy));
            transition: var(--transition);
            border: 1px solid rgba(212, 175, 55, 0.2) !important;
            border-radius: 15px !important;
        }

        .feature-card-dark:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl) !important;
            border-color: var(--primary-gold) !important;
        }

        .feature-icon {
            transition: var(--transition);
            filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
        }

        .feature-card-dark:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-title {
            margin-bottom: 8px;
            color: var(--pure-white);
        }

        .feature-subtitle {
            font-size: 0.8rem;
            opacity: 0.8;
            color: var(--accent-gold);
        }

        /* Location Section */
        .location-section {
            background: linear-gradient(135deg, var(--cream-white), var(--pure-white));
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            height: 100%;
            min-height: 400px;
        }

        .location-benefits {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .location-benefit-item {
            display: flex;
            align-items: flex-start;
            /* margin-bottom: 25px; */
            margin: 8px;
            padding: 20px;
            border-radius: 12px;
            background: var(--pure-white);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .location-benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-gold);
        }

        .benefit-icon {
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            color: var(--pure-white);
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-right: 18px;
            flex-shrink: 0;
            box-shadow: var(--shadow-md);
        }

        .benefit-content h4 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: var(--dark-navy);
        }

       .benefit-content p {
  font-size: 1.09rem;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.5;
}
       /* ENHANCED ROI Calculator Section - Dynamic Height */
        .floor-plans-section {
            background: linear-gradient(rgba(26, 35, 50, 0.85), rgba(44, 62, 80, 0.85)), url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/2-uC6uEQG3eIqnsBAG6hvE9KQV5CHTEB.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            min-height: auto; /* Changed from fixed height */
        }

        .roi-calculator-box {
            background: var(--pure-white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(212, 175, 55, 0.2);
            min-height: auto; /* Dynamic height */
            transition: all 0.5s ease; /* Smooth height transitions */
        }

        .calculator-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .calculator-header h3 {
            font-size: 2.5rem;
            color: var(--dark-navy);
            margin-bottom: 15px;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
        }

        .calculator-header p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .calculator-controls {
            margin-bottom: 40px;
        }

        .control-group {
            margin-bottom: 30px;
        }

        .control-group h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--dark-navy);
            font-family: 'Cormorant Garamond', serif;
        }

        .occupancy-options {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .form-check-inline {
            position: relative;
        }

        .form-check-input:checked {
            background-color: var(--primary-gold);
            border-color: var(--primary-gold);
        }

        .occupancy-tooltip {
            position: absolute;
            top: -35px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--dark-navy);
            color: var(--pure-white);
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.8rem;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            white-space: nowrap;
            box-shadow: var(--shadow-md);
        }

        .occupancy-tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border-width: 5px;
            border-style: solid;
            border-color: var(--dark-navy) transparent transparent transparent;
        }

        .form-check-label:hover .occupancy-tooltip {
            opacity: 1;
            visibility: visible;
            top: -40px;
        }

        .year-options {
            margin-top: 20px;
        }

        .year-options .btn-group {
            width: 100%;
        }

        .year-options .btn {
            flex: 1;
            border-color: var(--primary-gold);
            color: var(--dark-navy);
            background: var(--pure-white);
            transition: var(--transition);
        }

        .year-options .btn:hover {
            background: var(--accent-gold);
            border-color: var(--secondary-gold);
        }

        .year-options .btn.active {
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            color: var(--pure-white);
            border-color: var(--primary-gold);
        }

        .calculate-button {
            text-align: center;
            margin-bottom: 40px;
        }

        .calculate-button .btn {
            padding: 15px 35px;
            font-size: 1.2rem;
        }

        /* ENHANCED Results Section - Dynamic Height */
        .results-section {
            position: relative;
            padding: 0; /* Start with no padding */
            border-top: none; /* Start with no border */
            margin-top: 0; /* Start with no margin */
            opacity: 0;
            max-height: 0; /* Start collapsed */
            overflow: hidden;
            transform: translateY(-20px);
            transition: all 0.6s ease; /* Smooth expand animation */
            background: transparent;
            border-radius: 0;
        }

        .results-section.show {
            opacity: 1;
            max-height: 2000px; /* Large enough to accommodate content */
            transform: translateY(0);
            padding: 30px; /* Add padding when shown */
            border-top: 2px solid var(--accent-gold); /* Add border when shown */
            margin-top: 30px; /* Add margin when shown */
            background: var(--cream-white);
            border-radius: 15px;
        }

        .results-section.blur {
            filter: blur(5px);
            pointer-events: none;
        }

        #unlockOverlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            /*height: 100%;*/
            background: rgba(255, 255, 255, 0.95);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        #unlockOverlay.hidden {
            display: none;
        }

        #unlockOverlay h4 {
            margin-bottom: 20px;
            color: var(--dark-navy);
        }

        #unlockOverlay p {
            margin-bottom: 25px;
            color: var(--text-light);
        }

        #unlockForm {
            width: 100%;
            max-width: 400px;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .result-card {
            background: var(--pure-white);
            border-radius: 12px;
            padding: 25px;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: var(--transition);
        }

        .result-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-gold);
        }

        .result-card .card-title {
            font-size: 1.4rem;
            color: var(--dark-navy);
            margin-bottom: 20px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--accent-gold);
            font-family: 'Cormorant Garamond', serif;
        }

        .result-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            padding: 8px 0;
        }

        .result-label {
            color: var(--text-light);
            font-weight: 500;
            font-size: 0.8rem;
        }

        .result-value {
            font-weight: 700;
            color: var(--dark-navy);
                        font-size: 0.8rem;

            
        }

        .total-roi {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 2px solid var(--accent-gold);
        }

        .total-roi .result-value {
            color: var(--primary-gold);
            font-size: 0.8rem;
        }

        .graph-section {
            margin-top: 40px;
        }

        .graph-section h4 {
            text-align: center;
            margin-bottom: 25px;
            color: var(--dark-navy);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
        }

        #graphWrapper {
            height: 300px;
            position: relative;
            background: var(--pure-white);
            border-radius: 12px;
            padding: 20px;
            box-shadow: var(--shadow-md);
        }

        .disclaimer {
            margin-top: 25px;
            text-align: center;
            padding: 20px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        /* Payment Plans Section */
        .payment-section {
            background: linear-gradient(135deg, var(--cream-white), var(--pure-white));
            position: relative;
        }

        .payment-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 40px;
        }

        .payment-plan-btn {
            background: var(--pure-white);
            border: 2px solid var(--primary-gold);
            color: var(--dark-navy);
            padding: 15px 30px;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .payment-plan-btn:hover, .payment-plan-btn.active {
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            color: var(--pure-white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .payment-details {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .payment-details.show {
            display: block;
        }

        .payment-table {
            background: var(--pure-white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .payment-table-header {
            background: linear-gradient(135deg, var(--dark-navy), var(--medium-navy));
            color: var(--pure-white);
            padding: 20px 25px;
        }

        .payment-table-header h3 {
            margin-bottom: 0;
            font-size: 1.6rem;
            color: var(--accent-gold);
        }

        .payment-table-body {
            padding: 25px;
        }

        .payment-table-body table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 25px;
        }

        .payment-table-body th, .payment-table-body td {
            padding: 15px 18px;
            text-align: left;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .payment-table-body th {
            background: var(--cream-white);
            font-weight: 600;
            color: var(--dark-navy);
        }

        .payment-table-body td {
            color: var(--text-dark);
        }

        .payment-highlights {
            background: var(--cream-white);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .payment-highlights h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark-navy);
        }

        .payment-highlights ul {
            padding-left: 25px;
            margin-bottom: 0;
        }

        .payment-highlights li {
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(26, 35, 50, 0.8), rgba(44, 62, 80, 0.8)), url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/3-2yMi2zJ2oXbot6d35Cxw97xc6oVkGJ.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--pure-white);
            text-align: center;
            padding: 120px 0;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            animation: fadeInDown 1s ease;
            color: var(--pure-white);
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 35px;
            animation: fadeInUp 1s ease 0.3s;
            animation-fill-mode: both;
            color: var(--accent-gold);
        }

        .cta-section .btn {
            animation: fadeInUp 1s ease 0.6s;
            animation-fill-mode: both;
        }

        /* Testimonials Section - Enhanced */
        /* .testimonials-section {
            background: var(--pure-white);
            position: relative;
            padding: 100px 0;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--pure-white) 0%, var(--cream-white) 100%);
            z-index: 0;
        }

        .testimonials-section .container {
            position: relative;
            z-index: 1;
        }

        .testimonial-card {
            background: var(--pure-white);
            transition: var(--transition);
            border-radius: 20px;
            padding: 40px;
            margin: 20px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(212, 175, 55, 0.1);
            position: relative;
            overflow: visible;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            border-radius: 25px;
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }

        .testimonial-card:hover::before {
            opacity: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .testimonial-image {
            margin-bottom: 25px;
        }

        .quote-icon {
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            color: var(--pure-white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: var(--text-dark);
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 25px;
        }

        .testimonial-author h4 {
            font-size: 1.3rem;
            color: var(--dark-navy);
            margin-bottom: 5px;
        }

        .testimonial-author p {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .testimonial-rating {
            color: var(--primary-gold);
            font-size: 1.1rem;
        } */

        /* Enhanced Testimonial Controls */
        /* .testimonial-controls {
            margin-top: 50px;
            display: flex;
            justify-content: center;
            gap: 20px;
            position: relative;
            z-index: 10;
        }

        .testimonial-controls .btn {
            background: linear-gradient(135deg, var(--dark-navy), var(--medium-navy));
            color: var(--pure-white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            border: none;
            box-shadow: var(--shadow-lg);
            font-size: 1.2rem;
        }

        .testimonial-controls .btn:hover {
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            transform: scale(1.1);
            box-shadow: var(--shadow-xl);
        }

        .testimonial-indicators {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
            position: relative;
            z-index: 10;
        }

        .testimonial-indicators button {
            background: rgba(212, 175, 55, 0.3);
            border: none;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            transition: var(--transition);
        }

        .testimonial-indicators button.active {
            background: var(--primary-gold) !important;
            transform: scale(1.3);
        }

        .testimonial-indicators button:hover {
            background: var(--secondary-gold);
            transform: scale(1.2);
        } */




.testimonial-card {
  background: #ffffff;
  transition: all 0.3s ease;
  text-align: left;
}
.testimonial-card:hover {
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.08);
}
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #1976d2;
}
.quote-icon {
  background: white;
  padding: 5px;
  border-radius: 50%;
}


        /* Footer - Redesigned */
        .footer-section {
            background: linear-gradient(135deg, var(--dark-navy), var(--medium-navy));
            color: var(--pure-white);
            padding: 60px 0 40px;
            position: relative;
        }

        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 40px;
        }

        .footer-form-section {
            padding-right: 20px;
        }

        .footer-info h3 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--primary-gold);
        }

        .footer-info p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 25px;
            color: var(--accent-gold);
        }

        .footer-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .footer-form input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--pure-white);
            border-radius: 8px;
            padding: 12px 15px;
            margin-bottom: 15px;
            transition: var(--transition);
        }

        .footer-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-form input:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--primary-gold);
            color: var(--pure-white);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }

        .footer-social-section {
            padding-left: 20px;
            text-align: center;
        }

        .footer-social-section h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary-gold);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .social-links a {
            background: rgba(255, 255, 255, 0.1);
            color: var(--pure-white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            font-size: 1.2rem;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            padding-top: 30px;
            text-align: center;
        }

        .copyright {
            font-size: 0.95rem;
            opacity: 0.8;
            margin-bottom: 8px;
        }

        .copyright a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: var(--transition);
        }

        .copyright a:hover {
            color: var(--accent-gold);
            text-decoration: underline;
        }

        /* Modal Styles */
        .modal-content {
            border-radius: 20px;
            overflow: hidden;
            border: none;
            box-shadow: var(--shadow-xl);
        }

        .modal-header {
            border-bottom: none;
            background: linear-gradient(135deg, var(--dark-navy), var(--medium-navy));
            color: var(--pure-white);
            padding: 25px 30px;
        }

        .modal-title {
            color: var(--primary-gold);
        }

        .modal-body {
            padding: 30px;
            background: var(--pure-white);
        }

        .custom-form-field {
            margin-bottom: 20px;
        }

        .custom-form-field label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-navy);
        }

        .custom-form-field input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 8px;
            transition: var(--transition);
            background: var(--cream-white);
        }

        .custom-form-field input:focus {
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
            background: var(--pure-white);
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            /* margin-bottom: 20px; */
        }

        .form-row .custom-form-field {
            flex: 1;
            min-width: 200px;
        }

        .datetime-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .datetime-row .custom-form-field {
            flex: 1;
        }

        .address-link {
            color: var(--primary-gold);
            text-decoration: none;
            display: inline-block;
            padding: 8px 0;
            transition: var(--transition);
        }

        .address-link:hover {
            color: var(--secondary-gold);
            text-decoration: underline;
        }

        /* Auto Popup */
        .auto-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 500px;
            background: var(--pure-white);
            border-radius: 20px;
            box-shadow: var(--shadow-xl);
            z-index: 1001;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .auto-popup-header {
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            color: var(--pure-white);
            padding: 25px;
            position: relative;
            text-align: center;
        }

        .auto-popup-header h3 {
            margin-bottom: 8px;
            font-size: 1.6rem;
            color: var(--pure-white);
        }

        .auto-popup-header p {
            margin-bottom: 0;
            opacity: 0.95;
        }

        .auto-popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: var(--pure-white);
            font-size: 2.5rem;
            cursor: pointer;
            transition: var(--transition);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .auto-popup-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .auto-popup-body {
            padding: 10px;
        }

        .auto-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 35, 50, 0.8);
            z-index: 1000;
            backdrop-filter: blur(5px);
        }

        /* Thank You Page */
        .thank-you-page {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--dark-navy), var(--medium-navy));
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 20px;
            overflow-y: auto;
        }

        .thank-you-container {
            background: var(--pure-white);
            border-radius: 20px;
            padding: 50px;
            max-width: 800px;
            width: 100%;
            text-align: center;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .thank-you-title {
            color: var(--primary-gold);
            font-size: 2.8rem;
            margin-bottom: 25px;
        }

        .thank-you-subtitle {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 35px;
            line-height: 1.6;
        }

        .thank-you-benefits {
            background: var(--cream-white);
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 35px;
            text-align: left;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .thank-you-benefits ul {
            margin-bottom: 0;
            padding-left: 25px;
        }

        .thank-you-benefits li {
            margin-bottom: 12px;
            color: var(--text-dark);
            line-height: 1.5;
        }

        .thank-you-actions {
            margin-bottom: 35px;
        }

        .btn-visit {
            background: linear-gradient(135deg, var(--dark-navy), var(--medium-navy));
            color: var(--pure-white);
            padding: 15px 30px;
            font-weight: 600;
            border: none;
            border-radius: 10px;
            margin-bottom: 20px;
            transition: var(--transition);
            width: 100%;
            max-width: 350px;
            box-shadow: var(--shadow-md);
        }

        .btn-visit:hover {
            background: linear-gradient(135deg, var(--medium-navy), var(--light-navy));
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-chat {
            background: #25D366;
            color: var(--pure-white);
            padding: 12px 25px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: var(--shadow-md);
        }

        .btn-chat:hover {
            background: #128C7E;
            color: var(--pure-white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-call {
            background: #007bff;
            color: var(--pure-white);
            padding: 12px 25px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: var(--shadow-md);
        }

        .btn-call:hover {
            background: #0056b3;
            color: var(--pure-white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .thank-you-social {
            margin-bottom: 35px;
        }

        .thank-you-social a {
            background: var(--cream-white);
            color: var(--dark-navy);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 8px;
            transition: var(--transition);
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .thank-you-social a:hover {
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            color: var(--pure-white);
            transform: translateY(-3px);
            border-color: var(--primary-gold);
        }

        .thank-you-footer {
            margin-bottom: 25px;
        }

        .company-logos {
            margin-bottom: 15px;
        }

        .logo {
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--dark-navy);
        }

        .tagline {
            font-style: italic;
            color: var(--text-light);
            font-size: 1rem;
        }

        /* Floating Buttons */
        .floating-buttons-wrapper {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 99;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

.floating-buttons-wrapper {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Common Style for Buttons */
.floating-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* WhatsApp Button */
.whatsapp-floating {
  background-color: #25D366;
}

.whatsapp-floating:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}

/* Call Button */
.call-floating {
  background-color: #1976d2;
}

.call-floating:hover {
  transform: scale(1.1);
  background-color: #0d47a1;
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .floating-button {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .floating-buttons-wrapper {
    right: 15px;
    bottom: 15px;
    gap: 12px;
  }
}



        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 1199.98px) {
            .hero-title { font-size: 3rem; }
            .hero-subtitle { font-size: 1.6rem; }
            .section-title { font-size: 2.4rem; }
        }

        @media (max-width: 991.98px) {
            section { padding: 60px 0; }
            .hero-title { font-size: 2.5rem; }
            .hero-subtitle { font-size: 1.4rem; }
            .section-title { font-size: 2.2rem; }
            .card-3d-wrapper { height: 320px; }
            .slides { height: 400px; }
            .carousel-controls { line-height: 400px; }
            .footer-content { grid-template-columns: 1fr; gap: 30px; }
            .footer-form-section, .footer-social-section { padding: 0; text-align: center; }
        }

        @media (max-width: 767.98px) {
            section { padding: 50px 0; }
            .hero-section { height: 80vh; }
            .hero-title { font-size: 2.2rem; }
            .hero-subtitle { font-size: 1.2rem; }
            .cta-button { padding: 15px 30px; font-size: 1.1rem; }
            .section-title { font-size: 2rem; }
            .card-3d-wrapper { height: 300px; margin-bottom: 20px; }
            .slides { height: 300px; }
            .carousel-controls { line-height: 300px; font-size: 60px; }
            .payment-buttons { flex-direction: column; align-items: center; gap: 15px; }
            .payment-plan-btn { width: 100%; max-width: 300px; }
            .results-grid { grid-template-columns: 1fr; }
            .testimonial-controls .btn { width: 50px; height: 50px; }
        }

        @media (max-width: 575.98px) {
            .hero-title { font-size: 2.4rem; margin-top: 10px; }
            .hero-subtitle { font-size: 1.1rem; }
            .section-title { font-size: 1.8rem; }
            .slides { height: 250px; }
            .carousel-controls { line-height: 250px; font-size: 40px; }
            .auto-popup { width: 95%; }
            .thank-you-container { padding: 30px 20px; }
            .thank-you-title { font-size: 2rem; }
            .form-row, .datetime-row { flex-direction: column; gap: 15px; }
            .floating-buttons-wrapper { bottom: 20px; right: 20px; }
            .whatsapp-floating { width: 50px; height: 50px; font-size: 1.5rem; }
        }

         /* Floor Plan Section Styles */
    .floor-plan-section {
        background: linear-gradient(135deg, var(--cream-white), var(--pure-white));
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.8rem;
        text-align: center;
        margin-bottom: 15px;
        position: relative;
        color: var(--dark-navy);
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        text-align: center;
        color: var(--text-light);
        margin-bottom: 20px;
    }
    
    .title-separator {
        width: 80px;
        height: 4px;
        background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
        margin: 0 auto 40px;
        border-radius: 2px;
    }
    
    .floor-plan-image-container {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(212, 175, 55, 0.2);
        transition: var(--transition);
    }
    
    .floor-plan-image-container:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }
    
    .floor-plan-image {
        width: 100%;
        border-radius: 15px;
        transition: var(--transition);
    }
    
    .floor-plan-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
        color: var(--pure-white);
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 1rem;
        z-index: 2;
        box-shadow: var(--shadow-md);
    }
    
    .floor-plan-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        background: linear-gradient(to top, rgba(26, 35, 50, 0.8), transparent);
        display: flex;
        justify-content: center;
        opacity: 0;
        transition: var(--transition);
    }
    
    .floor-plan-image-container:hover .floor-plan-overlay {
        opacity: 1;
    }
    
    .floor-plan-zoom {
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 500;
    }
    
    .floor-plan-details {
        padding: 30px;
        background: var(--pure-white);
        border-radius: 15px;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .plan-title {
        font-size: 2rem;
        color: var(--dark-navy);
        margin-bottom: 10px;
    }
    
    .plan-price {
        font-size: 1.5rem;
        color: var(--primary-gold);
        font-weight: 600;
        margin-bottom: 25px;
    }
    
    .plan-features {
        margin-bottom: 30px;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    
  .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

    
    .feature-text h5 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: var(--dark-navy);
    }
    
    .feature-text p {
        font-size: 0.95rem;
        color: var(--text-light);
        margin-bottom: 0;
    }
    
    .plan-actions {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .btn-outline-navy {
        background: transparent;
        border: 2px solid var(--dark-navy);
        color: var(--dark-navy);
        padding: 12px 25px;
        font-weight: 600;
        border-radius: 10px;
        transition: var(--transition);
    }
    
    .btn-outline-navy:hover {
        background: var(--dark-navy);
        color: var(--pure-white);
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }
    
    .plan-note {
        font-size: 0.9rem;
        color: var(--text-light);
        padding: 15px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 10px;
        border-left: 4px solid var(--primary-gold);
    }
    
    .floor-plan-highlights {
        padding: 30px;
        background: linear-gradient(135deg, var(--dark-navy), var(--medium-navy));
        border-radius: 15px;
        box-shadow: var(--shadow-lg);
        margin-top: 30px;
    }
    
    .highlights-title {
        font-size: 1.5rem;
        color: var(--primary-gold);
        margin-bottom: 25px;
        text-align: center;
    }
    
    .highlight-item {
        text-align: center;
        padding: 20px 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        transition: var(--transition);
        height: 100%;
        border: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .highlight-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary-gold);
    }
    
    .highlight-icon {
        font-size: 2rem;
        color: var(--primary-gold);
        margin-bottom: 15px;
    }
    
    .highlight-text {
        color: var(--pure-white);
        font-weight: 500;
    }
    
    /* Modal Styles */
    .floor-plan-legend {
        display: flex;
        gap: 20px;
        margin-right: auto;
    }
    
    .legend-item {
        display: flex;
        align-items: center;
    }
    
    .legend-color {
        width: 15px;
        height: 15px;
        border-radius: 3px;
        margin-right: 8px;
    }
    
    .legend-text {
        font-size: 0.9rem;
        color: var(--text-dark);
    }
    
    /* Responsive Styles */
    @media (max-width: 991.98px) {
        .plan-actions {
            flex-direction: column;
        }
        
        .plan-actions .btn {
            width: 100%;
        }
    }
    
    @media (max-width: 767.98px) {
        .section-title {
            font-size: 2.2rem;
        }
        
        .floor-plan-details {
            padding: 20px;
        }
        
        .plan-title {
            font-size: 1.8rem;
        }
        
        .floor-plan-legend {
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
    }
    
    @media (max-width: 575.98px) {
        .section-title {
            font-size: 1.8rem;
        }
        
        .feature-icon {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
        
        .feature-text h5 {
            font-size: 1rem;
        }
        
        .feature-text p {
            font-size: 0.85rem;
        }
    }