/*==================================================
        GLOBAL SETTINGS
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#081B33;
    color:#fff;
    overflow-x:hidden;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

section{
    width:100%;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#061427;
}

::-webkit-scrollbar-thumb{
    background:#d4af37;
    border-radius:30px;
}

/*==================================================
                NAVIGATION
==================================================*/

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 7%;
    background:rgba(6,20,39,.92);
    backdrop-filter:blur(14px);
    z-index:1000;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
    animation:slideDown .8s ease;
}

.logo h2{
    color:#d4af37;
    font-size:22px;
    font-weight:700;
    letter-spacing:1px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:28px;
}

nav ul li a{
    text-decoration:none;
    color:#fff;
    font-size:14px;
    transition:.3s;
    position:relative;
}

nav ul li a::after{
    content:"";
    position:absolute;
    width:0;
    left:0;
    bottom:-5px;
    height:2px;
    background:#d4af37;
    transition:.3s;
}

nav ul li a:hover{
    color:#d4af37;
}

nav ul li a:hover::after{
    width:100%;
}

/*==================================================
                    HERO
==================================================*/

.hero{
 
    min-height:auto;
    padding:100px 20px 50px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(rgba(5,18,36,.82),
    rgba(5,18,36,.90)),
    url(images/hero.jpg);

    background-size:cover;
    background-position:center;
}

.hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:#d4af3720;
    filter:blur(120px);
    animation:float 8s infinite alternate;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(transparent,#081B33);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:650px;
    padding:20px;
    animation:fadeUp .9s ease;
}

.hero span{
    color:#d4af37;
    font-size:15px;
    letter-spacing:2px;
}

.hero h1{
    font-size:40px;
    line-height:1.1;
    margin:12px 0;
    font-weight:700;
    margin-top: 40px;
}

.hero p{
    max-width:520px;
    margin:auto;
    font-size:16px;
    color:#d7d7d7;
}

.hero-btn{
    display:inline-block;
    margin-top:22px;
    padding:10px 22px;
    background:#d4af37;
    color:#081B33;
    text-decoration:none;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    transition:.35s;
    box-shadow:0 10px 25px rgba(212,175,55,.3);
}

.hero-btn:hover{
    transform:translateY(-4px);
    background:#fff;
}



/*==================================================
            INTRO SECTION
==================================================*/

.intro{
    padding:45px 6% 25px;
    text-align:center;

       margin-top:50px;
    padding-top:0;
    color: whitesmoke;
}

.intro h2{
    font-size:30px;
    color:#ffffff;
    margin-bottom:12px;
    font-weight:700;
}

.intro p{
    max-width:700px;
    margin:auto;
    font-size:15px;
    color:#d5d5d5;
    line-height:1.7;
}

/*==================================================
            PROPERTY SECTION
==================================================*/

#properties{
    width:88%;
    margin:0 auto 60px;
    display:flex;
    flex-direction:column;
    gap:35px;
}

.property-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#0d2443;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
    transition:.35s;
    animation:zoomIn .8s ease;
}

.property-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.35);
}

/*==================================================
                PROPERTY IMAGE
==================================================*/

.property-image{
    overflow:hidden;
}

.property-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.property-card:hover .property-image img{
    transform:scale(1.05);
}

/*==================================================
            PROPERTY CONTENT
==================================================*/

.property-content{
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.property-content h2{
    font-size:28px;
    color:#d4af37;
    margin-bottom:8px;
}

.location{
    display:inline-block;
    margin-bottom:15px;
    color:#9dbfe0;
    font-size:14px;
}

.property-content p{
    text-align: justify;
    line-height: 1.5;
    color: #f2efef;
    margin-bottom: 15px;
    text-justify: inter-word;
    font-size: 14px;
}

@media (max-width: 768px){
    .property-content p{
        text-align: justify;
        text-align-last: left;
    }
}





/*==================================================
                FEATURES
==================================================*/

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-bottom:22px;
}

.features div{
    background:#174b85;
    padding:6px 12px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.05);
    transition:.3s;
    font-size:12px;
}

.features div:hover{
    background:#173d68;
    transform:translateY(-3px);
}

.features i{
    color:#d4af37;
    margin-right:8px;
}

/*==================================================
                BUTTON
==================================================*/

