﻿.main-section {
    padding-left: 120px;
    padding-right: 120px;
}

section {
    padding: 20px 0;
}

.project-hero-section {
    background: #f7f8fa;
    overflow: hidden;
}

.project-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    padding: 10px 18px;
    background: #fff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.4;
    color: #666;
    max-width: 650px;
    margin-bottom: 22px;
}

.hero-ai-search-box {
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

    .hero-ai-search-box i {
        font-size: 22px;
    }

    .hero-ai-search-box input {
        flex: 1;
        border: none;
        outline: none;
        font-size: 16px;
    }

    .hero-ai-search-box button {
        border: none;
        background: #111;
        color: #fff;
        padding: 14px 28px;
        border-radius: 14px;
        font-weight: 700;
    }

.hero-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

    .hero-search-tags span {
        padding: 10px 18px;
        background: #fff;
        border-radius: 100px;
        font-size: 14px;
    }

.hero-stats-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-stat-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    min-width: 215px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

    .hero-stat-card h3 {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 2px;
    }

    .hero-stat-card p {
        color: #666;
        margin: 0;
    }

.hero-main-image-card {
    position: relative;
}

    .hero-main-image-card img {
        border-radius: 40px;
        height: 460px;
        object-fit: cover;
    }

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
    border-radius: 40px;
}

.hero-floating-card {
    position: absolute;
    background: rgba(255,255,255,.95);
    padding: 18px 24px;
    border-radius: 22px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.card-one {
    top: 30px;
    left: -30px;
}

.card-two {
    top: 30px;
    right: 16px;
}

.hero-floating-card span {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.hero-floating-card h4 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

.hero-project-preview {
    position: absolute;
    bottom: 35px;
    left: 35px;
    right: 35px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(1px);
    padding: 30px;
    border-radius: 28px;
    color: #fff;
}

.preview-tag {
    display: inline-flex;
    padding: 8px 16px;
    background: rgba(255,255,255,.2);
    border-radius: 100px;
    margin-bottom: 18px;
}

.hero-project-preview h3 {
    font-size: 32px;
    font-weight: 800;
}

.preview-price {
    font-size: 20px;
    font-weight: 800;
}

.preview-project {
    color: #fff;
    font-size: 29px;
}

    .preview-project:hover {
        color: #fff !important;
    }
.preview-project-subline {
    color: #fff;
    font-size: 12px;
}
.section-heading-modern {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 5px;
}

.section-mini-tag {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #888;
}

.section-title-modern {
    font-size: 30px;
    font-weight: 900;
}

.section-link-btn {
    text-decoration: none;
    color: #111;
    font-weight: 700;
}

.feature-box {
    padding: 25px;
    background: #f7f8fa;
    border-radius: 24px;
}

    .feature-box strong {
        display: block;
        font-size: 24px;
        margin-bottom: 8px;
    }

    .feature-box span {
        color: #777;
    }


.bento-project-section {
    background: #fafafa;
}

.bento-grid-layout {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-auto-rows: 260px;
    gap: 24px;
}

.bento-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
}

    .bento-card img {
        height: 100%;
        object-fit: cover;
        transition: .5s ease;
        width: 100%;
        display: block;
    }

    .bento-card:hover img {
        transform: scale(1.08);
    }

.large-card {
    grid-column: span 2;
    grid-row: span 2;
}

.tall-card {
    grid-row: span 2;
}

.wide-card {
    grid-column: span 2;
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
}

.bento-content {
    position: absolute;
    bottom: 12px;
    left: 30px;
    color: #fff;
}

    .bento-content span {
        display: inline-flex;
        padding: 4px 14px;
        background: rgba(255,255,255,.18);
        border-radius: 100px;
        margin-bottom: 2px;
    }

    .bento-content h3 {
        font-size: 20px;
        font-weight: 800;
        color: #fff;
    }

.investment-section {
    background: #fff;
}

.investment-layout {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 40px;
}

.investment-main-card,
.investment-side-card {
    background: #f7f8fa;
    border-radius: 40px;
    padding: 50px;
}

.investment-badge {
    display: inline-flex;
    padding: 10px 18px;
    background: #fff;
    border-radius: 100px;
    font-weight: 700;
    margin-bottom: 25px;
}

.investment-main-card h2 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
}

