*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(135deg,#f5f7fa,#e4ecf7);
    color:#333;
    overflow-x:hidden;
}

/* HEADER */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:18px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(255,255,255,0.8);
    backdrop-filter:blur(15px);
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
    z-index:1000;
}

.logo h1{
    font-family:'Playfair Display',serif;
    color:#b68d40;
    font-size:32px;
}

.logo p{
    font-size:12px;
    color:#666;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img,
.logo-img{
    width:auto;
    height:48px;
    max-width:100%;
    object-fit:contain;
}

.login-logo{
    width:auto;
    height:90px;
    max-width:100%;
    object-fit:contain;
}

.footer-logo{
    width:auto;
    height:56px;
    max-width:100%;
    object-fit:contain;
}

nav a{
    text-decoration:none;
    color:#333;
    margin-left:25px;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#b68d40;
}

/* HERO */

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('images/image4.jpeg');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero-content{
    max-width:850px;
    padding:20px;
    animation:fadeUp 1s ease;
}

.hero-content h2{
    font-family:'Playfair Display',serif;
    font-size:68px;
    margin-bottom:15px;
}

.hero-content p{
    font-size:20px;
    margin-bottom:30px;
}

/* BUTTONS */

.btn{
    display:inline-block;
    padding:14px 30px;
    border-radius:30px;
    background:#b68d40;
    color:white;
    text-decoration:none;
    margin:8px;
    transition:.3s;
}

.btn:hover{
    background:#8c6b2f;
    transform:translateY(-3px);
}

.btn-outline{
    background:transparent;
    border:2px solid white;
}

.btn-outline:hover{
    background:white;
    color:#333;
}

/* SECTIONS */

.section{
    padding:90px 60px;
}

.section-title{
    text-align:center;
    font-size:40px;
    margin-bottom:40px;
    color:#b68d40;
    font-family:'Playfair Display',serif;
}

/* ABOUT */

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-text h2{
    color:#b68d40;
    margin-bottom:20px;
}

.about-line{
    display:flex;
    align-items:center;
    gap:15px;
    margin:15px 0;
}

.about-line span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#b68d40;
}

/* FEATURES */

.features{
    display:grid;
    gap:20px;
}

.feature{
    background:rgba(255,255,255,.7);
    padding:20px;
    border-radius:15px;
    transition:.3s;
}

.feature:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.feature h4{
    color:#b68d40;
}

/* PROPERTY CARDS */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:rgba(255,255,255,.7);
    border-radius:15px;
    overflow:hidden;
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.card-content h3{
    color:#b68d40;
    margin-bottom:10px;
}

/* MAP */

.map-container{
    max-width:1000px;
    margin:auto;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,.1);
}

/* CONTACT */

form{
    max-width:500px;
    margin:auto;
    background:rgba(255,255,255,.7);
    padding:25px;
    border-radius:15px;
}

input,
textarea{
    width:100%;
    padding:12px;
    margin:10px 0;
    border:1px solid #ddd;
    border-radius:8px;
}

input:focus,
textarea:focus{
    outline:none;
    border-color:#b68d40;
}

.contact-links a{
    color:#333;
    text-decoration:none;
}

.contact-links a:hover{
    color:#b68d40;
}

/* FOOTER */

.footer{
    background:#b68d40;
    color:white;
    text-align:center;
    padding:40px 20px;
}

/* ANIMATION */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* MOBILE */

@media(max-width:768px){

    header{
        padding:15px 20px;
        flex-direction:column;
    }

    nav{
        margin-top:10px;
    }

    nav a{
        margin:0 8px;
        font-size:14px;
    }

    .hero-content h2{
        font-size:42px;
    }

    .about-container{
        grid-template-columns:1fr;
    }

    .section{
        padding:70px 20px;
    }

    .logo img,
    .logo-img{
        height:38px;
    }

    .login-logo{
        height:72px;
    }

    .footer-logo{
        height:46px;
    }
}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.card{
    background:rgba(255,255,255,0.7);
    border-radius:15px;
    overflow:hidden;
    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.card-content h3{
    color:#b68d40;
    margin-bottom:10px;
}
.video-container{
    text-align:center;
}

.video-container video{
    width:90%;
    max-width:1000px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}
#why-us .card{
    text-align:center;
    padding:20px;
}

#why-us .card h3{
    color:#b68d40;
    margin-bottom:10px;
}.map-container{
    max-width:1000px;
    margin:auto;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}
form{
    max-width:600px;
    margin:auto;
}

input,
textarea{
    width:100%;
    padding:14px;
    margin:10px 0;
    border:1px solid #ddd;
    border-radius:10px;
}

textarea{
    resize:none;
}
.footer{
    background:#b68d40;
    color:white;
    text-align:center;
    padding:50px 20px;
}

