/* =====================================================
   MUDRAA REAL ESTATE
   PROJECT.CSS - COMPLETE
===================================================== */


/* =====================================================
   PROJECT HERO
===================================================== */

.project-hero {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    background: #24180f;
}

.project-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20,13,8,0.85) 0%,
            rgba(20,13,8,0.60) 35%,
            rgba(20,13,8,0.22) 70%,
            rgba(20,13,8,0.04) 100%
        );

    z-index: 1;
}

.project-hero-overlay {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 40px));
    height: 100%;
    margin: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    color: #fff;
}

.project-hero-overlay > span {
    margin-bottom: 15px;

    color: #f4c51b;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.project-hero-overlay h1 {
    margin: 0 0 12px;

    color: #fff;

    font-size: clamp(45px, 6vw, 75px);
    font-weight: 500;

    line-height: 1.05;
    letter-spacing: -2px;
}

.project-hero-overlay p {
    margin: 0;

    color: rgba(255,255,255,0.85);

    font-size: 15px;
}


/* =====================================================
   PROJECT INTRO
===================================================== */

.project-intro {
    padding: 75px 0 65px;
    background: #fff;
}

.project-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.project-label {
    display: inline-block;

    color: #159bc5;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2.2px;
}

.project-top h2 {
    margin-top: 9px;

    color: #352317;

    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;

    line-height: 1.15;
    letter-spacing: -1px;
}

.project-description {
    max-width: 820px;

    margin-top: 25px;

    color: #756f68;

    font-size: 14px;

    line-height: 1.9;
}


/* =====================================================
   GOLD BUTTON
===================================================== */

.project-gold-btn {
    min-height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 24px;

    border: 1px solid #f4c51b;
    border-radius: 4px;

    background: #f4c51b;

    color: #352317;

    font-size: 11px;
    font-weight: 700;

    white-space: nowrap;

    text-decoration: none;

    transition: all 0.3s ease;
}

.project-gold-btn:hover {
    background: #159bc5;

    border-color: #159bc5;

    color: #fff;

    transform: translateY(-2px);
}


/* =====================================================
   PROJECT INFORMATION
===================================================== */

.project-information {
    background: #f8f5ef;

    border-top: 1px solid #e2ddd5;
    border-bottom: 1px solid #e2ddd5;
}

.information-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.information-grid > div {
    min-height: 110px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 20px 25px;

    border-right: 1px solid #ddd7ce;
}

.information-grid > div:first-child {
    border-left: 1px solid #ddd7ce;
}

.information-grid span {
    margin-bottom: 7px;

    color: #159bc5;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.information-grid strong {
    color: #352317;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.4;
}


/* =====================================================
   LOCATION ADVANTAGES
===================================================== */

.location-advantages {
    padding: 110px 0;

    background: #f8f5ef;
}

.advantages-header {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    align-items: end;

    gap: 80px;

    margin-bottom: 60px;
}

