/* style.css - Updated */
*{
    /*width: auto;*/
}

header {
    background: #fff !important;
    border: 0px solid #e5e7eb;
}
:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    
    --color-background: #f5f1ed; /* Primary light brown/beige */
    --color-background-subtle: #ffffff; /* Alternative white background */
    --color-text-primary: #1A1A1A; /* Default primary text (often black or very dark gray) */
    --color-text-secondary: #767676; 
    --color-text-subtle: #999999;    
    --color-border: #E0E0E0; 
    --color-accent: #1A1A1A;        
    --color-accent-interactive: #505050; 

    --padding-global-x: 1.5rem; 
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-background); 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media (min-width: 768px) {
    :root { --padding-global-x: 2rem; }
}
@media (min-width: 1280px) {
    :root { --padding-global-x: 3rem; }
}

.container {
    width: 100%;
    max-width: 1280px; 
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--padding-global-x);
    padding-right: var(--padding-global-x);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400; 
    line-height: 1.3;
    margin-bottom: 1em; 
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
}

h1 { font-size: 2.5rem; } 
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; font-weight: 500; }

p {
    margin-bottom: 1.25rem;
    color: var(--color-text-secondary);
}

a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover, a:focus {
    color: var(--color-accent-interactive);
    text-decoration: underline;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

img.logo {
    width: 200px;
}

.site-header {
}
.main-navigation a {
    font-weight: 400; 
    letter-spacing: 0.025em; 
    font-size: 0.875rem; 
}
.main-navigation a.active {
    font-weight: 500;
}

.btn {
    display: inline-block;
    padding: 0.75em 1.5em;
    border-radius: 2px; 
    font-weight: 500;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    border: 1px solid transparent;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
}
.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-background-subtle); 
    border-color: var(--color-accent);
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--color-accent-interactive);
    border-color: var(--color-accent-interactive);
    color: var(--color-background-subtle);
    text-decoration: none;
}
.btn-secondary, .btn-outline {
    background-color: transparent;
    color: var(--color-accent);
    border-color: var(--color-border);
}
.btn-secondary:hover, .btn-secondary:focus,
.btn-outline:hover, .btn-outline:focus {
    background-color: var(--color-background-subtle); 
    border-color: var(--color-accent);
    color: var(--color-accent);
    text-decoration: none;
}

.property-card {
    background-color: transparent; 
    border: none; 
    margin-bottom: 2.5rem;
}
.property-card img.property-image {
    margin-bottom: 0.75rem; 
}
.property-card-content {
    padding: 0.25rem 0; 
}
.property-card h3 { 
    font-size: 1rem; 
    font-weight: 500; 
    margin-bottom: 0.25rem;
}
.property-card .price, .property-card .location {
    font-size: 0.875rem; 
    color: var(--color-text-secondary);
    margin-bottom: 0.25rem;
}
.property-card .property-specs {
    /* font-size: 0.8125rem; */
    /* color: var(--color-text-subtle); */
    /* gap: 0.25rem 0.75rem; */
    display: inline;
}
.property-card .property-specs li:not(:last-child)::before {
    content: '·';
    color: #1a1a1a;
    font-weight: bold;
    font-size: 18px;
}

.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.8125rem; 
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select { 
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 2px; 
    font-family: var(--font-primary);
    font-size: 0.9375rem; 
    background-color: var(--color-background-subtle); 
    color: var(--color-text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(26,26,26, 0.1); 
}
.form-group textarea {
    min-height: 100px;
}

/* Updated Footer Styles */
.site-footer {
    background-color: var(--color-text-primary); /* Black background */
    color: #A0AEC0; /* Lighter gray for general text, Tailwind's gray-500 */
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    font-size: 0.8125rem; 
    border-top: 1px solid #4A5568; /* Darker gray border, Tailwind's gray-700 */
}
.footer-column h4.footer-heading {
    font-size: 0.875rem; 
    color: var(--color-background-subtle); /* White text for headings */
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.footer-column ul li a {
    color: #CBD5E0; /* Slightly lighter gray for links, Tailwind's gray-400 */
}
.footer-column ul li a:hover,
.footer-column ul li a:focus { /* Added focus state for consistency */
    color: #FFF; /* White on hover/focus for links */
    text-decoration: underline;
}
.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.75rem; 
    color: #718096; /* Medium gray for copyright, Tailwind's gray-600 */
    border-top: 1px solid #4A5568; /* Darker gray border */
}
.footer-bottom .social-links a {
    color: #CBD5E0; /* Links in footer bottom */
}
.footer-bottom .social-links a:hover,
.footer-bottom .social-links a:focus { /* Added focus state for consistency */
    color: #FFF; /* White on hover/focus */
}


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

.prose {
}
.prose h1, .prose h2, .prose h3, .prose h4 {
}
.prose a {
}
.prose strong {
}
.prose ul {
    list-style-type: disc;
    padding-left: 1.5em; 
    margin-bottom: 1.25rem;
}
.prose ol {
    list-style-type: decimal;
    padding-left: 1.5em; 
    margin-bottom: 1.25rem;
}
.prose li {
    margin-bottom: 0.5em;
    padding-left: 0.5em;
}
.prose ul, .prose ol, .prose li {
    color: var(--color-text-secondary);
}


/* WhatsApp Floating Icon Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366; 
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px; 
    box-shadow: 2px 2px 6px rgba(0,0,0,0.25);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1DA851; 
    color: #FFF; 
    text-decoration: none; 
}

.whatsapp-float svg {
    width: 32px; 
    height: 32px;
    fill: currentColor; 
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}


/* Custom styles for Swiper navigation arrows */
.reviews-swiper .swiper-button-next,
.reviews-swiper .swiper-button-prev {
    color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    transition: background-color 0.2s ease;
}

.reviews-swiper .swiper-button-next:hover,
.reviews-swiper .swiper-button-prev:hover {
    background-color: #ffffff;
}

.reviews-swiper .swiper-button-next:after,
.reviews-swiper .swiper-button-prev:after {
    font-size: 1.25rem; /* 20px */
    font-weight: 900;
}
