/* ==========================================
   PROJECT KLANG 01
========================================== */

/* ==========================================
   1. HERO + FLOATING PROPERTY CARD
========================================== */

.project-hero{
    position:relative;

background-image:
linear-gradient(
    90deg,
    rgba(8,12,20,.96) 0%,
    rgba(8,12,20,.93) 18%,
    rgba(8,12,20,.84) 36%,
    rgba(8,12,20,.68) 54%,
    rgba(8,12,20,.42) 72%,
    rgba(8,12,20,.14) 88%,
    rgba(8,12,20,0) 100%
);

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    overflow:visible;

    display:flex;
    align-items:center;

    min-height:620px;

    padding:80px 0 0px;
}

.project-overlay{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;

    z-index:2;

    width:100%;
    height:100%;

    overflow:hidden;
}

.project-overlay::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    z-index:1;
    background:
        linear-gradient(
            90deg,
            rgba(5,10,18,.82) 0%,
            rgba(5,10,18,.72) 22%,
            rgba(5,10,18,.52) 42%,
            rgba(5,10,18,.22) 62%,
            rgba(5,10,18,0) 82%
        );
}

.project-overlay .container{
    position:relative;
    z-index:2;
}

.project-overlay .container{

    width:100%;
    max-width:1320px;

    margin:0 auto;

    display:flex;
    align-items:center;

    justify-content:flex-start;
}

.hero-container{
    max-width:1320px;
    min-height:500px;
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:560px;

    width:100%;

    margin-right:auto;

    margin-left:0;

    align-self:center;

    text-align:left;

    padding-left:24px;

    padding-right:24px;

    position:relative;

    top:40px;

    z-index:5;
}

.project-tag{
    display:inline-flex;
    align-items:center;
    padding:10px 22px;
    margin-bottom:26px;
    background:#D4AF37;
    color:#07172d!important;
    border-radius:8px;
    font-size:13px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.project-overlay h1{

    max-width:700px;

    margin-bottom:14px;

    color:#ffffff;

    font-family:"Playfair Display",serif;

    font-size:40px;

    font-weight:700;

    line-height:1.08;

    filter:drop-shadow(0 4px 10px rgba(0,0,0,.95))
           drop-shadow(0 8px 25px rgba(0,0,0,.90))
           drop-shadow(0 15px 40px rgba(0,0,0,.75));
}

.project-overlay p{

    max-width:560px;

    margin-bottom:26px;

    color:#ffffff;

    text-shadow:0 2px 10px rgba(0,0,0,.75);

    font-size:15px;

    line-height:1.85;
}

.gold-divider{
    display:flex;
    align-items:center;
    gap:14px;
    margin:22px 0 30px;
}

.gold-divider span{
    width:75px;
    height:1px;
    background:#D4AF37;
}

.gold-divider i{
    color:#D4AF37;
    font-style:normal;
}

.hero-price{
    display:flex;
    gap:40px;
    margin-bottom:28px;
}

.hero-price-left{
    padding-right:40px;
    border-right:1px solid rgba(212,175,55,.35);
}

.hero-price-left,
.hero-price-right{
    display:flex;
    flex-direction:column;
}

.hero-price span{
    margin-bottom:12px;
    color:#D4AF37;
    font-size:12px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
}

.hero-price-left h4{
    margin:0;
    color:#ffffff;
    text-shadow:
    0 2px 2px rgba(0,0,0,1),
    0 4px 8px rgba(0,0,0,.95),
    0 8px 18px rgba(0,0,0,.80);
    font-family:"Playfair Display",serif;
    font-size:28px;

    font-variant-numeric: lining-nums;
    font-feature-settings: "lnum" 1;
}

.hero-price-right h2{
    margin:0;
    color:#D4AF37;
    text-shadow:
    0 2px 2px rgba(0,0,0,1),
    0 4px 8px rgba(0,0,0,.95),
    0 8px 18px rgba(0,0,0,.80);
    font-family:"Playfair Display",serif;
    font-size:42px;

    font-variant-numeric: lining-nums;
    font-feature-settings: "lnum" 1;
}

.hero-price-right small{
    margin-top:10px;
    color:#ffffff;
    text-shadow:0 2px 8px rgba(0,0,0,.7);
    font-size:15px;
}

.hero-buttons{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:flex-start;
    gap:20px;
    flex-wrap:wrap;
    margin-top:10px;
}

.hero-buttons .primary-btn,
.hero-buttons .secondary-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:200px;
    min-width:200px;
    height:50px;

    border-radius:14px;

    white-space:nowrap;

    font-size:15px;

    font-weight:700;

    transition:.35s;
}
.hero-buttons .primary-btn{
    background:#D4AF37;
    color:#111827;
}

