/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     text-decoration: none;
}

body {
    font-family: "Clash Grotesk", sans-serif;
}
.dropdown-toggle::after{
    margin-left:6px;
    vertical-align:middle;
}
.dropdown-menu{
    display:none;
    flex-direction:column;
}
.dropdown-menu.show{
    display:flex;
    flex-direction: column;
}
.dropdown{
    display:flex;
    align-items:center;
    gap:6px;
}

.dropdown-arrow{
    cursor:pointer;
    font-size:22px;
}

/* ================= NAVBAR ================= */
/* ================= NAVBAR ================= */

.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding-top: 16px;
}
.nav-container {
    width: 88%;
    max-width: 1400px;
    background: #ffffff;
    border-radius: 14px;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    gap: 40px; /* spacing between logo and menu */
    height: 94px;
}

/* Logo */
.logo img {
    height: 94px;
    width: 242px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto; /* pushes menu + button to right */
}
/* ================= DROPDOWN ================= */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Dropdown Box */
.dropdown-menu {
    position: absolute;
    top: 35px;
    left: 0;
    background: #ffffff;
    padding: 15px 0;
    border-radius: 10px;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: none;
    flex-direction: column;
}

.dropdown-menu a {
    padding: 10px 20px;
    font-size: 16px;
    color: #111;
    text-decoration: none;
    transition: 0.3s;
}

.dropdown-menu a:hover {
    background: #f4f4f4;
}

/* Show on hover (desktop only) */
@media (min-width: 993px) {
    .dropdown:hover .dropdown-menu {
        display: flex;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {

    .nav-links {
        display: none; /* Hide menu on tablet/mobile */
    }

    .list-btn {
        font-size: 14px;
        padding: 6px 14px;
    }

    .hero-thumbnails {
        bottom: 20px;
        right: 20px;
    }

    .thumb {
        width: 160px;
        height: 100px;
    }
}

@media (max-width: 600px) {

    .nav-container {
        padding: 10px 20px;
    }

    .logo img {
        height: 30px;
    }

    .thumb {
        width: 120px;
        height: 80px;
    }
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}
/* ================= HAMBURGER ================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: #111;
    transition: 0.3s ease;
}

/* Animate to X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {

    /* Center Logo */
    .logo {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
}
.logo img{
    width: 135px;
    height: auto;
}

    .nav-container{
        height: 59px;
    }
    /* Show Hamburger */
    .hamburger {
        display: flex;
        position: absolute;
        left: 32px;
    }

    /* Hide Desktop Menu */
    .nav-links {
        position: absolute;
        top: 59px; /* same as your navbar height */
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 30px 0;
        display: none;
        border-radius: 0 0 14px 14px;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    /* Optional: Hide button from desktop area */
    .list-btn {
        display: none;
    }
}

/* Slide animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nav Links style */
.nav-links a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    color: #111;
    transition: 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* Button */
.list-btn {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 20px;
    border: 1px solid #111;
    border-radius: 8px;
    text-decoration: none;
    color: #111;
    transition: 0.3s ease;
    margin-left: 20px; /* spacing between menu and button */
}

.list-btn:hover {
    background:rgba(0, 92, 93, 1);;
    color: #fff;
}



/* ================= BUY PAGE ================= */

.buy-page{
    padding:140px 0;
    background:#f5f5f5;
}

.buy-container{
    width:88%;
    max-width:1400px;
    margin:auto;
}


/* ================= HEADER ================= */

.buy-page-header{
    margin-bottom:40px;
}

.buy-page-title{
    font-family:"Clash Grotesk", sans-serif;
    font-weight:500;
    font-size:42px;
    line-height:100%;
}

.buy-page-count{
    font-family:"Clash Grotesk", sans-serif;
    font-size:18px;
    color:#666;
    margin-top:8px;
}


/* ================= FILTER BAR ================= */

.filter-bar{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:35px;
    flex-wrap:wrap;
}

.filter-bar input,
.filter-bar select{
    height:48px;
    padding:0 18px;
    border-radius:8px;
    border:1px solid #ddd;
    font-size:16px;
    font-family:"Clash Grotesk", sans-serif;
}

.filter-bar input{
    flex:1;
    min-width:260px;
}

.filter-btn{
    height:48px;
    padding:0 28px;
    border:none;
    border-radius:8px;
    background:rgba(0,92,93,1);
    color:#fff;
    font-family:"Clash Grotesk", sans-serif;
    font-size:16px;
    cursor:pointer;
}

.filter-btn:hover{
    opacity:0.9;
}


/* ================= RESULTS BAR ================= */

.results-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.view-options{
    display:flex;
    gap:10px;
}

.view-btn{
    padding:10px 20px;
    border-radius:6px;
    border:1px solid #ddd;
    background:#fff;
    font-size:14px;
    cursor:pointer;
}

.view-btn.active{
    background:rgba(0,92,93,1);
    color:#fff;
    border:none;
}

.sort{
    display:flex;
    align-items:center;
    gap:10px;
}

.sort select{
    height:40px;
    padding:0 12px;
    border-radius:6px;
    border:1px solid #ddd;
}


/* ================= PROPERTY GRID ================= */

.property-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}


/* ================= PROPERTY CARD ================= */

.property-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
}


