:root {
    --primary: #1a1e26;
    --accent: #4169E1;
    --text: #2d3436;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    background-color: #f5f5f5;
    overflow-x: hidden !important;
    width: 100%;
}


.nav-links.active {
    right: 0;
}

    
.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 60px;
    height: auto;
}

.logo span{
    margin-left: 5px;
}

.mobile-menu.active i::before {
        content: "\f00d";
}

header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo-text{
    margin-left: 10px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
}


@media (max-width: 1024px) {
    body.no-scroll {
        overflow: hidden !important; /* Prevents scrolling when menu is open */
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 70%;
        height: 100vh;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        backdrop-filter: blur(10px);
        justify-content: flex-start;
        gap: 2rem;
        align-items: center;
        overflow: hidden;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: var(--primary);
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu.active i::before {
        content: "\f00d"; /* FontAwesome X icon */
    }
}

@media (max-width: 400px) {
    .logo-text {
        margin-left: 4px;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary);
        text-decoration: none;
        font-family: 'Inter', sans-serif;
}

}   

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto; 
    padding: 2rem;
}

.subtitle {
    color: #4169E1 !important;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.title-section {
    max-width: 600px;
}

.title {
    color: #333 !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.description {
    color: #666;
    line-height: 1.6;
}

.filters {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    border: 1px solid #4169E1;
    background: none;
    color: #4169E1;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #4169E1;
    color: white;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.property-card {
    border-radius: 1rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.property-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.property-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.tag-popular {
    background: #ff4d4d;
}

.tag-new {
    background: #4169E1;
}

.tag-discounted {
    background: #00c853;
}

.property-content {
    padding: 1.5rem;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.property-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.property-address {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.property-features {
    display: flex;
    gap: 1.5rem;
    color: #666;
    font-size: 0.875rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon-property {
    width: 20px;
    height: 20px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .container {
        padding: 1rem;
    }

    .title {
        font-size: 2rem;
        font-weight: 800;
    }

    .header {
        flex-direction: column;
    }

    .filters {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: normal;
    }

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

    .property-image-container {
        height: 250px;
    }
}


.empty{
    height: 60px !important;
}

/* Our Team */


.our-team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.who-we-are {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-section {
    max-width: 600px;
}

.subtitle {
    color: #4169E1;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.features {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: #4169E1;
    flex-shrink: 0;
}

.feature-content h3 {
    color: #4169E1;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;
}

.image-section {
    position: relative;
    height: 600px;
}

.circular-text {
    position: absolute;
    top: -40px;
    right: -10px;
    width: 100px;
    height: 100px;
    animation: rotate 20s linear infinite;
    z-index: 2;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.image-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-container {
    position: absolute;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-1 {
    width: 100%;
    height: 80%;
    left: 0;
    top: 10%;
}

@media (max-width: 1024px) {
    .who-we-are {
        gap: 2rem;
    }

    .image-section {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .who-we-are {
        grid-template-columns: 1fr;
    }

    .content-section {
        max-width: 100%;
    }

    .image-section {
        height: 400px;
        margin-top: 2rem;
    }

    .title {
        font-size: 2rem;
    }
    .feature-card{
        padding: 20px;
        align-items: center;
        justify-items: center;
    }
    .feature-content h3{
        padding-top: 20px;
    }
}   

@media (max-width: 480px) {
    .our-team-container {
        padding: 2rem 1rem;
    }

    .image-section {
        height: 300px;
    }

    .circular-text {
        width: 100px;
        height: 100px;
        top: -20px;
        right: -20px;
    }
}

/* Cta */

.cta-section {
    padding: 5rem 1rem;
    background-color: var(--primary);
    color: #ffffff;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #27bd5e; /* WhatsApp green */
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #128C7E; /* Darker shade of WhatsApp green for hover */
    transform: translateY(-2px);
}

.whatsapp-icon {
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 3rem 1rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}