:root {
    --primary-color: #FFD700;
    --text-color: #000000;
    --background-color: #FFFFFF;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --accent-gray: #f9f9f9;
    --shadow: rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

nav {
    position: fixed;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--shadow);
    background-color: var(--background-color);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links a {
    margin-left: 2.5rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

header {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--background-color);
}

.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 1));
}

.hero {
    z-index: 1;
    padding: 2rem;
}

.hero p{
    color: white;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 2);
}

h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 2);
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
}

h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 2px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: #FFE44D;
}

section {
    padding: 7rem 2rem;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.property-card {
    background: var(--background-color);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.4s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow);
}

.property-image {
    height: 300px;
    overflow: hidden;
}

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

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

.property-info {
    padding: 2rem;
}

.property-info h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.8rem;
}

.property-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.property-cta {
    display: flex;
    gap: 150px;
    align-items: center;
    text-align: center;
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-color);
    margin-top: 1.5rem;
    font-family: var(--font-heading);
}

.services {
    background-color: var(--accent-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--background-color);
    border-radius: 2px;
    box-shadow: 0 2px 15px var(--shadow);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 25px var(--shadow);
}

.service-card h3 {
    margin-bottom: 0.95rem;
    font-size: 1.8rem;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

.stats {
    background-color: var(--primary-color);
    color: var(--text-color);
    text-align: center;
    padding: 5rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 7rem 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.about-text {
    text-align: left;
    color: var(--text-color);
}

.about-text p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 2px;
}

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

.about-image:hover img {
    transform: scale(1.05);
}

.about-image.tall {
    grid-row: span 2;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 6rem;
    text-align: center;
}

.value-item {
    padding: 2rem;
    background: var(--background-color);
    border-radius: 2px;
    box-shadow: 0 2px 15px var(--shadow);
    transition: all 0.4s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 25px var(--shadow);
}

.value-item h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.value-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

.contact {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    font-size: 1.1rem;
}

.whatsapp-button {
    position: fixed;
    bottom: 39px;
    right: 20px;
    margin-right:80px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    z-index: 1000;
    outline: none; 
    width: 56px;
    height: 56px; 
    min-width: 56px; 
    min-height: 56px; 
    overflow: hidden; 
    padding: 0; 
    vertical-align: middle; 
    color: #fff; 
    background-color: #25D366; 
    border-color: #22c38e; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.2);
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
}

footer {
    background: var(--background-color);
    color: var(--text-color);
    padding: 4rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
}

.instagram-icon {
    font-size: 32px;
    color: var(--text-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.instagram-icon:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 1.5rem;
    }

    .footer-links a {
        margin: 0 1rem;
    }
}


@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        text-align: center;
    }

    .about-images {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
    }

    .nav-links a {
        margin: 0 1rem;
        font-size: 0.85rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    section {
        padding: 5rem 1.5rem;
    }

    .hero {
        margin-top: 80px;
    }

    .property-card {
        margin: 0 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 2rem;
    }

    .footer-links a {
        margin: 0 1rem;
        font-size: 0.85rem;
    }

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

@media (max-width: 576px) {
    .about-images {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 250px;
    }

    .about-image.tall {
        grid-row: auto;
    }
}