    /* Resetting Default Margin and Padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0b0c10;
    color: #ffffff;
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: absolute;
    width: 100%;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links a {
    color: #b3b3b3;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s;
}
.footer-address {
    font-size: 14px;
    color: rgb(255, 255, 255);
    line-height: 28px;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    font-size: 14px;
}

.btn-request {
    background: transparent;
    color: #fff;
    border: 1px solid #ffffff;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-request:hover {
    background: #fff;
    color: #000;
}


.hero-section {
    position: relative;
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 120px 50px 40px 50px;
    background: url('../image/rental-banner1.jpg') no-repeat center center/cover;
}

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

.breadcrumb, .hero-content, .sidebar-contact, .info-bar {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 12px;
    color: #b3b3b3;
}

.breadcrumb span {
    color: #ffffff;
}

/* Hero Content */
.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 60px;
  
}

.btn-choose {
    background: #000000;
    color: #ffffff;
    border: 1px solid #333;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    margin-bottom: 100px;
}

.btn-choose:hover {
    background: #222;
}

/* Right Sidebar Contact Menu */
.sidebar-contact {
    position: absolute;
    right: 50px;
    top: 35%;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 20px;
    border-radius: 8px;
    width: 220px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.sidebar-contact p {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-style: normal;
}

/* Bottom Info Bar */
.info-bar {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 20px 40px;
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-item .label {
    font-size: 12px;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item .value {
    font-size: 18px;
    font-weight: 600;
}

/* Responsive Handling for Mobile */
@media (max-width: 900px) {
    .navbar {
        padding: 20px;
    }
    .nav-links, .nav-right .phone {
        display: none; 
    }
    .hero-section {
        padding: 100px 20px 20px 20px;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .sidebar-contact {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
    .info-bar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
}

.amenities-section {
    background-color: #f7f7f7; 
    color: #1a1a1a;
    padding: 60px 50px 100px 50px;
    position: relative;
}
.top-line {
    width: 98%;
    height: 2px;
    background-color: #8c8c8c;
    margin: 0 auto 50px auto;
}

.amenities-section .container {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    gap: 40px;
}

/* Left Big Font Style */
.left-col {
    flex: 1;
}

.section-title {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #111;
    line-height: 1;
}

/* Right Columns Layout */
.right-col {
    flex: 2;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Exactly 2 columns */
    row-gap: 40px;
    column-gap: 60px;
}

/* Row wrapper for each logo + text */
.amenity-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Fine circle line for logos */
.icon-wrapper {
    width: 56px;
    height: 56px;
    border: 1px solid #707070; /* Sleek dark border line */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222222;
    flex-shrink: 0;
}

/* SVG sizes inside the circle */
.icon-wrapper svg {
    width: 30px;
    height: 30px;
}

.amenity-text {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

/* Responsive design for phones */
@media (max-width: 900px) {
    .amenities-section .container {
        flex-direction: column;
        gap: 40px;
    }
    .amenities-grid {
        grid-template-columns: 1fr; /* Mobile me row auto adjust ho jayegi */
        row-gap: 30px;
    }
    .section-title {
        font-size: 38px;
    }
}
/* Gallery Section Main Layout */
.gallery-section {
    background-color: #f7f7f7; /* Matching light background */
    color: #1a1a1a;
    padding: 60px 50px;
    border-top: 1px solid #dcdcdc;
}

/* Header with Title and Buttons */
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    border-top: 1px solid #8c8c8c; /* Top sleek black line */
    padding-top: 20px;
}

.gallery-title {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #111;
}

.gallery-actions {
    display: flex;
    gap: 15px;
}
.logo img { width: 130px; }
.btn-action {
    background-color: #1c1c1c;
    color: #ffffff;
    border: none;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 160px;
    height: 90px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: left;
}

.btn-action:hover {
    background-color: #333333;
}

.action-icon {
    align-self: flex-end;
    font-size: 16px;
    opacity: 0.8;
}


.gallery-content {
    display: flex;
    gap: 40px;
}


.gallery-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 150px;
    flex-shrink: 0;
}

.category-btn {
    background: transparent;
    border: none;
    color: #777777;
    font-size: 15px;
    text-align: left;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}


.category-btn.active {
    color: #111;
    border: 1px solid #000000;
    border-radius: 4px;
}

.category-btn:hover {
    color: #111;
}


.image-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    flex-grow: 1;
}

.grid-item {
    border-radius: 6px;
    overflow: hidden;
    height: 320px; 
}

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

.grid-item img:hover {
    transform: scale(1.03); 
}


.grid-item.large {
    grid-column: span 7;
}

.grid-item.wide {
    grid-column: span 5;
}

.grid-item.tall {
    grid-column: span 5;
    height: 380px;
}

.grid-item.medium {
    grid-column: span 7;
    height: 380px;
}


@media (max-width: 992px) {
    .gallery-content {
        flex-direction: column;
    }
    .gallery-sidebar {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }
    .image-grid {
        grid-template-columns: 1fr;
    }
    .grid-item.large, .grid-item.wide, .grid-item.tall, .grid-item.medium {
        grid-column: span 1;
        height: 250px;
    }
    .gallery-header {
        flex-direction: column;
        gap: 20px;
    }
}

       
        .gallery-section {
            background-color: #f7f7f7;
            color: #1a1a1a;
            padding: 60px 50px;
            font-family: 'Inter', sans-serif;
        }

    
        .gallery-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
            border-top: 1px solid #8c8c8c; 
            padding-top: 20px;
        }

        .gallery-title {
            font-size: 52px;
            font-weight: 700;
            letter-spacing: -1.5px;
            color: #111;
            margin: 0;
        }

      
        .gallery-actions {
            display: flex;
            gap: 15px;
        }

        .btn-action {
            background-color: #1c1c1c;
            color: #ffffff;
            border: none;
            padding: 15px 25px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 4px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 160px;
            height: 90px;
            cursor: pointer;
            transition: background-color 0.3s;
            text-align: left;
        }

        .btn-action:hover {
            background-color: #333333;
        }

        .action-icon {
            align-self: flex-end;
            font-size: 16px;
            opacity: 0.8;
        }

        
        .gallery-content {
            display: flex;
            gap: 40px;
        }

        .gallery-sidebar {
            display: flex;
            flex-direction: column;
            gap: 15px;
            width: 150px;
            flex-shrink: 0;
        }

        .category-btn {
            background: transparent;
            border: none;
            color: #777777;
            font-size: 15px;
            text-align: left;
            padding: 8px 12px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
            outline: none;
        }

        .category-btn.active {
            color: #111;
            border: 1px solid #000000;
            border-radius: 4px;
        }

        .category-btn:hover {
            color: #111;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
            flex-grow: 1;
        }

        .grid-item {
            border-radius: 6px;
            overflow: hidden;
            height: 320px; 
            background-color: #e0e0e0; 
        }

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

        .grid-item img:hover {
            transform: scale(1.03); 
        }

      
        .grid-item.large { grid-column: span 7; }
        .grid-item.wide { grid-column: span 5; }
        .grid-item.tall { grid-column: span 5; height: 380px; }
        .grid-item.medium { grid-column: span 7; height: 380px; }

        
        @media (max-width: 992px) {
            .gallery-content { flex-direction: column; }
            .gallery-sidebar { flex-direction: row; width: 100%; overflow-x: auto; }
            .image-grid { grid-template-columns: 1fr; }
            .grid-item.large, .grid-item.wide, .grid-item.tall, .grid-item.medium {
                grid-column: span 1;
                height: 250px;
            }
            .gallery-header { flex-direction: column; gap: 20px; }
        }

.description-section {
    background-color: #f7f7f7; 
    padding: 40px 50px 80px 50px;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
}

.description-container {
    max-width: 1200px;
    margin: 0 auto;
}


.main-text, .sub-text {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.trends-heading {
    font-size: 20px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
}

.trends-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 30px;
}

.trends-list li {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.extra-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.4s ease-out;
}


.extra-content.open {
    max-height: 500px;
    opacity: 1;
}


.btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.toggle-btn {
    background: transparent;
    color: #111;
    border: 1px solid #1a1a1a;
    padding: 10px 35px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.toggle-btn:hover {
    background-color: #111;
    color: #ffffff;
}
.layouts-section {
    background-color: #f6f5f5;
    padding: 60px 40px;
    font-family: 'Inter', sans-serif;
}

.layouts-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #c2c2c2;
    padding-top: 25px;
    margin-bottom: 40px;
}

.layouts-title {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a1a;
    margin: 0;
}

.layouts-subtitle {
    max-width: 420px;
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
    text-align: right;
    margin: 0;
}

.layouts-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.layout-card {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
    overflow: hidden;
}

.map-wrapper {
    width: 100%;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fafafa;
    margin-bottom: 20px;
    border-radius: 2px;
}



.tags-row {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.tag-badge {
    background-color: #e8e8e8;
    color: #555555;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 3px;
}
.price-info {
    margin-bottom: 20px;
}

.price-text {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin: 0 0 6px 0;
}

.desc-text {
    font-size: 13px;
    color: #7c7c7c;
    margin: 0;
    line-height: 1.4;
}
.btn-learn-more {
    width: fit-content;
    background: transparent;
    border: 1px solid #7c7c7c;
    color: #111;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    margin-top: auto;
    transition: all 0.2s ease;
}

.btn-learn-more:hover {
    background-color: #111;
    border-color: #111;
    color: #ffffff;
}
@media (max-width: 992px) {
    .layouts-grid-container {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    .layouts-header { flex-direction: column; gap: 15px; }
    .layouts-subtitle { text-align: left; }
    .layouts-grid-container {
        grid-template-columns: 1fr; 
    }
    .layouts-section { padding: 40px 20px; }
}   
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    background-color: #ffffff;
    width: 100%;
    max-width: 460px;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    text-align: center;
    box-sizing: border-box;
}
.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: 300;
    color: #333;
    cursor: pointer;
    line-height: 1;
}

.modal-close-btn:hover {
    color: #000;
}
.modal-title {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #111;
    margin: 0 0 8px 0;
}

.modal-subtitle {
    font-size: 13px;
    color: #666666;
    margin: 0 0 30px 0;
}
.input-wrapper {
    width: 100%;
    margin-bottom: 16px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background: #fff;
}

.input-wrapper input {
    width: 100%;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-size: 14px;
    color: #111;
    background: transparent;
}
.phone-wrapper {
    padding-left: 14px;
}

.country-flag {
    font-size: 16px;
    margin-right: 6px;
}

.country-code {
    font-size: 14px;
    color: #333;
    margin-right: 4px;
    font-weight: 500;
}

.phone-wrapper input {
    padding-left: 4px;
}
.modal-submit-btn {
    width: 100%;
    background-color: #111;
    color: #ffffff;
    border: none;
    padding: 15px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

.modal-submit-btn:hover {
    background-color: #222222;
}
.modal-privacy-text {
    font-size: 11px;
    color: #888888;
    margin-top: 15px;
    line-height: 1.4;
}

.modal-privacy-text a {
    color: #666666;
    text-decoration: underline;
}
/* Dark Premium Section Base */
.payment-plan-section {
    background-color: #1a1a1a; /* Pure deep dark screen background */
    color: #ffffff;
    padding: 80px 50px;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

/* Flexbox Layout Splitting wrapper */
.payment-plan-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.4); /* Thin clean horizontal top wire */
    padding-top: 40px;
}

/* Left Sidebar Header Box */
.plan-left-col {
    flex: 1;
    max-width: 400px;
}

.plan-main-title {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.plan-subtitle {
    font-size: 15px;
    color: #b3b3b3;
    line-height: 1.4;
    margin: 0;
}

/* Right Structural Content Data Rows Column */
.plan-right-col {
    flex: 1.4;
    width: 100%;
}

/* Fine Horizontal Grid Split Blocks */
.plan-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* Clean sleek grid line spacing */
}

.installment-stage {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
}

.installment-percentage {
    display: flex;
    align-items: center;
    gap: 15px;
}

.percentage-note {
    font-size: 12px;
    color: #8c8c8c;
    font-style: italic;
    text-transform: capitalize;
}

.percentage-number {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    min-width: 60px;
    text-align: right;
}

/* Footer Promo Action Sheet Segment */
.plan-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 35px;
}

.consultation-promo-text {
    font-size: 13px;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

/* White Modern Solid Filled CTA Action Button */
.btn-consultation {
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-consultation:hover {
    background-color: #e6e6e6;
    transform: translateY(-1px);
}

/* Responsiveness break setups for smooth mobile reading templates */
@media (max-width: 992px) {
    .payment-plan-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .plan-left-col { max-width: 100%; }
}

@media (max-width: 600px) {
    .payment-plan-section { padding: 50px 20px; }
    .plan-row { padding: 18px 0; }
    .installment-stage { font-size: 15px; }
    .percentage-number { font-size: 18px; }
    .plan-footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .btn-consultation { width: 100%; text-align: center; }
}
/* Base Section Layout */
.location-section {
    background-color: #f6f5f5; /* Premium background template sync */
    padding: 80px 50px;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    width: 100%;
}

/* Header Grid Row splitting */
.location-header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    border-top: 1px solid #c2c2c2;
    padding-top: 30px;
    margin-bottom: 30px;
}

.loc-left-col {
    flex: 1;
}

.location-title {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #111;
    margin: 0;
}

.loc-right-col {
    flex: 1.5;
    max-width: 550px;
}

.location-desc {
    font-size: 13px;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

/* Soft Gray Connectivity Capsules Grid */
.badges-row-wrapper {
    max-width: 1200px;
    margin: 0 auto 35px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.loc-badge {
    background-color: #e8e8e8; /* Muted gray capsules look */
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.badge-icon {
    font-size: 14px;
    opacity: 0.8;
}

.badge-time {
    color: #666666;
    margin-left: 2px;
}

.map-outer-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    height: 520px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.interactive-map-frame {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Yandex/Google Floating Overlay Button styling */
.map-overlay-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    background-color: #ffffff;
    color: #111;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: background-color 0.2s ease;
}

.map-overlay-btn:hover {
    background-color: #f5f5f5;
}

/* Responsiveness adjustments */
@media (max-width: 992px) {
    .location-header-wrapper { flex-direction: column; gap: 15px; }
    .location-title { font-size: 40px; }
    .map-outer-container { height: 400px; }
}

@media (max-width: 600px) {
    .location-section { padding: 50px 20px; }
    .badges-row-wrapper { gap: 8px; }
    .loc-badge { width: 100%; font-size: 12px; }
}
/* DESIGN OVERRIDES BASED ON SCREENSHOT IMAGE 731b7eee-f313-4f51-8db4-15d9b9118308 */

.questions-footer-section {
    background-color: #f5f4f4; /* Subtle off-white layout match */
    padding: 90px 0px 40px ;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    box-sizing: border-box;
}

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

/* Left side header styles */
.questions-left {
    flex: 1;
}

.questions-main-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #111111;
    margin: 0 0 45px 0;
}

/* Expert Box Component */
.expert-profile-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 380px;
}

.expert-image-wrapper {
    width: 100px;
    height: 115px;
    overflow: hidden;
    border-radius: 4px;
}

.expert-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
}

.expert-name {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    margin: 0 0 8px 0;
}

.expert-role-desc {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* Right side form elements */
.questions-right {
    flex: 1.1;
    max-width: 520px;
}

.form-promo-headline {
    font-size: 15px;
    color: #333333;
    line-height: 1.5;
    margin: 0 0 40px 0;
}

/* Clean Underlined Input Sheets */
.form-field-group {
    width: 100%;
    margin-bottom: 25px;
    border-bottom: 1px solid #bcbcbc;
    position: relative;
}

.form-field-group input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 0;
    font-size: 14px;
    color: #111;
}

/* Phone input with custom flag block alignment */
.phone-input-container {
    display: flex;
    align-items: center;
}

.flag-prefix-box {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-right: 10px;
    user-select: none;
}

.country-flag-icon {
    font-size: 15px;
}

.country-calling-code {
    font-size: 14px;
    color: #111111;
    font-weight: 500;
}

/* Premium Solid Rectangle Button */
.submit-request-btn {
    background-color: #111;
    color: #ffffff;
    border: none;
    width: auto;
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.2s ease;
}

.submit-request-btn:hover {
    background-color: #222222;
}

/* Fine disclaimer text under submit */
.form-disclaimer-text {
    font-size: 11px;
    color: #777777;
    margin-top: 20px;
    line-height: 1.4;
}

.legal-link-anchor {
    color: #555555;
    text-decoration: underline;
}


.corporate-info-divider {
    width: 100%;

    height: 1px;
    background-color: #d2d2d2;
    margin: 80px auto 30px auto;
}

.corporate-footer-wrapper {
    max-width: 100%;

    font-size: 20px;
    color: #0e0c0c;

}

.corp-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-branding-logo {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
}

.social-links-container {
    display: flex;
    gap: 15px;
}

.social-icon-link {
    color: #111;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.social-icon-link:hover {
    opacity: 1;
}

.corporate-contact-details {
    text-align: right;
}

.address-text-line {
    margin: 0 0 6px 0;
    color: #333333;
}

.communication-channels {
    margin: 0;
    color: #111;
    font-weight: 500;
}
.corp-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    color: #888888;
    line-height: 1.5;
}

.legal-copyright-notice {
    margin: 0;
    max-width: 750px;
}

.legal-footer-links {
    display: flex;
    gap: 20px;
    white-space: nowrap;
}

.legal-footer-links a {
    color: #888888;
    text-decoration: none;
}

.legal-footer-links a:hover {
    color: #444444;
}

/* Responsive Fluid Adjustments */
@media (max-width: 992px) {
    .questions-container {
        flex-direction: column;
        gap: 50px;
    }
    .corp-top-row, .corp-bottom-row {
        flex-direction: column;
        gap: 20px;
    }
    .corporate-contact-details {
        text-align: left;
    }
}
