* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222222;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #FFFFFF;
    border-bottom: 1px solid #efefef;
    height: 90px;
}

.navbar-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-left .logo {
    font-size: 20px;
    font-weight: 600;
    color: #222222;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #222222;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #179BD7;
}

.account-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #222222;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
}

.hero-content h1 {
    color: #FFFFFF;
    font-size: 60px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.cta-btn {
    background: #179BD7;
    color: #FFFFFF;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #127ab0;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: #FFFFFF;
}

.progress-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.progress-bar {
    width: 0;
    height: 100%;
    background: #179BD7;
    transition: width 0.1s linear;
}

/* Search Section */
.search-section {
    background: #FFFFFF;
    padding: 100px 0;
    text-align: center;
}

.search-heading {
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 15px;
}

.search-subheading {
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
}

.search-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.search-input {
    padding: 15px 20px;
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    font-size: 16px;
    min-width: 300px;
}

.advanced-btn {
    padding: 15px 25px;
    border: 1px solid #E5E5E5;
    background: #FFFFFF;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.advanced-btn:hover {
    border-color: #179BD7;
    color: #179BD7;
}

.search-btn {
    padding: 15px 30px;
    background: #179BD7;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #127ab0;
}

/* Properties Section */
.properties-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.properties-section.light-gray {
    background: #F5F5F5;
}

.section-title {
    font-size: 52px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666666;
    font-size: 16px;
    margin-bottom: 50px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.property-card {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFFFFF;
}

.badge.freehold {
    background: #179BD7;
}

.badge.featured {
    background: #FF6B6B;
}

.badge.leasehold {
    background: #4ECDC4;
}

.badge.brandnew {
    background: #FFE66D;
    color: #222222;
}

.property-content {
    padding: 25px;
}

.property-name {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
}

.property-location {
    color: #666666;
    font-size: 14px;
    margin-bottom: 5px;
}

.property-id {
    color: #666666;
    font-size: 14px;
    margin-bottom: 15px;
}

.property-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666666;
    font-size: 14px;
}

.property-price {
    font-size: 20px;
    font-weight: 700;
    color: #222222;
}

.view-all-btn-container {
    text-align: center;
}

.view-all-btn {
    background: #179BD7;
    color: #FFFFFF;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.view-all-btn:hover {
    background: #127ab0;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.service-item {
    text-align: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #179BD7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    color: #FFFFFF;
    font-size: 30px;
}

.service-item h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 14px;
    color: #666666;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.why-choose-item {
    text-align: center;
}

.why-icon {
    margin-bottom: 20px;
}

.why-icon i {
    font-size: 60px;
    color: #CCCCCC;
}

.why-choose-item h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.why-choose-item p {
    font-size: 16px;
    color: #666666;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 100px 0;
    background: #FFFFFF;
    text-align: center;
}

.contact-cta-btn {
    background: #179BD7;
    color: #FFFFFF;
    border: none;
    padding: 20px 50px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-cta-btn:hover {
    background: #127ab0;
}

/* Footer */
.footer {
    background: #F3F3F3;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
}

.footer-col a {
    display: block;
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #179BD7;
}

.footer-subtitle {
    margin-top: 20px !important;
}

.contact-info {
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #179BD7;
    color: #FFFFFF;
}

.bottom-footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #E5E5E5;
    margin-top: 50px;
}

.bottom-footer p {
    font-size: 14px;
    color: #666666;
}

/* Responsive */
@media (max-width: 992px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .navbar-right {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero {
        height: 450px;
    }

    .hero-content {
        left: 5%;
        right: 5%;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .search-row {
        flex-direction: column;
        align-items: center;
    }

    .search-input {
        width: 100%;
        max-width: 400px;
    }

    .advanced-btn,
    .search-btn {
        width: 100%;
        max-width: 400px;
    }
}