.investment-main-card p {
    color: #666;
    line-height: 1.8;
}

.investment-row {
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
    border-bottom: 1px solid #e5e5e5;
}

    .investment-row span {
        font-size: 18px;
        font-weight: 600;
    }

    .investment-row strong {
        font-size: 22px;
        font-weight: 800;
    }

.premium-project-collection {
    padding: 40px 0;
    background: #fff;
}

.premium-section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 18px;
}

.premium-mini-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 10px;
}

.premium-section-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    margin: 0;
}

.premium-view-all {
    text-decoration: none;
    color: #111;
    font-weight: 700;
}

.premium-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.premium-project-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: .4s ease;
    border: 1px solid #d9d9cd;
}

    .premium-project-card:hover {
        transform: translateY(-10px);
    }

.premium-project-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    max-height: 250px;
}

.premium-project-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.premium-project-card:hover .premium-project-image {
    transform: scale(1.08);
}

.premium-project-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
}

.premium-project-content {
    padding: 18px 12px 12px;
}

.premium-project-location {
    color: #777;
    font-size: 14px;
    margin-bottom: 8px;
}

.premium-project-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
}

.premium-project-description {
    color: #a75dcd;
    line-height: 1.8;
    font-size: 12px;
    margin-bottom: 12px;
}

.premium-project-info {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 15px;
}

    .premium-project-info span {
        background: #f5f5f5;
        padding: 10px;
        border-radius: 100px;
        font-size: 12px;
        font-weight: 600;
    }

.premium-project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 12px;
    color: #888;
}

.premium-project-price {
    font-size: 21px;
    font-weight: 800;
    margin: 1px 0 0;
}

.premium-project-btn {
    width: 73px;
    height: 48px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    transition: .3s ease;
}

    .premium-project-btn:hover {
        background: #333;
        color: #fff;
    }

.load-more-wrapper {
    text-align: center;
    margin-top: 35px;
}

.load-more-project-btn {
    border: 1px solid #ddd;
    background: #fff;
    padding: 18px 40px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    transition: .3s ease;
}

    .load-more-project-btn:hover {
        background: #111;
        color: #fff;
        border-color: #111;
    }

@media(max-width:768px) {
    .main-section {
        padding-left: 2px;
        padding-right: 2px;
    }
}

@media(max-width:991px) {

    .premium-project-grid {
        grid-template-columns: 1fr;
    }

    .premium-section-header {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }

    .premium-section-title {
        font-size: 26px;
    }

    .hero-project-preview {
        padding: 12px;
        left: 12px;
        right: 12px;
        bottom: 18px;
        border-radius: 14px;
    }
}

@media(max-width:991px) {

    .project-hero-layout,
    .editorial-layout,
    .investment-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-title,
    .section-title-modern,
    .editorial-content-side h2,
    .investment-main-card h2 {
        font-size: 26px;
        margin-bottom: 13px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .hero-main-image-card img,
    .editorial-image-side img {
        height: auto;
    }

    .hero-stats-grid {
        /*flex-direction: column;*/
        gap: 15px;
        margin-top: 10px;
    }

    .hero-stat-card {
        padding: 10px;
        min-width: 140px;
    }

        .hero-stat-card h3 {
            font-size: 26px;
            margin-bottom: -8px;
        }

    .bento-grid-layout {
        grid-template-columns: 1fr;
    }

    .large-card,
    .wide-card,
    .tall-card {
        grid-column: auto;
        grid-row: auto;
    }

    .section-heading-modern {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }

    .hero-ai-search-box {
        padding: 6px;
    }

    .premium-project-collection {
        padding: 22px 0;
    }
}