.advantages-header h2 {
    margin-top: 12px;

    color: #352317;

    font-size: clamp(38px, 4vw, 56px);

    font-weight: 400;

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.advantages-header h2 b {
    color: #159bc5;

    font-weight: 600;
}

.advantages-header > p {
    max-width: 420px;

    margin: 0;

    color: #756f68;

    font-size: 13px;

    line-height: 1.9;
}


/* =====================================================
   ADVANTAGES LIST
===================================================== */

.advantages-list {
    border-top: 1px solid #dcd5ca;
}

.advantage-item {
    display: grid;

    grid-template-columns: 90px 1fr 120px;

    align-items: center;

    gap: 35px;

    min-height: 155px;

    padding: 25px 20px;

    border-bottom: 1px solid #dcd5ca;

    transition:
        background 0.3s ease,
        padding 0.3s ease;
}

.advantage-item:hover {
    background: #fff;

    padding-left: 30px;
}


/* NUMBER */

.advantage-no {
    color: #d4a900;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* CONTENT */

.advantage-content span {
    display: block;

    margin-bottom: 6px;

    color: #159bc5;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.advantage-content h3 {
    margin: 0 0 7px;

    color: #352317;

    font-size: 19px;
    font-weight: 600;

    line-height: 1.4;
}

.advantage-content p {
    max-width: 680px;

    margin: 0;

    color: #756f68;

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   DISTANCE
===================================================== */

.advantage-distance {
    text-align: center;

    border-left: 1px solid #e1dbd1;

    padding-left: 20px;
}

.advantage-distance strong {
    display: block;

    color: #6b4a2f;

    font-size: 42px;
    font-weight: 600;

    line-height: 1;
}

.advantage-distance small {
    display: block;

    margin-top: 7px;

    color: #159bc5;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* =====================================================
   ARROW
===================================================== */

.advantage-arrow {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    justify-self: end;

    border: 1px solid #d9d1c5;
    border-radius: 50%;

    color: #6b4a2f;

    font-size: 17px;

    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-arrow {
    background: #f4c51b;

    border-color: #f4c51b;

    transform: rotate(-45deg);
}


/* =====================================================
   FEATURED SAMPLE FLAT
===================================================== */

.advantage-item.featured {
    background:
        linear-gradient(
            100deg,
            #352317,
            #6b4a2f
        );

    border-bottom-color:
        rgba(255,255,255,0.12);
}

.advantage-item.featured .advantage-no {
    color: #f4c51b;
}

.advantage-item.featured .advantage-content span {
    color: #f4c51b;
}

.advantage-item.featured .advantage-content h3 {
    color: #fff;
}

.advantage-item.featured .advantage-content p {
    color: rgba(255,255,255,0.72);
}


/* READY BADGE */

.advantage-badge {
    justify-self: end;

    padding: 8px 15px;

    border: 1px solid #f4c51b;
    border-radius: 30px;

    color: #f4c51b;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


/* VISIT LINK */

.visit-link {
    display: inline-block;

    margin-top: 12px;

    color: #f4c51b;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;
}

.visit-link:hover {
    color: #fff;
}


/* =====================================================
   PROJECT GALLERY
===================================================== */

.project-gallery-section {
    padding: 110px 0;

    background: #fff;
}

.gallery-heading {
    margin-bottom: 45px;
}

.gallery-heading h2 {
    margin-top: 10px;

    color: #352317;

    font-size: clamp(36px, 4vw, 52px);

    font-weight: 400;

    line-height: 1.15;
}

.gallery-heading h2 b {
    color: #159bc5;

    font-weight: 600;
}


/* GALLERY */

.project-gallery {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.project-gallery img {
    width: 100%;
    height: 300px;

    display: block;

    object-fit: cover;

    border-radius: 6px;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.project-gallery img:hover {
    transform: scale(1.02);

    box-shadow:
        0 15px 35px
        rgba(53,35,23,0.15);
}


/* =====================================================
   FEATURES
===================================================== */

.features {
    padding: 110px 0;

    background: #f8f5ef;
}

.features-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.features-grid > div {
    padding: 30px 25px;

    background: #fff;

    border: 1px solid #e3ddd4;

    border-radius: 6px;

    transition: all 0.3s ease;
}

.features-grid > div:hover {
    transform: translateY(-5px);

    border-color: #f4c51b;

    box-shadow:
        0 15px 35px
        rgba(53,35,23,0.08);
}

.feature-number {
    margin-bottom: 25px;

    color: #d4a900;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.features-grid h3 {
    margin: 0 0 10px;

    color: #352317;

    font-size: 17px;
    font-weight: 600;
}

.features-grid p {
    margin: 0;

    color: #756f68;

    font-size: 12px;

    line-height: 1.8;
}


/* =====================================================
   PROJECT CTA
===================================================== */

.project-cta {
    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #352317,
            #6b4a2f
        );

    text-align: center;

    color: #fff;
}

.project-cta > .wrap > span {
    color: #f4c51b;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.project-cta h2 {
    max-width: 800px;

    margin: 15px auto;

    color: #fff;

    font-size: clamp(38px, 5vw, 60px);

    font-weight: 400;

    line-height: 1.1;
}

.project-cta h2 b {
    color: #f4c51b;

    font-weight: 600;
}

.project-cta p {
    margin: 0 0 30px;

    color: rgba(255,255,255,0.72);

    font-size: 13px;
}

.cta-buttons {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 12px;
}


/* =====================================================
   WHITE BUTTON
===================================================== */

.project-white-btn {
    min-height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 24px;

    border:
        1px solid
        rgba(255,255,255,0.55);

    border-radius: 4px;

    background:
        rgba(255,255,255,0.05);

    color: #fff;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.project-white-btn:hover {
    background: #fff;

    border-color: #fff;

    color: #352317;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: #24180f;

    color: #fff;

    border-top:
        1px solid
        rgba(255,255,255,0.08);
}


/* FOOTER GRID */

.site-footer .footer-grid {
    display: grid;

    grid-template-columns:
        1.3fr
        1fr
        1fr
        1fr
        1.5fr;

    gap: 45px;

    padding: 65px 0;
}


/* =====================================================
   FOOTER BRAND
===================================================== */

.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    width: 155px;
    height: auto;
    display: block;
    background: transparent;
    mix-blend-mode: normal;
}

.footer-brand p {
    margin: 12px 0 0;

    color:
        rgba(255,255,255,0.60);

    font-size: 12px;
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column h4 {
    margin: 0 0 18px;

    color: #f4c51b;

    font-size: 14px;

    font-weight: 600;
}

.footer-column a {
    display: block;

    margin-bottom: 11px;

    color:
        rgba(255,255,255,0.68);

    font-size: 12px;

    text-decoration: none;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.footer-column a:hover {
    color: #f4c51b;

    padding-left: 4px;
}


/* =====================================================
   ADDRESS
===================================================== */

.footer-address p {
    max-width: 280px;

    margin: 0;

    color:
        rgba(255,255,255,0.68);

    font-size: 12px;

    line-height: 1.8;
}


/* =====================================================
   COPYRIGHT
===================================================== */

.site-footer .copyright {
    padding: 20px;

    border-top:
        1px solid
        rgba(255,255,255,0.10);

    color:
        rgba(255,255,255,0.40);

    font-size: 10px;

    text-align: center;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .advantages-header {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .features-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .information-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .project-gallery {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .site-footer .footer-grid {
        grid-template-columns:
            repeat(3, 1fr);

        gap: 40px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .project-hero {
        height: 500px;
    }


    .project-hero-overlay {
        width:
            calc(100% - 30px);
    }


    .project-hero-overlay h1 {
        font-size: 43px;

        letter-spacing: -1px;
    }


    .project-top {
        flex-direction: column;

        align-items: flex-start;
    }


    .project-top h2 {
        font-size: 37px;
    }


    .project-top .project-gold-btn {
        width: 100%;
    }


    /* INFORMATION */

    .information-grid {
        grid-template-columns: 1fr;
    }


    .information-grid > div {
        border-left:
            1px solid #ddd7ce;
    }


    /* ADVANTAGES */

    .location-advantages {
        padding: 75px 0;
    }


    .advantages-header {
        margin-bottom: 40px;
    }


    .advantages-header h2 {
        font-size: 36px;
    }


    .advantage-item {
        grid-template-columns:
            45px 1fr;

        gap: 15px;

        min-height: auto;

        padding: 25px 10px;
    }


    .advantage-item:hover {
        padding-left: 15px;
    }


    .advantage-content h3 {
        font-size: 16px;
    }


    .advantage-content p {
        font-size: 11px;
    }


    .advantage-distance,
    .advantage-arrow,
    .advantage-badge {
        display: none;
    }


    /* GALLERY */

    .project-gallery-section {
        padding: 75px 0;
    }


    .project-gallery {
        grid-template-columns: 1fr;
    }


    .project-gallery img {
        height: 250px;
    }


    /* FEATURES */

    .features {
        padding: 75px 0;
    }


    .features-grid {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .project-cta {
        padding: 75px 0;
    }


    .cta-buttons {
        flex-direction: column;
    }


    .cta-buttons a {
        width: 100%;
    }


    /* FOOTER */

    .site-footer .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 50px 0;
    }


    .footer-brand {
        padding-right: 0;
    }


    .footer-logo {
        width: 145px;
    }


    .footer-address p {
        max-width: 100%;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .project-hero {
        height: 470px;
    }


    .project-hero-overlay h1 {
        font-size: 37px;
    }


    .project-top h2 {
        font-size: 32px;
    }


    .advantages-header h2 {
        font-size: 32px;
    }


    .gallery-heading h2 {
        font-size: 34px;
    }

}