/* =========================
   HEADER
========================= */

.header{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 2px 15px rgba(0,0,0,.08);
}

.header .container{
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================
   LOGO
========================= */

.logo{
    flex-shrink: 0;
}

.logo img{
    height: 75px;
    width: auto;
    display: block;
}

/* =========================
   NAVIGATION
========================= */

.navbar{
    flex: 1;
    display: flex;
    justify-content: center;
}

.navbar ul{
    display: flex;
    align-items: center;
    gap: 35px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar ul li{
    position: relative;
}

.navbar ul li a{
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.navbar ul li a:hover{
    color: #c9a45d;
}

/* =========================
   DROPDOWN
========================= */

.dropdown-menu{
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 240px;

    background: #fff;
    border-radius: 10px;

    padding: 10px 0;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    box-shadow: 0 10px 25px rgba(0,0,0,.1);

    transition: .3s;

    z-index: 999;
}

.dropdown:hover .dropdown-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li{
    width: 100%;
}

.dropdown-menu li a{
    display: block;
    padding: 12px 20px;
    font-size: 15px;
}

.dropdown-menu li a:hover{
    background: #f7f7f7;
}

/* =========================
   RIGHT SIDE
========================= */

.header-right{
    display: flex;
    align-items: center;
    gap: 15px;
}

.call-btn{
    text-decoration: none;
    color: #111;
    font-weight: 600;
    white-space: nowrap;
}

.call-btn:hover{
    color: #c9a45d;
}

.visit-btn{
    background: #c9a45d;
    color: #fff;
    text-decoration: none;

    padding: 14px 24px;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;
}

.visit-btn:hover{
    background: #b48d44;
    transform: translateY(-2px);
}

/* =========================
   MOBILE TOGGLE
========================= */

.menu-toggle{
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span{
    width: 28px;
    height: 3px;
    background: #111;
    border-radius: 20px;
}

/* =========================
   MOBILE
========================= */
@media(max-width:991px){

    .navbar{
        position: fixed;
        top: 0;
        right: -320px;   /* Left ki jagah Right */

        width: 300px;
        height: 100vh;

        background: #fff;

        padding: 100px 30px 30px;

        transition: .4s ease;

        z-index: 9999;

        box-shadow: -10px 0 30px rgba(0,0,0,.15);
    }

    .navbar.active{
        right: 0;
    }

    .navbar ul{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .navbar ul li a{
        font-size: 18px;
        font-weight: 600;
    }

    .menu-toggle{
        display: flex;
        position: relative;
        z-index: 10000;
    }
}
@media(max-width:768px){

    .header .container{
        padding:12px 15px;
        gap:10px;
    }

    .logo img,
    .custom-logo-link img{
        height:45px !important;
        width:auto;
    }

    /* Phone hide on mobile */
    .call-btn{
        display:none;
    }

    /* Small button */
    .visit-btn{
        padding:10px 15px;
        font-size:13px;
        border-radius:30px;
    }

    .header-right{
        gap:10px;
    }

    .menu-toggle{
        margin-left:auto;
    }
}
@media (max-width: 991px){

    .custom-logo-link img,
    .logo img{
        height:50px !important;
        width:auto !important;
    }

}
@media (max-width: 991px){

    .header-right{
        display:none !important;
    }

    .menu-toggle{
        display:flex !important;
        margin-left:auto;
    }

}
/* =========================
   EXTRA SMALL
========================= */

@media(max-width:576px){

    .logo img{
        height: 50px;
    }

    .header .container{
        padding: 12px 15px;
    }
}
/* ==========================
   WHITE PREMIUM FOOTER
========================== */

.footer{
    background:#ffffff;
    padding:80px 0 0;
    border-top:1px solid #eee;
}

.footer .container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-logo-img{
    width:280px;
    max-width:100%;
    height:auto;
    display:block;
    margin-bottom:25px;
}

.footer-about p{
    color:#666;
    line-height:1.8;
}

.footer-col h3{
    color:#c9a45d;
    font-size:22px;
    margin-bottom:20px;
    font-weight:700;
}

.footer-col ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    text-decoration:none;
    color:#333;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#c9a45d;
    padding-left:5px;
}

.footer-socials{
    display:flex;
    gap:12px;
    margin-top:25px;
    flex-wrap:wrap;
}

.footer-socials a{
    text-decoration:none;
    color:#333;
    border:1px solid #ddd;
    padding:10px 18px;
    border-radius:40px;
    transition:.3s;
}

.footer-socials a:hover{
    background:#c9a45d;
    color:#fff;
    border-color:#c9a45d;
}

.footer-bottom{
    margin-top:60px;
    border-top:1px solid #eee;
    text-align:center;
    padding:25px 0;
}

.footer-bottom p{
    margin:0;
    color:#777;
}

/* Gold Line */

.footer-about::after{
    content:'';
    display:block;
    width:80px;
    height:3px;
    background:#c9a45d;
    margin-top:20px;
}

/* WhatsApp */

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:15px 25px;
    border-radius:50px;
    font-weight:600;
    z-index:999;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .footer{
        text-align:center;
        padding-top:60px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-logo-img{
        width:320px;
        max-width:100%;
        margin:0 auto 25px;
    }

    .footer-socials{
        justify-content:center;
    }

    .footer-about::after{
        margin:20px auto 0;
    }
}
.footer-tagline{
    color:#c9a45d;
    font-weight:600;
    letter-spacing:1px;
    margin:10px 0 20px;
}
/* Mobile Logo Size */
@media (max-width: 991px){

    .custom-logo-link img,
    .logo img{
        height: 70px !important;
        width: auto !important;
        max-width: 180px !important;
    }

    .header{
        padding: 10px 15px;
    }

}
/* ==========================================
   LUXURY REAL ESTATE HOME PAGE CSS
   (WITHOUT HEADER & FOOTER)
========================================== */

:root{
    --gold:#c9a227;
    --gold-dark:#b38d17;
    --black:#111111;
    --text:#555555;
    --light:#f8f8f8;
    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:var(--black);
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

section{
    padding:100px 0;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

/* ==========================================
   HERO SECTION
========================================== */

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;

    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url("../img/dwarka-one-luxury-real-estate-about-banner.png");

    background-size:cover;
    background-position:center;
}

.hero-content{
    max-width:900px;
}

.hero h1{
    color:#fff;
    font-size:72px;
    font-weight:700;
    line-height:1.15;
    margin-bottom:25px;
    text-shadow:0 8px 30px rgba(0,0,0,.4);
}

.hero p{
    color:#eee;
    font-size:22px;
    margin-bottom:40px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.gold-btn{
    background:var(--gold);
    color:#fff;
    padding:16px 38px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
    box-shadow:0 10px 25px rgba(201,162,39,.3);
}

.gold-btn:hover{
    background:var(--gold-dark);
    transform:translateY(-4px);
}

.white-btn{
    background:#fff;
    color:#111;
    padding:16px 38px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.white-btn:hover{
    transform:translateY(-4px);
}

/* ==========================================
   SEARCH BOX
========================================== */

.search-section{
    margin-top:-70px;
    position:relative;
    z-index:10;
    padding-bottom:40px;
}

.search-form{
    background:#fff;
    padding:30px;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);

    display:grid;
    grid-template-columns:
    repeat(4,1fr);

    gap:15px;
}

.search-form select,
.search-form button{
    height:60px;
    border:none;
    border-radius:12px;
    font-size:15px;
}

.search-form select{
    background:#f5f5f5;
    padding:0 15px;
    outline:none;
}

.search-form button{
    background:var(--gold);
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
}

.search-form button:hover{
    background:var(--gold-dark);
}

/* ==========================================
   SECTION TITLE
========================================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:46px;
    margin-bottom:15px;
    color:var(--black);
}

.section-title p{
    color:var(--text);
    font-size:17px;
}

/* ==========================================
   CATEGORY SECTION
========================================== */

.categories{
    background:#fafafa;
}

.category-grid{
    display:grid;
    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

.category-card{
    background:#fff;
    padding:40px 25px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.category-card h3{
    font-size:24px;
    margin-bottom:10px;
}

.category-card p{
    color:var(--text);
}

/* ==========================================
   FEATURED PROPERTY
========================================== */

.featured-properties{
    background:#fff;
}

.property-grid{
    display:grid;
    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.property-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.property-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.property-card img{
    height:260px;
    width:100%;
    object-fit:cover;
    transition:.6s;
}

.property-card:hover img{
    transform:scale(1.08);
}

.property-content{
    padding:25px;
}

.property-content span{
    color:var(--gold);
    font-weight:600;
}

.property-content h3{
    margin:12px 0;
    font-size:24px;
}

.property-content p{
    font-size:18px;
    font-weight:600;
    margin-bottom:20px;
}

.property-content a{
    display:inline-block;
    padding:12px 25px;
    background:#111;
    color:#fff;
    border-radius:50px;
    transition:.4s;
}

.property-content a:hover{
    background:var(--gold);
}

/* ==========================================
   INVESTMENT SECTION
========================================== */

.investment-section{
    position:relative;

    background:
    linear-gradient(
    rgba(0,0,0,.75),
    rgba(0,0,0,.75)),
    url("../img/dwarka-one-luxury-real-estate-about-banner.png");

    background-size:cover;
    background-position:center;
}

.investment-content{
    max-width:850px;
    margin:auto;
    text-align:center;
}

.investment-content h2{
    color:#fff;
    font-size:54px;
    margin-bottom:20px;
}

.investment-content p{
    color:#ddd;
    font-size:18px;
    margin-bottom:30px;
}

.investment-content ul{
    list-style:none;
    margin-bottom:40px;
}

.investment-content li{
    color:#fff;
    font-size:18px;
    margin:12px 0;
}

/* ==========================================
   MOBILE RESPONSIVE
========================================== */

@media(max-width:992px){

.hero h1{
    font-size:50px;
}

.search-form{
    grid-template-columns:1fr 1fr;
}

.category-grid{
    grid-template-columns:1fr 1fr;
}

.property-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

section{
    padding:70px 0;
}

.hero{
    min-height:80vh;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
}

.gold-btn,
.white-btn{
    width:100%;
    text-align:center;
}

.search-form{
    grid-template-columns:1fr;
    padding:20px;
}

.category-grid{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:32px;
}

.investment-content h2{
    font-size:34px;
}

}
/* HERO CONTENT CENTER */

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-content{
    text-align:center;
}

/* BUTTON WRAPPER */

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    margin-top:40px;
    flex-wrap:wrap;
}

/* BOTH BUTTONS SAME SIZE */

.hero-buttons .gold-btn,
.hero-buttons .white-btn{
    width:280px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50px;

    font-size:20px;
    font-weight:600;

    padding:0;
    margin:0;

    line-height:1;
}

/* GOLD BUTTON */

.hero-buttons .gold-btn{
    background:#c9a227;
    color:#fff;
    box-shadow:0 10px 30px rgba(201,162,39,.35);
}

/* WHITE BUTTON */

.hero-buttons .white-btn{
    background:#fff;
    color:#111;
}

/* HOVER */

.hero-buttons .gold-btn:hover,
.hero-buttons .white-btn:hover{
    transform:translateY(-4px);
}

/* MOBILE */

@media(max-width:768px){

.hero-buttons{
    flex-direction:column;
}

.hero-buttons .gold-btn,
.hero-buttons .white-btn{
    width:100%;
    max-width:320px;
}

}
/* =========================
   ABOUT PAGE PREMIUM CSS
========================= */

:root{
    --gold:#d4af37;
    --dark:#111111;
    --text:#666;
    --white:#ffffff;
    --light:#f8f8f8;
}

/* HERO SECTION */

.about-hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('../img/dwarka-one-luxury-real-estate-about-banner.png');
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.about-hero::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,var(--gold),transparent 70%);
    opacity:.08;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.about-hero .container{
    position:relative;
    z-index:2;
    max-width:1000px;
}

.about-hero .sub-title{
    display:inline-block;
    color:var(--gold);
    letter-spacing:4px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.about-hero h1{
    font-size:78px;
    line-height:1.1;
    color:#fff;
    font-weight:700;
    margin-bottom:30px;
}

.about-hero p{
    color:#eee;
    font-size:22px;
    line-height:1.9;
    max-width:850px;
    margin:auto;
}

/* STORY SECTION */

.about-story{
    padding:120px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 30px 80px rgba(0,0,0,.15);
}

.about-content span{
    color:var(--gold);
    font-weight:700;
    letter-spacing:3px;
    display:block;
    margin-bottom:15px;
}

.about-content h2{
    font-size:52px;
    line-height:1.2;
    color:var(--dark);
    margin-bottom:25px;
}

.about-content p{
    font-size:18px;
    line-height:1.9;
    color:var(--text);
    margin-bottom:20px;
    text-align:justify;
}

/* STATS */

.about-stats{
    padding:100px 0;
    background:linear-gradient(135deg,#111,#1c1c1c);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stats-grid div{
    text-align:center;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    padding:45px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
}

.stats-grid h3{
    color:var(--gold);
    font-size:55px;
    margin-bottom:10px;
}

.stats-grid p{
    color:#fff;
    font-size:18px;
}

/* WHY CHOOSE */

.why-us{
    padding:120px 0;
    background:#f9f9f9;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:56px;
    color:#111;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    font-size:20px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    padding:45px;
    border-radius:25px;
    transition:.4s;
    border:1px solid #eee;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    position:relative;
    overflow:hidden;
}

.why-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:var(--gold);
}

.why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.why-card h3{
    font-size:28px;
    margin-bottom:15px;
    color:#111;
}

.why-card p{
    color:#666;
    line-height:1.8;
}

/* CTA */

.about-cta{
    padding:130px 0;
    text-align:center;
    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url('../img/cta-bg.jpg');
    background-size:cover;
    background-position:center;
}

.about-cta h2{
    color:#fff;
    font-size:64px;
    margin-bottom:20px;
}

.about-cta p{
    color:#ddd;
    font-size:22px;
    margin-bottom:35px;
}

.gold-btn{
    display:inline-block;
    padding:18px 45px;
    background:var(--gold);
    color:#fff;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.gold-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(212,175,55,.4);
}

/* RESPONSIVE */

@media(max-width:992px){

.about-grid{
    grid-template-columns:1fr;
}

.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.about-hero h1{
    font-size:55px;
}

.section-title h2,
.about-content h2,
.about-cta h2{
    font-size:42px;
}

}

@media(max-width:768px){

.about-hero{
    min-height:75vh;
    padding:80px 20px;
}

.about-hero h1{
    font-size:38px;
}

.about-hero p{
    font-size:17px;
}

.stats-grid,
.why-grid{
    grid-template-columns:1fr;
}

.about-content h2{
    font-size:34px;
}

.section-title h2{
    font-size:34px;
}

.about-cta h2{
    font-size:36px;
}

.about-cta p{
    font-size:17px;
}

}
.blog-hero{
    padding:140px 0 80px;
    background:#111;
    text-align:center;
    color:#fff;
}

.blog-hero h1{
    font-size:60px;
    margin-bottom:15px;
}

.blog-section{
    padding:100px 0;
    background:#f8f8f8;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.blog-content{
    padding:30px;
}

.blog-content h2{
    font-size:28px;
    margin:15px 0;
}

.blog-content a{
    text-decoration:none;
    color:#111;
}

.read-more{
    color:#d4af37 !important;
    font-weight:600;
}

.single-blog{
    padding:140px 0 100px;
}

.single-thumbnail img{
    width:100%;
    border-radius:20px;
    margin-bottom:30px;
}

.single-blog h1{
    font-size:55px;
    margin-bottom:15px;
}

.blog-content{
    line-height:1.9;
    font-size:18px;
}

@media(max-width:991px){

.blog-grid{
    grid-template-columns:1fr;
}

.blog-hero h1{
    font-size:40px;
}

.single-blog h1{
    font-size:35px;
}

}
.blog-hero{
    padding:180px 0 120px;
    text-align:center;
    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url('../img/dwarka-one-luxury-real-estate-about-banner.png') center/cover;
}

.blog-hero span{
    color:#d4af37;
    letter-spacing:4px;
    font-weight:700;
}

.blog-hero h1{
    color:#fff;
    font-size:72px;
    max-width:900px;
    margin:20px auto;
}

.blog-hero p{
    color:#ddd;
    font-size:22px;
}
/* CONTACT HERO */

.contact-hero{
    padding:180px 0 120px;
    text-align:center;
    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url('../img/dwarka-one-luxury-real-estate-about-banner.png');
    background-size:cover;
    background-position:center;
}

.contact-hero span{
    color:#d4af37;
    letter-spacing:4px;
    font-weight:700;
}

.contact-hero h1{
    color:#fff;
    font-size:72px;
    max-width:850px;
    margin:20px auto;
}

.contact-hero p{
    color:#ddd;
    font-size:22px;
}

/* CONTACT SECTION */

.contact-section{
    padding:120px 0;
    background:#f8f8f8;
}

.contact-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:50px;
}

.contact-info{
    background:#111;
    color:#fff;
    padding:50px;
    border-radius:25px;
}

.contact-info h2{
    margin-bottom:40px;
    font-size:34px;
}

.info-box{
    margin-bottom:30px;
}

.info-box h4{
    color:#d4af37;
    margin-bottom:8px;
}

.contact-form-box{
    background:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

/* FORM */

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:12px;
    margin-bottom:20px;
}

.contact-form-box input[type="submit"]{
    background:#d4af37;
    color:#fff;
    border:none;
    cursor:pointer;
    font-weight:700;
}

/* MAP */

.map-section iframe{
    display:block;
}

/* MOBILE */

@media(max-width:991px){

.contact-grid{
    grid-template-columns:1fr;
}

.contact-hero h1{
    font-size:42px;
}

.contact-hero p{
    font-size:18px;
}

}
/* ===========================
   THANK YOU PAGE
=========================== */

.thank-you-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 20px;
    background:
    linear-gradient(rgba(0,0,0,.80),rgba(0,0,0,.80)),
    url('../img/luxury-real-estate-thank-you-banner.png');
    background-size:cover;
    background-position:center;
    position:relative;
}

.thank-you-box{
    max-width:850px;
    margin:auto;
    padding:70px;
    border-radius:30px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
}

.success-icon{
    width:120px;
    height:120px;
    margin:auto;
    margin-bottom:30px;
    border-radius:50%;
    background:#d4af37;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:60px;
    font-weight:700;
    box-shadow:0 20px 50px rgba(212,175,55,.4);
}

.thank-label{
    color:#d4af37;
    font-size:14px;
    letter-spacing:4px;
    font-weight:700;
}

.thank-you-box h1{
    color:#fff;
    font-size:64px;
    line-height:1.2;
    margin:25px 0;
}

.thank-you-box p{
    color:#ddd;
    font-size:22px;
    line-height:1.9;
    max-width:700px;
    margin:auto;
    margin-bottom:40px;
}

.thank-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.gold-btn{
    display:inline-block;
    padding:18px 42px;
    background:#d4af37;
    color:#fff;
    text-decoration:none;
    border-radius:60px;
    font-weight:600;
    transition:.4s;
}

.gold-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(212,175,55,.35);
}

.outline-btn{
    display:inline-block;
    padding:18px 42px;
    border:2px solid #d4af37;
    color:#d4af37;
    text-decoration:none;
    border-radius:60px;
    font-weight:600;
    transition:.4s;
}

.outline-btn:hover{
    background:#d4af37;
    color:#fff;
}

@media(max-width:768px){

.thank-you-box{
    padding:40px 25px;
}

.success-icon{
    width:90px;
    height:90px;
    font-size:45px;
}

.thank-you-box h1{
    font-size:36px;
}

.thank-you-box p{
    font-size:17px;
}

.thank-buttons{
    flex-direction:column;
}

.gold-btn,
.outline-btn{
    width:100%;
}

}
/* =================================
   SINGLE PROPERTY PAGE
================================= */

.single-property{
    padding:30px 0 80px;
    background:#f8f8f8;
}

.single-property .container{
    max-width:1400px;
    margin:auto;
}

.single-property-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:70px;
    align-items:flex-start;
}

/* IMAGE */

.property-image{
    position:sticky;
    top:120px;
}

.property-image img{
    width:100%;
    height:700px;
    object-fit:cover;
    border-radius:30px;
    display:block;
    box-shadow:0 30px 80px rgba(0,0,0,.12);
}

/* TAG */

.property-tag{
    display:inline-block;
    padding:12px 28px;
    background:#d4af37;
    color:#fff;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:25px;
}

/* TITLE */

.property-details h1{
    font-size:72px;
    line-height:1.05;
    color:#111;
    margin-bottom:30px;
    font-weight:700;
}

/* CONTENT */

.property-content{
    color:#555;
    font-size:19px;
    line-height:1.9;
}

.property-content h2{
    font-size:42px;
    margin:40px 0 20px;
    color:#111;
}

.property-content h3{
    font-size:28px;
    margin:30px 0 15px;
    color:#111;
}

.property-content ul{
    padding-left:25px;
}

.property-content li{
    margin-bottom:12px;
}

/* BOOK BUTTON */

.gold-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:40px;
    padding:18px 42px;
    background:#d4af37;
    color:#fff;
    text-decoration:none;
    border-radius:60px;
    font-size:16px;
    font-weight:600;
    transition:.4s;
}

.gold-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(212,175,55,.35);
}

/* PROPERTY INFO */

.property-meta{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin:35px 0;
}

.meta-box{
    background:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.meta-box h4{
    color:#d4af37;
    font-size:13px;
    text-transform:uppercase;
    margin-bottom:8px;
    letter-spacing:1px;
}

.meta-box span{
    font-size:22px;
    font-weight:700;
    color:#111;
}

/* CTA BOX */

.property-cta{
    margin-top:60px;
    background:#111;
    border-radius:30px;
    padding:60px;
}

.property-cta h2{
    color:#fff;
    font-size:42px;
    margin-bottom:15px;
}

.property-cta p{
    color:#ccc;
    margin-bottom:25px;
    font-size:18px;
}

/* MOBILE */

@media(max-width:1200px){

.property-details h1{
    font-size:55px;
}

.property-image img{
    height:600px;
}

}

@media(max-width:991px){

.single-property{
    padding:20px 0 50px;
}

.single-property-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.property-image{
    position:relative;
    top:0;
}

.property-image img{
    height:450px;
}

.property-details h1{
    font-size:42px;
}

.property-meta{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.property-image img{
    height:300px;
    border-radius:20px;
}

.property-details h1{
    font-size:34px;
}

.property-content{
    font-size:16px;
}

.property-meta{
    grid-template-columns:1fr;
}

.gold-btn{
    width:100%;
}

}
/* ==========================
   REMOVE ALL EXTRA GAPS
========================== */

html,
body{
    margin:0 !important;
    padding:0 !important;
}

header,
.site-header{
    margin:0 !important;
    padding:20px 0 !important;
}

.single-property{
    margin:0 !important;
    padding:20px 0 20px !important;
    background:#f8f8f8;
}

.single-property .container{
    margin:0 auto !important;
    padding-top:0 !important;
    padding-bottom:0 !important;
}

.single-property-grid{
    margin:0 !important;
    padding:0 !important;
    align-items:flex-start;
}

.property-details{
    margin-top:0 !important;
    padding-top:0 !important;
}

.property-tag{
    margin-top:0 !important;
}

.property-details h1{
    margin-top:10px !important;
}

/* FOOTER */

footer,
.site-footer{
    margin:0 !important;
    padding:40px 0 15px !important;
    min-height:auto !important;
}

.footer-top{
    margin:0 !important;
    padding:0 0 25px !important;
}

.footer-bottom{
    margin:0 !important;
    padding:15px 0 0 !important;
}

/* REMOVE HUGE SPACE ABOVE FOOTER */

.single-property + footer,
.single-property + .site-footer{
    margin-top:0 !important;
}

/* MOBILE */

@media(max-width:991px){

.single-property{
    padding:15px 0 !important;
}

footer,
.site-footer{
    padding:30px 0 10px !important;
}

}