:root {
    --red: #c62828;
    --blue: #0d47a1;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --gray: #334155;
    --light-gray: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray);
    line-height: 1.5;
    background: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}
.logo h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--blue);
}
.logo h1 span {
    color: var(--red);
}
.tagline {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--gray);
}
nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}
nav a {
    text-decoration: none;
    font-weight: 600;
    color: var(--gray);
    transition: 0.2s;
}
nav a:hover, nav a.active {
    color: var(--red);
}
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    background-image: 
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
        url('../images/banner.webp');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    padding: 4rem 0 3rem;
}


.hero-content {
    max-width: 700px;
}
.hero-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}
.hero h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.highlight {
    color: #ffb74d;
}
.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}
.btn-primary {
    background: var(--red);
    color: white;
    border: none;
}
.btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}
.btn-outline {
    border: 2px solid white;
    color: white;
    margin-left: 1rem;
}
.btn-outline:hover {
    background: white;
    color: var(--blue);
}
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}
.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}
.section-tag {
    color: var(--red);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.section-header h3 {
    font-size: 2.2rem;
    color: var(--blue);
    margin: 0.5rem 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    transition: 0.25s;
    border: 1px solid var(--light-gray);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
    border-color: var(--red);
}
.service-icon {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1rem;
}
.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--blue);
}
.learn-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
}

/* Why Us */
.why-us {
    background: var(--light-bg);
    padding: 4rem 0;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.checklist {
    list-style: none;
    margin: 1.5rem 0;
}
.checklist li {
    margin-bottom: 0.75rem;
}
.checklist i {
    color: var(--red);
    margin-right: 0.5rem;
}
.why-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.1);
}

/* CTA */
.cta {
    padding: 4rem 0;
}
.cta-card {
    background: linear-gradient(120deg, var(--blue), #0a3b6e);
    color: white;
    padding: 3rem;
    text-align: center;
    border-radius: 2rem;
}
.cta-card h3 {
    font-size: 2rem;
}
.btn-large {
    margin-top: 1rem;
    padding: 1rem 2.5rem;
}

/* Footer */
footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 3rem 0 1rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
}
.socials a {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.2rem;
}
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #1e293b;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        gap: 1rem;
        background: white;
        position: absolute;
        top: 70px;
        right: 0;
        width: 40%;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    nav ul.show {
        display: flex;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .why-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    .service-block {
        flex-direction: column;
    }
}



.mission-vision {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap; /* makes it responsive */
}

.mission-vision > div {
    flex: 1;
    min-width: 280px;
    background: skyblue;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

/* Hover effect */
.mission-vision > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Icons */
.mission-vision i {
    font-size: 28px;
    color: #2a7f62; /* adjust to your theme */
    margin-bottom: 10px;
}

/* Titles */
.mission-vision h4 {
    margin: 10px 0;
    font-size: 20px;
    font-weight: 600;
}

/* Text */
.mission-vision p {
    font-size: 15px;
    color: black;
}



.story-grid {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Lightbox Card */
.lightbox-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* Hover effect */
.lightbox-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Section tag */
.section-tag {
    display: inline-block;
    background: #e6f4ea;
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 10px;
}

/* Typography */
.lightbox-card h3 {
    margin-bottom: 15px;
    font-size: 26px;
}

.lightbox-card p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}



.core-values {
    padding: 60px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

/* Grid: 4 columns */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card (Lightbox style) */
.value-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-align: center;
}

/* Hover effect */
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

/* Title */
.value-card h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #2e7d32;
}

/* Text */
.value-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}


.team-section{
    padding:60px 0;
    background:#f9f9f9;
    text-align:center;
}

.section-header h2{
    font-size:28px;
    margin-bottom:10px;
}

.section-header p{
    color:#666;
    margin-bottom:40px;
}

.team-grid{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.team-card{
    background:#fff;
    padding:25px 20px;
    border-radius:10px;
    width:300px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.team-card:hover{
    transform:translateY(-8px);
}

.team-card img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

.team-card h3{
    margin:10px 0 5px;
}

.team-card .title{
    display:block;
    color:#007bff;
    font-weight:600;
    margin-bottom:10px;
}

.team-card p{
    font-size:14px;
    color:#555;
}


.management-section{
    padding:60px 0;
    background:#f9f9f9;
}

.management-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:30px;
}

.management-card{
    background:#fff;
    padding:30px 25px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.management-card:hover{
    transform:translateY(-8px);
}

.management-card h3{
    margin-bottom:15px;
    color:#007bff;
}

.management-card p{
    color:#555;
    font-size:15px;
    line-height:1.6;
}

/* Responsive */
@media(max-width:768px){
    .management-grid{
        grid-template-columns:1fr;
    }
}


.services-detailed {
    padding: 60px 0;
    background: #f8f9fb;
}

.service-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box.reverse {
    flex-direction: row-reverse;
}

.box-text {
    flex: 1;
}

.box-text h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.box-text p {
    margin-bottom: 15px;
    color: #555;
}

.box-text ul {
    padding-left: 20px;
}

.box-text ul li {
    margin-bottom: 8px;
}

.box-img {
    flex: 1;
}

.box-img img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .service-box,
    .service-box.reverse {
        flex-direction: column;
    }
}



/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    color: red;
}

/* Lightbox Grid */
.lightbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Exactly 2 columns on PC */
    gap: 20px;
}

/* Stack to 1 column on smaller screens */
@media (max-width: 768px) {
    .lightbox-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.why-card h3 {
    margin-bottom: 15px;
    color: #0056b3;
}

.why-card p {
    line-height: 1.6;
    color: #555;
}



/* FAQs Section */
.faqs {
    padding: 60px 20px;
    background-color: #f5f8fa;
}

.faqs h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    color: #222;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on PC */
    gap: 20px;
}