.hero-buttons .secondary-btn{
    background:#D4AF37;
    border:1px solid #D4AF37;
    color:#111827;
}

.hero-buttons .secondary-btn:hover{
    background:#ffffff;
    color:#111827;
}

/* ==========================================
   FLOATING PROPERTY CARD
========================================== */

.property-card-wrapper{
    position:absolute;
    left:0;
    right:0;
    bottom:-115px;
    z-index:20;
}

.property-card-wrapper .container{
    max-width:1320px;
}

.property-card{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 35px 80px rgba(0,0,0,.18);
}

.info-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    min-height:230px;
    padding:40px 20px;
    text-align:center;
    border-right:1px solid #ececec;
    transition:.3s;
}

.info-item:last-child{
    border-right:none;
}

.info-item:hover{
    background:#faf7f0;
}

.info-item img{
    width:70px;
    height:70px;
    margin-bottom:25px;
    object-fit:contain;
}

.info-item strong{
    display:block;
    margin-bottom:12px;
    color:#D4AF37;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.info-item span{
    color:#111827;
    font-size:18px;
    font-weight:700;
    line-height:1.5;
}

/* spacing after floating card */

.project-gallery{
    padding-top:180px;
}

/* ==========================================
   3. PROJECT GALLERY
========================================== */

.project-gallery{
    padding:80px 0;
    background:#f8f5ef;
}

.project-gallery .container{
    max-width:1280px;
    margin:0 auto;
}

.project-gallery .section-title{
    text-align:center;
    margin-bottom:45px;
}

.project-gallery .section-title h2{
    margin-bottom:8px;
    font-family:"Playfair Display",serif;
    font-size:36px;
    font-weight:600;
    color:#111827;
}

.project-gallery .section-title p{
    margin-bottom:18px;
    color:#6b7280;
    font-size:15px;
}

.project-gallery .section-title{
    position:relative;
    text-align:center;
    margin-bottom:70px;
}

.project-gallery .section-title::after{
    content:"";
    display:block;
    width:120px;
    height:1px;
    background:#d4af37;
    margin:32px auto 0;
}

.project-gallery .section-title::before{
    content:"◆";
    position:absolute;
    left:50%;
    bottom:-9px;
    transform:translateX(-50%);
    color:#d4af37;
    background:#f8f5ef;
    padding:0 10px;
    font-size:14px;
    z-index:2;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.gallery-grid img{
    width:100%;
    display:block;
    object-fit:cover;

    border-radius:20px;

    background:#ffffff;

    padding:0;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s ease;
}

.gallery-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    border-radius:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s ease;
}

.gallery-grid img:hover{
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 28px 60px rgba(0,0,0,.18);
}

/* ==========================================
   4. EXCLUSIVE PROMOTION
========================================== */

.promotion-package{
    padding:40px 0 70px;
    background:#ffffff;
}