/* CARD IMAGE */

.card-image{
    position:relative;
}

.card-image img{
    width:100%;
    height:260px;
    object-fit:cover;
}

/* badge */

.badge{
    position:absolute;
    top:15px;
    left:15px;
    background:rgba(0,0,0,0.6);
    color:#fff;
    padding:6px 12px;
    border-radius:6px;
    font-size:14px;
}

/* price */

.price-tag{
    position:absolute;
    bottom:15px;
    left:15px;
    background:rgba(0,0,0,0.7);
    color:#fff;
    padding:8px 14px;
    border-radius:6px;
    font-size:16px;
}


/* ================= CARD CONTENT ================= */

.card-content{
    padding:22px;
}

.card-title{
    font-family:"Clash Grotesk", sans-serif;
    font-weight:400;
    font-size:20px;
    line-height:24px;
    margin-bottom:14px;
    
}
.property-grid a{
    text-decoration: none;
    color: inherit;
}

/* LOCATION */

.card-location{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    color:#666;
    margin-bottom:14px;
}

.card-location img{
    width:16px;
}


/* META */

.card-meta{
    display:flex;
    align-items:center;
    gap:18px;
    font-size:14px;
    color:#333;
}

.meta{
    display:flex;
    align-items:center;
    gap:6px;
}

.meta img{
    width:16px;
}

html, body{
    overflow-x: hidden;
}
body{
    position: relative;
    overflow-x: hidden;
}
.owl-stage{
    overflow:hidden;
}
[data-aos]{
    will-change: transform, opacity;
}

/* ================= PAGINATION ================= */

.pagination{
    margin-top:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
}

.pagination button{
    padding:10px 18px;
    border-radius:6px;
    border:1px solid #ddd;
    background:#fff;
    cursor:pointer;
}

.page{
    padding:10px 16px;
    border-radius:6px;
    border:1px solid #ddd;
    cursor:pointer;
}

.page.active{
    background:rgba(0,92,93,1);
    color:#fff;
    border:none;
}


/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.property-grid{
    grid-template-columns:1fr;
}

.results-bar{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
}


}
@media (max-width:768px){

.filter-bar{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.filter-bar input{
    flex:1;
    height:56px;
}

.filter-btn{
    height:56px;
    white-space:nowrap;
}

.filter-bar select{
    flex:1 1 calc(25% - 10px);
}


}

/* ================= INSIGHTS ================= */

.insights-section{
    padding:120px 0;
    background:#f5f5f5;
}

.insights-container{
    width:88%;
    max-width:1400px;
    margin:auto;
}

/* Header */

.insights-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:60px;
}