/* Stack to 1 column on smaller screens */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Individual FAQ boxes */
.faq {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.faq h3 {
    margin-bottom: 12px;
    color: #0056b3;
    font-size: 1.1em;
}

.faq p {
    line-height: 1.6;
    color: #555;
}



.page-hero.contact-hero {
    background: #0056b3;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.page-hero.contact-hero h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.page-hero.contact-hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.contact-info-box h3 {
    margin-bottom: 20px;
    color: #0056b3;
}

.contact-info-box p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    margin-bottom: 12px;
    font-size: 0.95em;
}

.contact-details li i {
    color: #0056b3;
    margin-right: 10px;
}

.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.contact-form-box h3 {
    margin-bottom: 20px;
    color: #0056b3;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
}

.btn-submit {
    background-color: #0056b3;
    color: #fff;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background-color: #004494;
}


.top-bar {
    background: #0d47a1; /* dark blue */
    color: #fff;
    font-size: 0.9rem;
    padding: 6px 0;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-left span {
    margin-right: 15px;
}

.contact-right a {
    color: #fff;
    margin-left: 10px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.contact-right a:hover {
    color: #ffcc00;
}
@media (max-width: 768px) {
    .top-bar-flex {
        display: flex;
        flex-direction: row;        /* ðŸ‘ˆ keep horizontal */
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;          /* ðŸ‘ˆ prevent breaking into lines */
        gap: 10px;
    }

    .contact-left {
        display: flex;
        gap: 10px;
        flex-wrap: nowrap;          /* ðŸ‘ˆ keep phone + email in one line */
        font-size: 0.65rem;          /* ðŸ‘ˆ shrink text for fit */
    }

    .contact-left span {
        white-space: nowrap;        /* ðŸ‘ˆ prevent text breaking */
    }

    .contact-right {
        display: flex;
        gap: 8px;
    }
}


/* Section styling */
.clients-section {
    padding: 4rem 0;
    background: #f8f9fa;  /* light background */
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #0d47a1;       /* match your branding */
}

/* Grid layout */
.clients-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Individual card */
.client-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.client-card:hover {
    transform: translateY(-5px);
}

/* Left column: image + description */
.client-left {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.client-left img {
    max-width: 150px;
    border-radius: 8px;
    object-fit: cover;
}

/* Right column: message */
.client-right {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.client-message {
    font-style: italic;
    font-size: 1rem;
    color: #333;
}

@media (max-width: 768px) {
    .client-card {
        flex-direction: column;
        text-align: center;
    }
    .client-left, .client-right {
        align-items: center;
    }
}




.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.contact-info-box h3 {
    margin-bottom: 20px;
    color: #0056b3;
    font-size: 0.9rem;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    margin-bottom: 10px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details li i {
    color: #c62828; /* red icons for visibility */
    font-size: 0.9rem;
}

.contact-details a {
    color: #0056b3;
    text-decoration: none;
    transition: 0.2s;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


.property-section {
    padding: 60px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #0d47a1;
}

/* GRID: 3 columns */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD (Lightbox style) */
.property-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* IMAGE */
.property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* INFO */
.property-info {
    padding: 15px;
}

.property-info h3 {
    margin-bottom: 8px;
    color: #334155;
}

.property-info p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 5px;
}

.property-info .price {
    font-weight: bold;
    color: #c62828;
    margin-top: 10px;
}

/* 📱 RESPONSIVE */
@media (max-width: 992px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .property-grid {
        grid-template-columns: 1fr;
    }
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f8fafc;
}

/* SECTION */
.property-section {
    padding: 50px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #0d47a1;
}

/* GRID */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.property-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.property-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.property-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
}

/* INFO */
.property-info {
    padding: 15px;
}

.property-info h3 {
    margin: 5px 0;
}

.property-info p {
    font-size: 14px;
    color: #555;
}

.price {
    color: #c62828;
    font-weight: bold;
}

/* WHATSAPP */
.whatsapp-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: #25d366;
    color: white;
    border-radius: 6px;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.lightbox-content {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}

/* RESPONSIVE */
@media(max-width: 900px){
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .property-grid {
        grid-template-columns: 1fr;
    }
}


body {
            font-family: Arial, sans-serif;
            margin: 0;
            background: #f9f9f9;
        }

        .section-title {
            text-align: center;
            margin: 30px 0;
        }

        .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            padding: 20px;
        }

        .property-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .property-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            cursor: pointer;
        }

        .property-info {
            padding: 15px;
        }

        .price {
            color: green;
            font-weight: bold;
        }

        .whatsapp-btn {
            display: inline-block;
            margin-top: 10px;
            background: #25D366;
            color: #fff;
            padding: 8px 12px;
            text-decoration: none;
            border-radius: 5px;
        }

        /* LIGHTBOX */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 999;
            padding-top: 60px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
        }

        .lightbox img {
            display: block;
            margin: auto;
            max-width: 90%;
            max-height: 80vh;
        }

        .close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #fff;
            font-size: 40px;
            cursor: pointer;
        }
        
        
        
.property-section {
  padding: 40px 20px;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  color: #c62828;
}

.property-slider {
  overflow: hidden;
  position: relative;
}

.property-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.property-card {
  min-width: 300px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s;
}

.property-card:hover {
  transform: scale(1.05);
}

.property-img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.property-info {
  padding: 15px;
}

.price {
  font-weight: bold;
  margin-top: 5px;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  background: #25d366;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}



.map-full {
    width: 100vw;          /* full viewport width */
    margin-left: calc(-50vw + 50%); /* breaks out of container */
}

.map-full iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}