.view-btn{
    display:inline-block;
    width:210px;
    text-align:center;
    text-decoration:none;
    background:#d4af37;
    color:#081B33;
    padding:12px 20px;
    border-radius:35px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 8px 20px rgba(212,175,55,.28);
}

.view-btn:hover{
    background:#fff;
    transform:translateY(-4px);
}



/*==================================================
        WHY INVEST / PLOT SIZES / LANDMARKS
==================================================*/

.why{
    padding:50px 6%;
    background:#0B2342;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

/*==================================================
                GENERAL CARD
==================================================*/

.why-grid div,
.plot-card,
.landmark-card{

    background:#102D52;
    border-radius:15px;
    padding:18px;
    text-align:center;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

.why-grid div:hover,
.plot-card:hover,
.landmark-card:hover{

    transform:translateY(-6px);

    background:#173A67;

    box-shadow:0 18px 35px rgba(0,0,0,.28);

}

/*==================================================
            PROTOTYPE IMAGES
==================================================*/

.plot-card img{

    width:95px;

    height:70px;

    object-fit:cover;

    margin:0 auto 12px;

    border-radius:8px;

    border:2px solid #d4af37;

}

/*==================================================
            LANDMARK IMAGES
==================================================*/

.landmark-card img{

    width:95px;

    height:70px;

    object-fit:cover;

    margin:0 auto 12px;

    border-radius:8px;

    border:2px solid #d4af37;

}

/*==================================================
            PLOT HEADINGS
==================================================*/

.plot-card h3{

    font-size:17px;

    margin-bottom:6px;

    color:#fff;

}

.plot-card h2{

    font-size:22px;

    color:#d4af37;

    margin-bottom:8px;

    font-weight:700;

}

.plot-card p{

    font-size:13px;

    line-height:1.6;

    color:#d7d7d7;

}

/*==================================================
            LANDMARK TEXT
==================================================*/

.landmark-card h3{

    font-size:17px;

    margin-bottom:8px;

    color:#fff;

}

.landmark-card p{

    font-size:13px;

    color:#d5d5d5;

    line-height:1.6;

}

/*==================================================
            WHY SECTION TEXT
==================================================*/

.why h2{

    font-size:28px;

    color:#d4af37;

    margin-bottom:25px;

}

.why-grid h3{

    font-size:17px;

    margin-bottom:8px;

}

.why-grid p{

    font-size:14px;

    line-height:1.6;

    color:#d5d5d5;

}

/*==================================================
                VIDEO SECTION
==================================================*/

.video-section{
    width:90%;
    max-width:800px;
    margin:20px auto 60px;
    display:flex;
    justify-content:center;
}

.video-container{
    width:100%;
    border-radius:16px;
    overflow:hidden;
    background:#000;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.video-container video{
    display:block;
    width:100%;
    height:auto;
    max-height:450px;
    object-fit:cover;
}

@media (max-width:768px){

    .video-section{
        width:95%;
        margin:15px auto 40px;
    }

    .video-container video{
        max-height:280px;
    }

}

@media (max-width:480px){

    .video-container video{
        max-height:220px;
    }

}

/*==================================================
                GOOGLE MAP
==================================================*/

iframe{

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}




/*==================================================
                CALL TO ACTION
==================================================*/

.cta{

    padding:60px 6%;

    text-align:center;

    background:linear-gradient(135deg,#081B33,#102D52);

}

.cta h2{

    font-size:25px;

    color:#d4af37;

    margin-bottom:12px;

}

.cta p{

    max-width:650px;

    margin:0 auto 25px;

    font-size:15px;

    line-height:1.7;

    color:#d5d5d5;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}

.cta-buttons a{

    text-decoration:none;

    padding:12px 26px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.cta-buttons a:first-child{

    background:#c8ffc6;

    color:#081B33;

    box-shadow:0 8px 20px rgba(212,175,55,.25);

}

.cta-buttons a:last-child{

    border:2px solid #d4af37;

    color:#d4af37;

}

.cta-buttons a:hover{

    transform:translateY(-4px);

}

.cta-buttons a:first-child:hover{

    background:#fff;

}

.cta-buttons a:last-child:hover{

    background:#d4af37;

    color:#081B33;

}




/*==========================================
        REALTOR PROFILE
==========================================*/

.realtor-profile{
   margin-bottom:0;
    padding-bottom:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    animation:fadeUp 1s ease;
}

.profile-slider{
    position:relative;
    width:min(90vw, 420px);
    height:280px;
    overflow-x:auto;
    overflow-y:hidden;
    display:flex;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    padding:5px;
    border-radius:18px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(12px);
    box-shadow:0 12px 25px rgba(0,0,0,.35);
}

.profile-track img{
    width:calc(min(90vw, 420px) - 10px);
    height:270px;
    object-fit:cover;
    border-radius:14px;
    flex-shrink:0;
    scroll-snap-align:center;
}

.profile-slider::-webkit-scrollbar{
    display:none;
}

.profile-slider::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:20px;
    background:linear-gradient(
        135deg,
        #6b5513 0%,
        #d4af37 20%,
        #fff6a5 35%,
        #d4af37 50%,
        #6b5513 70%,
        #d4af37 100%
    );
    background-size:300% 300%;
    z-index:-1;
    animation:goldShimmer 2s linear infinite;
}

.profile-slider::after{
    content:"";
    position:absolute;
    inset:-6px;
    border-radius:22px;
    background:#d4af37;
    filter:blur(10px);
    opacity:.22;
    z-index:-2;
    animation:sparkPulse 1.8s ease-in-out infinite;
}

.profile-track{
    display:flex;
    gap:6px;
}

/* .profile-track img{
    width:210px;
    height:270px;
    object-fit:cover;
    border-radius:14px;
    flex-shrink:0;
    scroll-snap-align:center;
} */

.shine{
    position:absolute;
    top:-30%;
    left:-70%;
    width:35%;
    height:170%;
    background:linear-gradient(
        transparent,
        rgba(255,255,255,.9),
        transparent
    );
    transform:rotate(25deg);
    animation:shine 3s infinite;
    pointer-events:none;
    z-index:5;
}

.realtor-profile h3{
    margin-top:15px;
    font-size:18px;
    color:#fff;
    font-weight:600;
}

.realtor-profile p{
    max-width:260px;
    margin-top:8px;
    text-align:center;
    font-size:13px;
    color:#d8d8d8;
    line-height:1.6;
}

@keyframes goldShimmer{
    from{
        background-position:0% 50%;
    }
    to{
        background-position:300% 50%;
    }
}

@keyframes sparkPulse{
    0%,100%{
        opacity:.18;
        transform:scale(1);
    }
    50%{
        opacity:.45;
        transform:scale(1.03);
    }
}

@keyframes shine{
    0%{
        left:-70%;
        opacity:0;
    }
    15%{
        opacity:1;
    }
    40%{
        left:130%;
        opacity:0;
    }
    100%{
        left:130%;
        opacity:0;
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}



.connect-card{
    display:flex;
    justify-content:center;
    padding:50px 20px;
}

.connect-box{
    position:relative;
    width:min(700px,95%);
    background:#10344D;
    padding:32px;
    border-radius:22px;
    border:1px solid rgba(212,175,55,.25);
    text-align:center;
    box-shadow:0 18px 45px rgba(0,0,0,.35);
    overflow:hidden;
}

/* ---------- Luxury Gold Corners ---------- */

.connect-box span.corner{
    position:absolute;
    width:34px;
    height:34px;
    pointer-events:none;
}

.connect-box .tl{
    top:12px;
    left:12px;
    border-top:3px solid #d4af37;
    border-left:3px solid #d4af37;
    border-radius:8px 0 0 0;
    animation:cornerGlow 3s ease-in-out infinite;
}

.connect-box .tr{
    top:12px;
    right:12px;
    border-top:3px solid #d4af37;
    border-right:3px solid #d4af37;
    border-radius:0 8px 0 0;
    animation:cornerGlow 3s ease-in-out .5s infinite;
}

.connect-box .bl{
    bottom:12px;
    left:12px;
    border-bottom:3px solid #d4af37;
    border-left:3px solid #d4af37;
    border-radius:0 0 0 8px;
    animation:cornerGlow 3s ease-in-out 1s infinite;
}

.connect-box .br{
    bottom:12px;
    right:12px;
    border-bottom:3px solid #d4af37;
    border-right:3px solid #d4af37;
    border-radius:0 0 8px 0;
    animation:cornerGlow 3s ease-in-out 1.5s infinite;
}

/* ---------- Text ---------- */

.connect-box h2{
    color:#f5d76e;
    font-size:22px;
    margin-bottom:15px;
    opacity:0;
    animation:fadeUp .8s forwards;
}

.connect-box p{
    color:#edf2f7;
    font-size:13px;
    line-height:1.9;
    max-width:560px;
    margin:auto;
    opacity:0;
    animation:fadeUp .8s .25s forwards;
}

.connect-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:25px;
    opacity:0;
    animation:fadeUp .8s .5s forwards;
}

.connect-buttons a{
    text-decoration:none;
    padding:11px 24px;
    border-radius:30px;
    background:#d4af37;
    color:#10344D;
    font-size:13px;
    font-weight:700;
    transition:.35s;
}

.connect-buttons a:hover{
    background:#f5d76e;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(212,175,55,.35);
}

/* ---------- Animations ---------- */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes cornerGlow{
    0%,100%{
        box-shadow:0 0 0 rgba(212,175,55,0);
        border-color:#d4af37;
    }

    50%{
        box-shadow:0 0 14px rgba(212,175,55,.6);
        border-color:#ffe08a;
    }
}


/*==================================================
                    FOOTER
==================================================*/

footer{

    padding:35px 6%;

    text-align:center;

    background:#061427;

}

footer h3{

    color:#d4af37;

    font-size:22px;

    margin-bottom:10px;

}

footer p{

    font-size:14px;

    color:#d0d0d0;

    margin-bottom:10px;

    line-height:1.6;

}

footer small{

    font-size:13px;

    color:#8fa6c2;

}

/*==================================================
                SUBTLE ANIMATIONS
==================================================*/

.hero-btn,
.view-btn,
.cta-buttons a:first-child{

    animation:pulse 5s infinite;

}

.property-card{

    animation:zoomIn .7s ease;

}

.logo h2{

    animation:glow 7s infinite;

}



.whatsapp-btn{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#a50000;
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:15px;
    padding:12px 18px;
    border-radius:50px;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
    z-index:999;
    animation:pulse 2s infinite;
    transition:.3s;
    font-family:Arial, sans-serif;
}

.whatsapp-btn:hover{
    transform:translateY(-3px);
    background:#1ebe5d;
}

.whatsapp-text{
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.whatsapp-text small{
    font-size:15px;
    opacity:.9;
}

.whatsapp-text span{
    font-size:25px;
    font-weight:700;
    color: #ffffff;
    padding: 3px;
}

.whatsapp-btn i{
    font-size:34px;
}

/* Mobile */
@media(max-width:600px){

    .whatsapp-btn{
        bottom:20px;
        right:15px;
        padding:10px 15px;
            background:#a50000;

    }

    .whatsapp-text small{
        font-size:10px;
    }

    .whatsapp-text span{
        font-size:14px;
    }

    .whatsapp-btn i{
        font-size:30px;
    }
}

/* Pulse Animation */
@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}



.explore-title{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:clamp(2rem,5vw,3.2rem);
    font-weight:800;
    color:#ff3b3b;
    text-transform:uppercase;
    letter-spacing:1px;
    text-shadow:
        0 0 6px rgba(255,59,59,.45),
        0 0 14px rgba(255,59,59,.25);
    animation:sparkle 2.5s ease-in-out infinite;
}

.down-arrow{
    display:inline-block;
    color:#ffd700;
    font-size:1.2em;
    animation:bounceArrow 1.2s ease-in-out infinite;
}

@keyframes sparkle{

    0%,100%{
        opacity:1;
        text-shadow:
            0 0 6px rgba(255,59,59,.45),
            0 0 14px rgba(255,59,59,.25);
    }

    50%{
        opacity:.9;
        text-shadow:
            0 0 12px rgba(255,255,255,.9),
            0 0 24px rgba(255,59,59,.65),
            0 0 40px rgba(255,59,59,.4);
    }

}

@keyframes bounceArrow{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(10px);
    }

}

.show-more-btn{
    display:block;
    margin:30px auto 50px;
    padding:16px 34px;

    background:linear-gradient(135deg,#eaecee,#a9d8f6);
    color:#030b20;

    border:none;
    border-radius:50px;

    font-family:'Poppins',sans-serif;
    font-size:15px;
    font-weight:700;

    cursor:pointer;

    box-shadow:0 8px 20px rgba(16,52,77,.25);

    transition:.35s ease;

    animation:pulseGlow 1.8s infinite;
}

.show-more-btn:hover{
    transform:translateY(-4px) scale(1.03);
    animation:none;
    box-shadow:
        0 12px 30px rgba(16,52,77,.35),
        0 0 20px rgba(200,170,98,.4);
}

@keyframes pulseGlow{
    0%{
        transform:scale(1);
        box-shadow:
            0 8px 20px rgba(16,52,77,.20),
            0 0 0 rgba(200,170,98,0);
    }

    50%{
        transform:scale(1.06);
        box-shadow:
            0 12px 28px rgba(16,52,77,.35),
            0 0 25px rgba(0, 0, 0, 0.7);
    }

    100%{
        transform:scale(1);
        box-shadow:
            0 8px 20px rgba(16,52,77,.20),
            0 0 0 rgba(200,170,98,0);
    }
}

.show-more-btn:hover{
    transform:translateY(-3px);
    box-shadow:
        0 12px 28px rgba(0,0,0,.18);
}

.changing-text{
    display:inline-block;
    min-width:170px;
    margin-left:6px;

    font-weight:800;

    color:#10B981;

    transition:
        color .4s ease,
        opacity .4s ease,
        transform .4s ease;
}

@media(max-width:768px){

    .show-more-btn{
        width:90%;
        max-width:340px;
        padding:14px 18px;
        font-size:14px;
    }

    .changing-text{
        min-width:140px;
    }

}




.flyer-actions{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.flyer-btn{
    flex:1;
    text-align:center;
    padding:14px 12px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:all 0.3s ease;
    box-sizing:border-box;
}

/* View Button */
.view-flyer{
    background:#3278aa;
    color:#fff;
    border:2px solid #10344D;
}

.view-flyer:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 15px rgba(16,52,77,0.25);
}

/* Download Button */
.download-flyer{
    background:#ffdd6d;
    color:#000;
    border:2px solid #D4AF37;
}

.download-flyer:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 15px rgba(212,175,55,0.25);
}

/* Mobile */
@media (max-width:480px){
    .flyer-actions{
        gap:8px;
    }

    .flyer-btn{
        padding:12px 8px;
        font-size:14px;
    }
}
/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px){

nav{

    padding:12px 5%;

}

.hero{

    min-height:75vh;

}

.hero h1{

    font-size:25px;

}

.hero p{

    font-size:15px;

}

.property-card{

    grid-template-columns:1fr;

}

.property-image{

    height:300px;

}

.property-content{

    padding:24px;

}

.features{

    grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:768px){

nav{
    flex-direction:column;
    gap:10px;
    padding:12px;
    background-color: #000c25;
}

nav ul{
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
}

.hero{
    min-height:auto;
    padding:90px 20px 25px;
}

.hero h1{
    font-size:22px;
    margin-top:15px;
}

.hero p{
    font-size:14px;
}

.realtor-profile{
    margin-top:20px;
    margin-bottom:10px;
}

.profile-slider{
    margin-bottom:8px;
}

.realtor-profile h3{
    margin-top:10px;
}

.realtor-profile p{
    margin-top:5px;
    margin-bottom:0;
}

.intro{
    padding:10px;
    margin-top:20px;
}

.intro h2{
    font-size:15px;
    margin-bottom: 10px;
}

.property-card{
    grid-template-columns:1fr;
}

.property-image{
    height:250px;
}

.property-content{
    padding:20px;
}

.features{
    grid-template-columns:1fr;
}

.view-btn{
    width:100%;
}
}


@media(max-width:480px){

.logo h2{

    font-size:18px;

}

nav ul li a{

    font-size:13px;

}


.hero{

    min-height:70vh;

}

.hero h1{

    font-size:28px;

}

.hero-btn{

    width:100%;

}

.property-image{

    height:220px;

}

.property-content{

    padding:18px;

}

.property-content h2{

    font-size:22px;

}

.plot-card h2{

    font-size:20px;

}

.plot-card h3,

.landmark-card h3{

    font-size:16px;

}

footer{

    padding:30px 20px;

}

}

@media (max-width:768px){

    #documents + section iframe{
        height:280px;
    }

}

@media (max-width:480px){

    #documents + section iframe{
        height:220px;
    }

}