.insights-title{
    font-family:"Clash Grotesk", sans-serif;
    font-weight:500;
    font-size:42px;
    line-height:100%;
    letter-spacing:0;
}

.insights-link{
    font-family:"Urbanist", sans-serif;
    font-size:16px;
    color:rgba(0,92,93,1);
    text-decoration:none;
}

/* Grid */

.insights-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

/* Card */

.insight-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
}

/* Image */

.insight-image img{
    width:100%;
    height:260px;
    object-fit:cover;
}

/* Content */

.insight-content{
    padding:20px;
}

/* Date */

.insight-date{
    font-family:"Clash Grotesk", sans-serif;
    font-weight:500;
    font-size:16px;
    line-height:24px;
    color:#777;
}

/* Text */

.insight-text{
    font-family:"Clash Grotesk", sans-serif;
    font-weight:400;
    font-size:20px;
    line-height:24px;
    margin:12px 0 18px 0;
}

/* Read more */

.read-more{
    font-family:"Urbanist", sans-serif;
    font-size:16px;
    color:rgba(0,92,93,1);
    text-decoration:none;
}
@media (max-width:992px){

.insights-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:768px){

.insights-grid{
    grid-template-columns:1fr;
}

.insights-title{
    font-size:32px;
}

.insight-text{
    font-size:18px;
}

}


/* lsitinf  */

/* ================= LIST PROPERTY SECTION ================= */

.list-property {
    background: rgba(0, 92, 93, 1);
    padding: 50px 0;
    color: #fff;
}

.list-container {
    width: 88%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* LEFT */

.list-left {
    flex: 1;
}

.list-heading {
    font-family: "Clash Grotesk", sans-serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.list-subtext {
    font-size: 18px;
    line-height: 27px;
    opacity: 0.9;
}

/* RIGHT FORM */

.list-form {
    flex: 1.2;
}

.list-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Inputs */

.list-form input,
.list-form textarea {
    width: 100%;
    padding: 16px 18px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.list-form input::placeholder,
.list-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.list-form textarea {
    height: 120px;
    resize: none;
}

/* Phone Field */

.phone-field {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    padding-left: 12px;
}

.phone-field input {
    border: none;
    padding-left: 10px;
}

.flag {
    font-size: 18px;
}

/* Two inputs in row */

.row-fields {
    display: flex;
    gap: 18px;
}

.row-fields input {
    flex: 1;
}

/* Checkbox */

.checkbox-field {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.checkbox-field input {
    width: 16px;
    height: 16px;
}

/* Button */

.submit-btn {
    margin-top: 10px;
    width: fit-content;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #fff;
    color: #0f5f58;
}

@media (max-width: 992px) {

    .list-container {
        flex-direction: column;
        gap: 50px;
    }

    .row-fields {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }
}






/* ================= FOOTER ================= */

/* ================= FOOTER ================= */
.footer {
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Background Image */
.footer-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Dark Overlay */
.footer-overlay {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.76);
    padding: 100px 0 50px 0;
}
.footer-container {
    width: 88%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px;
}

/* Columns */
.footer-col h4 {
    font-family: "Clash Grotesk", sans-serif;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    text-decoration: none;
    line-height: 24px;
}

.footer-col a:hover {
    color: #fff;
}

/* Logo + Social */
.footer-bottom-top {
    width: 88%;
    max-width: 1400px;
    margin: 80px auto 30px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 100px;
    /* width: 150px; */
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social img {
    width: 28px;
    cursor: pointer;
    opacity: 0.8;
}

.footer-social img:hover {
    opacity: 1;
}

/* Divider */
.footer-divider {
    width: 88%;
    max-width: 1400px;
    margin: auto;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 25px;
}

/* Bottom Bar */
.footer-bottom {
    width: 88%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-legal a:hover {
    color: #fff;
}
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .second-container,
    .container-related,
    .list-container,
    .footer-container,
    .footer-bottom,
    .footer-bottom-top {
        width: 92%;
    }
}