.promotion-package .section-title h2{
    margin:0 auto;
    width:100%;
    text-align:center;

    color:#111827;
    font-family:"Playfair Display",serif;
    font-size:54px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.promo-card{
    display:grid;
    grid-template-columns:45% 55%;

    background:linear-gradient(135deg,#111827,#182235);

    border-radius:16px;

    overflow:hidden;

    min-height:270px;
    height:auto;

    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.promo-left{
    display:flex;
    flex-direction:column;
    justify-content:center;   /* Added */

    align-items:flex-start;

    padding:28px 40px;

    color:#ffffff;
}

/* Same style as Hero Price */

.promo-left h3{
    margin:0 0 12px;
    color:#D4AF37;
    font-size:12px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
}

.promo-left h4{
    margin:0 0 24px;
    color:#ffffff;
    font-family:"Playfair Display",serif;
    font-size:28px;
    font-weight:700;
    line-height:1;

    font-variant-numeric: lining-nums;
    font-feature-settings:"lnum" 1;
}

.promo-left h2{
    margin:0 0 16px;
    color:#D4AF37;
    font-family:"Playfair Display",serif;
    font-size:42px;
    font-weight:700;
    line-height:1;

    font-variant-numeric: lining-nums;
    font-feature-settings:"lnum" 1;
}

.saving-badge{
    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:max-content;

    padding:8px 14px;

    border-radius:999px;

    background:#D4AF37;

    color:#111827;

    font-size:11px;

    font-weight:800;

    letter-spacing:.5px;

    text-transform:uppercase;
}

.promo-right{
    position:relative;

    display:flex;
    align-items:flex-start;

    padding:28px 40px;

    color:#ffffff;
}

/* Gold divider */
.promo-right::before{
    content:"";

    position:absolute;

    left: 60px;

    top:50%;

    transform:translateY(-50%);

    width:1px;
    height:150px;

    background:#D4AF37;
}

.promo-right ul{
    list-style:none;

    margin:0;
    padding-left:42px;

    width:100%;
}

.promo-right li{
    display:flex;
    align-items:center;

    gap:14px;

    margin-bottom:22px;

    color:#ffffff;

    font-size:16px;

    font-weight:500;
}

.promo-right li:last-child{
    margin-bottom:0;
}

.promo-right li::before{
    content:"✓";

    color:#ffffff;

    font-size:18px;

    font-weight:700;
}

/* ==========================================
   5. PROJECT HIGHLIGHTS
========================================== */

.project-highlights{
    background:#f7f3ec;
    padding:88px 0 88px;
}

.project-highlights .container{
    max-width:1160px;
    margin:0 auto;
}

.highlight-heading{
    text-align:center;
    margin-bottom:48px;
}

.highlight-heading h2{
    margin:0;
    color:#161616;
    font-family:"Playfair Display",serif;
    font-size:42px;
    font-weight:600;
    line-height:1.2;
}

.highlight-heading p{
    margin:10px 0 0;
    color:#757575;
    font-size:16px;
    line-height:1.6;
}

.highlight-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-bottom:34px;
}

.highlight-card{
    background:#ffffff;
    border-radius:18px;
    padding:34px 22px 30px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.3s;
}

.highlight-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.highlight-card img{
    width:54px;
    height:54px;
    display:block;
    margin:0 auto 20px;
    object-fit:contain;
}

.highlight-card h3{
    margin:0 0 8px;
    color:#1c1c1c;
    font-family:"Playfair Display",serif;
    font-size:21px;
    font-weight:600;
    line-height:1.3;
}

.highlight-card span,
.highlight-card p{
    display:block;
    margin:0;
    color:#7b7b7b;
    font-size:15px;
    line-height:1.6;
}

.highlight-cta-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin-top:10px;
}

.highlight-cta{
    background:#162033;
    border-radius:18px;
    padding:42px 44px;
    text-align:center;
    box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.highlight-cta h3{
    margin:0 0 14px;
    color:#ffffff;
    font-family:"Playfair Display",serif;
    font-size:30px;
    font-weight:600;
    line-height:1.3;
}

.highlight-cta p{
    max-width:360px;
    margin:0 auto 28px;
    color:rgba(255,255,255,.72);
    font-size:16px;
    line-height:1.8;
}

.highlight-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:170px;
    height:48px;

    background:#d4af37;
    color:#111827;

    border-radius:6px;

    font-size:14px;
    font-weight:700;

    transition:.3s;
}

.highlight-btn i{
    font-size:18px;
}

.highlight-btn:hover{
    transform:translateY(-2px);
    background:#c9a328;
}

@media (max-width:992px){

    .project-highlights .container{
        max-width:720px;
    }

    .highlight-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .highlight-cta-row{
        grid-template-columns:1fr;
    }

}

@media (max-width:768px){

    .project-highlights{
        padding:70px 0;
    }

    .highlight-heading h2{
        font-size:34px;
    }

    .highlight-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .highlight-card{
        padding:28px 20px;
    }

    .highlight-cta{
        padding:34px 26px;
    }

    .highlight-cta h3{
        font-size:24px;
    }

    .highlight-btn{
        width:100%;
    }

}

/* ==========================================
   7. APPOINTMENT MODAL
========================================== */

.appointment-modal{
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(8px);
    z-index: 99999;
}

.appointment-box{
    width: 100%;
    max-width: 600px;
    padding: 50px;
    position: relative;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.close-modal{
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 34px;
    color: #111827;
    cursor: pointer;
    transition: .3s;
}

.close-modal:hover{
    color: #D4AF37;
}

.appointment-box h2{
    margin-bottom: 15px;
    color: #111827;
    font-size: 38px;
    text-align: center;
}

.appointment-box p{
    margin-bottom: 35px;
    color: #6B7280;
    text-align: center;
    line-height: 1.7;
}

.appointment-box input,
.appointment-box textarea{
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 20px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    background: #f8f8f8;
    color: #111827;
    transition: .3s;
}

.appointment-box textarea{
    min-height: 140px;
    resize: vertical;
}

.appointment-box input:focus,
.appointment-box textarea:focus{
    border-color: #D4AF37;
    background: #ffffff;
}

.appointment-box .primary-btn{
    width: 100%;
    height: 58px;
    border-radius: 999px;
    background: #D4AF37;
    color: #111827;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: .35s;
}

.appointment-box .primary-btn:hover{
    transform: translateY(-3px);
}

.appointment-eyebrow{display:block;margin-bottom:8px;color:#a57b20;font-size:11px;font-weight:800;letter-spacing:.16em;text-align:center}
.appointment-fields{display:grid;grid-template-columns:1fr 1fr;gap:16px 18px;margin-bottom:20px}
.appointment-fields label{display:block;color:#1f2937;font-size:13px;font-weight:700;text-align:left}
.appointment-fields label>span{color:#b42318}
.appointment-fields label>small{color:#6b7280;font-weight:500}
.appointment-fields .appointment-wide{grid-column:1/-1}
.appointment-box .appointment-fields input,.appointment-box .appointment-fields select,.appointment-box .appointment-fields textarea{width:100%;min-height:48px;margin:7px 0 0;padding:12px 14px;border:1px solid #d7dce3;border-radius:8px;background:#fff;color:#111827;font-family:inherit;font-size:15px;font-weight:500;line-height:1.4}
.appointment-box .appointment-fields textarea{min-height:92px;resize:vertical}
.appointment-box .appointment-fields input:focus,.appointment-box .appointment-fields select:focus,.appointment-box .appointment-fields textarea:focus{border-color:#d4af37;outline:0;box-shadow:0 0 0 3px rgba(212,175,55,.14)}

@media(max-width:640px){.appointment-modal{padding:10px}.appointment-box{max-height:calc(100dvh - 20px);overflow:auto;padding:28px 20px 22px;border-radius:14px}.appointment-box h2{font-size:27px;margin-bottom:8px}.appointment-box p{margin-bottom:22px;font-size:13px}.appointment-fields{grid-template-columns:1fr;gap:13px}.appointment-fields .appointment-wide{grid-column:auto}.close-modal{top:12px;right:16px}.appointment-box .primary-btn{height:50px;border-radius:8px}}

/* ==========================================
   8. TABLET RESPONSIVE
========================================== */

@media (max-width: 992px){

    .project-overlay{
        padding: 140px 0 90px;
    }

    .project-overlay h1{
        font-size: 58px;
    }

    .project-overlay p{
        font-size: 20px;
    }

    .hero-price{
        flex-direction: column;
        gap: 35px;
    }

    .hero-price-left{
        padding-right: 0;
        border-right: none;
    }

    .hero-price-left h4{
        font-size: 44px;
    }

    .hero-price-right h2{
        font-size: 58px;
    }

.hero-buttons{
    flex-direction:column;
    align-items:flex-start;
}

    .quick-info .container{
        grid-template-columns: repeat(3,1fr);
    }

    .gallery-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .promo-card{
        grid-template-columns: 1fr;
    }

    .promo-left,
    .promo-right{
        padding: 50px;
    }

    .highlight-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .loan-card,
    .whatsapp-card{
        padding: 60px 40px;
    }

}

/* ==========================================
   9. MOBILE RESPONSIVE
========================================== */

@media (max-width: 768px){

    .project-overlay{
        padding: 120px 0 70px;
    }

    .project-overlay h1{
        font-size: 42px;
    }

    .project-overlay p{
        font-size: 17px;
    }

    .project-tag{
        font-size: 12px;
        padding: 10px 18px;
    }

    .gold-divider span{
        width: 60px;
    }

    .hero-price-left h4{
        font-size: 34px;
    }

    .hero-price-right h2{
        font-size: 44px;
    }

    .hero-price span{
        font-size: 14px;
    }

    .hero-price-right small{
        font-size: 16px;
    }

    .hero-buttons{
        width: 100%;
    }

    .hero-buttons .primary-btn,
    .hero-buttons .secondary-btn{
        width: 100%;
        min-width: 100%;
    }

    .quick-info .container{
        grid-template-columns: repeat(2,1fr);
    }

    .info-item{
        padding: 28px 18px;
    }

    .info-item span{
        font-size: 17px;
    }

    .project-gallery,
    .promotion-package,
    .project-highlights,
    .loan-cta,
    .whatsapp-cta{
        padding: 80px 0;
    }

    .gallery-grid{
        grid-template-columns: 1fr;
    }

    .gallery-grid img{
        height: 300px;
    }

    .promo-left,
    .promo-right{
        padding: 35px 30px;
    }

    .promo-left h2{
        font-size: 48px;
    }

    .promo-left h4{
        font-size: 34px;
    }

    .promo-right li{
        font-size: 18px;
    }

    .highlight-grid{
        grid-template-columns: 1fr;
    }

    .loan-card,
    .whatsapp-card{
        padding: 45px 25px;
    }

    .loan-card h2,
    .whatsapp-card h2{
        font-size: 34px;
    }

    .loan-card p,
    .whatsapp-card p{
        font-size: 17px;
    }

    .appointment-box{
        padding: 40px 25px;
    }

    .appointment-box h2{
        font-size: 30px;
    }

}

/* ==========================================
   10. MOBILE RESPONSIVE
========================================== */

/* ==========================================
   EXTRA RESPONSIVE IMPROVEMENTS
========================================== */

@media (max-width:1200px){

    .project-hero{
        padding:140px 0 230px;
    }

    .hero-content{
        width:100%;
        max-width:600px;
    }

    .property-card{
        grid-template-columns:repeat(3,1fr);
    }

    .info-item{
        min-height:180px;
    }

}

@media (max-width:992px){

    .project-hero{
        padding:140px 0 200px;
    }

    .project-overlay h1{
        font-size:50px;
    }

    .property-card{
        grid-template-columns:repeat(2,1fr);
    }

    .project-gallery{
        padding-top:140px;
    }

}

@media (max-width:768px){

    .project-hero{
        padding:130px 0 180px;
    }

    .hero-content{
        width:100%;
    }

    .project-overlay h1{
        font-size:40px;
        line-height:1.2;
    }

    .project-overlay p{
        max-width:100%;
    }

    .property-card{
        grid-template-columns:1fr;
    }

    .property-card-wrapper{
        position:absolute;
        left:0;
        right:0;
        bottom:-120px;
        margin-top:0;
    }

    .project-gallery{
        padding-top:180px;
    }

    .promo-right::before{
        display:none;
    }

    .promo-right ul{
        padding-left:0;
    }

}

@media (max-width:480px){

    .project-hero{
        padding:120px 0 150px;
    }

    .project-tag{
        font-size:11px;
    }

    .project-overlay h1{
        font-size:34px;
    }

    .hero-price-right h2{
        font-size:36px;
    }

    .hero-price-left h4{
        font-size:28px;
    }

    .gallery-grid img{
        height:220px;
    }

    .promo-left h2{
        font-size:38px;
    }

    .promo-left h4{
        font-size:28px;
    }

    .promo-right li{
        font-size:16px;
    }

}

/* ==========================================
   HERO RESPONSIVE POLISH
========================================== */

@media (max-width:992px){

    .hero-content{
        max-width:100%;
    }

    .hero-price{
        gap:28px;
    }

    .hero-buttons{
        gap:14px;
    }

}

@media (max-width:768px){

    .project-hero{
        min-height:760px;
        padding:120px 0 80px;
        background-size:cover;
        background-position:center top;
    }

    .project-overlay{
        position:relative;
        height:100%;
        align-items:flex-end;
    }

    .hero-container{
        min-height:640px;
        align-items:flex-end;
    }

    .hero-content{
        width:100%;
        max-width:100%;
        top:0;
        padding:0 20px 20px;
        text-align:left;
    }

    .project-overlay h1{
        font-size:34px;
        line-height:1.2;
        max-width:100%;
    }

    .project-overlay p{
        font-size:16px;
        line-height:1.7;
        max-width:100%;
    }

    .hero-price{
        flex-direction:column;
        gap:18px;
        margin-bottom:24px;
    }

    .hero-price-left{
        border-right:none;
        padding-right:0;
    }

    .hero-buttons{
        flex-direction:column;
        gap:12px;
    }

    .hero-buttons .primary-btn,
    .hero-buttons .secondary-btn{
        width:100%;
        min-width:100%;
        height:54px;
        font-size:16px;
    }

}

/* ==========================================
   PROPERTY CARD RESPONSIVE POLISH
========================================== */

@media (max-width:992px){

    .property-card{
        grid-template-columns:repeat(2,1fr);
        border-radius:18px;
    }

    .info-item{
        min-height:170px;
        padding:28px 18px;
    }

    .info-item img{
        width:58px;
        height:58px;
        margin-bottom:18px;
    }

    .info-item strong{
        font-size:11px;
        margin-bottom:10px;
    }

    .info-item span{
        font-size:17px;
        line-height:1.5;
    }

}

@media (max-width:768px){

    .property-card-wrapper{
    position:relative;
    margin-top:60px;
}

    .property-card{
        grid-template-columns:repeat(2,1fr);
    }

    .info-item{
        min-height:150px;
        padding:22px 14px;
    }

    .info-item img{
        width:50px;
        height:50px;
        margin-bottom:14px;
    }

    .info-item strong{
        font-size:10px;
        letter-spacing:1px;
    }

    .info-item span{
        font-size:15px;
    }

}

@media (max-width:480px){

    .property-card{
        grid-template-columns:1fr;
    }

    .info-item{
        min-height:135px;
    }

}

/* ==========================================
   GALLERY RESPONSIVE POLISH
========================================== */

@media (max-width:992px){

    .project-gallery{
        padding:110px 0 90px;
    }

    .project-gallery .section-title{
        margin-bottom:50px;
    }

    .gallery-grid{
        gap:18px;
    }

    .gallery-grid img{
        height:280px;
    }

}

@media (max-width:768px){

    .project-gallery{
        padding:70px 0;
    }

    .project-gallery .section-title h2{
        font-size:36px;
    }

    .project-gallery .section-title p{
        font-size:16px;
        line-height:1.8;
        max-width:340px;
        margin:0 auto 24px;
    }

    .gallery-grid{
        gap:16px;
    }

    .gallery-grid img{
        height:240px;
        border-radius:16px;
    }

}

@media (max-width:480px){

    .project-gallery .section-title h2{
        font-size:30px;
    }

    .gallery-grid img{
        height:210px;
    }

}

/* ==========================================
   PROMOTION RESPONSIVE POLISH
========================================== */

@media (max-width:992px){

    .promotion-package{
        padding:80px 0;
    }

    .promo-card{
    grid-template-columns:45% 55%;
    align-items:center;
}

    .promo-left{
    padding:24px 20px;
}

    .promo-right{
    padding:24px 20px;
}

    .promo-right::before{
    display:block;
    height:120px;
}

.promo-right ul{
    padding-left:24px;
}

    .promo-left h2{
        font-size:48px;
    }

    .promo-left h4{
        font-size:32px;
    }

    .promo-right li{
        font-size:18px;
    }

}

@media (max-width:768px){

    .promotion-package{
        padding:70px 0;
    }

    .promotion-package .section-title{
        margin-bottom:40px;
    }

    .promotion-package .section-title h2{
        font-size:34px;
    }

    .promo-left,
    .promo-right{
        padding:30px 24px;
    }
    
    .promo-card{
    grid-template-columns:1fr;
}

.promo-right{
    border-top:1px solid rgba(212,175,55,.25);
}

.promo-right::before{
    display:none;
}

.promo-right ul{
    padding-left:0;
}

    .promo-left h2{
    font-size:34px;
    line-height:1;
}

.promo-left h4{
    font-size:24px;
    line-height:1;
}

.promo-left h3{
    font-size:11px;
    letter-spacing:.8px;
}

.promo-right li{
    font-size:14px;
    margin-bottom:14px;
}

.saving-badge{
    font-size:11px;
    padding:7px 14px;
}

}

    @media (max-width:480px){

    .promotion-package .section-title h2{
        font-size:30px;
    }

    .promo-left h3{
        font-size:10px;
        letter-spacing:.8px;
    }

    .promo-left h2{
        font-size:30px;
    }

    .promo-left h4{
        font-size:21px;
    }

    .promo-right li{
        font-size:13px;
        margin-bottom:12px;
    }

    .saving-badge{
        font-size:10px;
        padding:6px 12px;
    }
    }
    
    /* ==========================================
   PROJECT OVERVIEW
========================================== */

.project-overview{
    padding:50px 0 40px;
    background:#f7f3ec;
}

.project-overview .container{
    max-width:1500px;
}

.overview-card{

    background:#ffffff;

    border-radius:28px;

    padding:45px 55px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.overview-header{
    text-align:center;
    margin-bottom:55px;
}

.overview-header h2{

    margin:0;

    color:#111827;

    font-family:"Playfair Display",serif;

    font-size:54px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.overview-divider{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:14px;

    margin:24px 0;

}

.overview-divider span{

    width:42px;

    height:3px;

    background:#D4AF37;

}

.overview-divider i{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#D4AF37;

}

.overview-header p{

    margin:0;

    color:#5f6672;

    font-size:16px;

}

.overview-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

}

.overview-left{

    padding-right:40px;

    border-right:1px solid #e4e4e4;

    display:flex;
    flex-direction:column;

}

.overview-right{

    padding-left:40px;

    display:flex;
    flex-direction:column;

}

.overview-left h3,
.overview-right h3{

    margin:0;

    color:#c4932d;

    font-size:24px;

    font-weight:700;

    text-transform:uppercase;

}

.overview-title-line{

    width:54px;

    height:3px;

    background:#c4932d;

    margin:18px 0 34px;

    flex:0 0 auto;

}

.overview-table{

    display:flex;

    flex-direction:column;

}

.overview-row{

    display:grid;

    grid-template-columns:220px 30px 1fr;

    align-items:center;

    min-height:48px;

    border-bottom:1px solid #ececec;

}

.overview-row strong{

    color:#111827;

    font-size:16px;

    font-weight:700;

}

.overview-row span{

    text-align:center;

    color:#111827;

    font-size:22px;

}

.overview-row p{

    margin:0;

    color:#2b3342;

    font-size:16px;

}

.overview-highlights{

    list-style:none;

    margin:0;

    padding:0;

}

.overview-highlights li{

    display:flex;

    align-items:center;

    min-height:48px;

    border-bottom:1px solid #ececec;

    color:#111827;

    font-size:16px;

    font-weight:600;

}

@media (max-width:991px){

.overview-card{

    padding:45px 35px;

}

.overview-header h2{

    font-size:48px;

}

.overview-header p{

    font-size:18px;

}

.overview-grid{

    grid-template-columns:1fr;

    gap:45px;

}

.overview-left{

    border-right:none;

    padding-right:0;

}

.overview-right{

    padding-left:0;

}

.overview-row{

    grid-template-columns:180px 30px 1fr;

}

.overview-row strong{

    font-size:17px;

}

.overview-row p{

    font-size:17px;

}

.overview-highlights li{

    font-size:18px;

}

}

@media (max-width:768px){

.project-overview{

    margin-top:0;
    padding:110px 0 70px;
    position:relative;
    z-index:5;

}

.overview-card{

    border-radius:22px;

    padding:35px 24px;

}

.overview-header h2{

    font-size:36px;

}

.overview-header p{

    font-size:16px;

}

.overview-row{

    grid-template-columns:1fr;

    gap:8px;

    padding:18px 0;

}

.overview-row span{

    display:none;

}

.overview-row strong{

    font-size:16px;

}

.overview-row p{

    font-size:16px;

}

.overview-highlights li{

    min-height:auto;

    padding:18px 0;

    font-size:16px;

}

}