.whatsapp-btn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:28px;
    z-index:1000;
}.call-btn {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin: 5px;
}

.call-btn:hover {
    background: #218838;
}


.review-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.review-top{
    margin-bottom:15px;
}
/* REVIEW PAGE */

.review-section{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:transparent;
    padding:40px 20px;
}

.review-form-container{
    width:100%;
    max-width:600px;
    background:transparent;
    padding:0;
    border-radius:0;
    box-shadow:none;
    text-align:center;
}

.review-form-container h2{
    font-family:'Playfair Display',serif;
    color:#b68d40;
    font-size:36px;
    margin-bottom:12px;
}

.review-text{
    color:#666;
    font-size:16px;
    line-height:1.7;
    margin-bottom:30px;
}

.input-group{
    margin-bottom:20px;
}

.input-group input,
.input-group select,
.input-group textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    font-family:'Poppins',sans-serif;
    outline:none;
    transition:.3s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{
    border-color:#b68d40;
    box-shadow:0 0 10px rgba(182,141,64,.2);
}

.input-group textarea{
    resize:none;
}

.submit-review{
    width:100%;
    padding:15px;
    background:#b68d40;
    color:#fff;
    border:none;
    border-radius:10px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.submit-review:hover{
    background:#8c6b2f;
}
.review-form-container form{
    max-width:100%;
    margin:0;
    background:none;
    padding:0;
    box-shadow:none;
}

.review-form-container p{
    color:#666;
    margin-bottom:25px;
    line-height:1.7;
}

.review-section{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
}

.review-form-container{
    width:100%;
    max-width:600px;
    margin:auto;
}
/*=========================
      CUSTOMER REVIEWS
=========================*/

#reviews{
    padding:90px 60px;
    background:#f7f8fa;
}

.review-subtitle{
    text-align:center;
    color:#666;
    font-size:16px;
    margin-top:-20px;
    margin-bottom:35px;
}

.review-cta{
    text-align:center;
    margin-bottom:45px;
}

.review-btn{
    display:inline-block;
    padding:14px 30px;
    background:#b68d40;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.review-btn:hover{
    background:#8c6b2f;
    transform:translateY(-3px);
}
/* Customer Reviews */
.reviews-container{
    max-width:800px;      /* Reduce overall width */
    margin:40px auto;
    display:flex;
    justify-content:center;
}


.review-card{
    width:100%;
    max-width:700px;      /* Card width */
    background:transparent;
    padding:25px 30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.review-top h3{
    font-size:22px;
    color:#222;
    margin-bottom:8px;
}

.stars{
    color:#f4b400;
    font-size:18px;
    margin-bottom:15px;
}

.review-card p{
    color:#555;
    line-height:1.8;
    font-size:16px;
}

@media(max-width:768px){

    #reviews{
        padding:70px 20px;
    }

    .reviews-container{
        grid-template-columns:1fr;
    }

}
#reviews{
    background: transparent;
    padding: 70px 20px;
}
/* FOOTER */

.footer{
    background:#b68d40;
    border-top:3px solid #b68d40;
    padding:50px 20px;

    width:calc(100% + 120px);
    margin-left:-60px;
    margin-right:-60px;
    box-sizing:border-box;
}

.footer h3{
    font-family:'Playfair Display',serif;
    font-size:32px;
    color:#f8f8f8;
    margin-bottom:10px;
}

.footer-tagline{
    color:#f8f8f8;
    margin-bottom:25px;
    font-size:25px;
}
.footer-contact p{
    margin:12px 0;
    font-size:20px;
    color:#f8f8f8
}

.footer-contact a{
    color:#f8f8f8;
    text-decoration:none;
    transition:.3s;
}

.footer-contact a:hover{
    color:#f8f8f8;
}

.footer-copy{
    margin-top:25px;
    padding-top:20px;
    border-top:1px solid #ddd;
    color:#f8f8f8;
    font-size:14px;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:50px;
    flex-wrap:wrap;
    width:100%;
    margin:auto;
}
.footer-box{
    flex:1;
    min-width:250px;
}

.footer-box h3{
    font-family:'Playfair Display',serif;
    font-size:28px;
    color:#fff;
    margin-bottom:20px;
}

.footer-desc{
    color:#fff;
    line-height:1.8;
    font-size:17px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin:12px 0;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.footer-links a:hover{
    padding-left:8px;
}

.footer-contact p{
    margin:12px 0;
    font-size:18px;
    color:#fff;
}

.footer-contact a{
    color:#fff;
    text-decoration:none;
}

.footer-bottom{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.4);
    text-align:center;
    color:#fff;
    font-size:15px;
}

/* Mobile */
@media(max-width:768px){

.footer-container{
    flex-direction:column;
    text-align:center;
}

.footer-box{
    width:100%;
}

}