:root {
    --primary-dark: #0A2540;
    --primary-light: #1E5D88;
    --accent-gold: #D4AF37;
    --accent-green: #2E8B57;
    --neutral-light: #F8F9FA;
    --neutral-dark: #212529;
    --text-dark: #343A40;
    --text-light: #FFFFFF;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    background-color: var(--primary-dark);
    padding: 10px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 1.8rem;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    margin: 0 5px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-gold);
}



/* Main Banner */
.main-banner {
    margin-top: 60px;
    position: relative;
}

.banner-slide {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    display: flex;
    align-items: center;
}

.banner-content {
    color: var(--text-light);
    max-width: 600px;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.banner-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.banner-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
}





/* Calendar Section */
.calendar-section {
    background-color: var(--neutral-light);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.calendar-features {
    margin-bottom: 2rem;
}

.feature-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-item i {
    color: var(--accent-green);
    margin-right: 10px;
}



/* Property Cards - VERSIÓN COMPACTA */
.properties-section {
    background: var(--text-light);
    padding: 40px 0;
}

.property-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    background: white;
    margin-bottom: 25px;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.property-image {
    position: relative;
    height: 180px;
    /* Reducida de 250px */
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 4px 8px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.75rem;
}

.property-content {
    padding: 16px;
    /* Reducido de 20px */
}

.property-title {
    font-size: 1.1rem;
    /* Reducido de 1.3rem */
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.property-location {
    color: var(--primary-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.property-location i {
    margin-right: 5px;
    font-size: 0.9rem;
}

.property-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    font-size: 0.85rem;
}

.property-features span {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    flex-shrink: 0;
}

.property-features i {
    margin-right: 5px;
    color: var(--primary-light);
    font-size: 0.9rem;
}

.property-price {
    font-size: 1.25rem;
    /* Reducido de 1.5rem */
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 12px;
}

.property-actions {
    display: flex;
    justify-content: space-between;
}

.property-actions .btn {
    border-radius: 5px;
    padding: 6px 12px;
    font-size: 0.9rem;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .property-image {
        height: 160px;
    }

    .property-title {
        font-size: 1rem;
    }

    /* NUEVO: Características en una sola fila con scroll horizontal */
    .property-features {
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 15px;
        padding-bottom: 15px;
        margin-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .property-features::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

    .property-features span {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    /* Indicador visual de que hay más contenido */
    .property-features {
        position: relative;
    }

    .property-features::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 20px;
        background: linear-gradient(to right, transparent, white);
        pointer-events: none;
    }
}

/* Mejoras visuales adicionales */
.property-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.property-features span:nth-child(1) i {
    color: #3498db;
}

.property-features span:nth-child(2) i {
    color: #9b59b6;
}

.property-features span:nth-child(3) i {
    color: #e74c3c;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(10, 37, 64, 0.8), rgba(10, 37, 64, 0.8)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-banner .btn {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
}

/* Services Section */
.services-section {
    background: var(--neutral-light);
}

.service-card {
    padding: 30px;
    background: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-text {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.footer-text {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-gold);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0 20px;
}

.footer-bottom {
    text-align: center;
    opacity: 0.7;
}

/* Buttons */
.btn-primary {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 500;
}

.btn-primary:hover {
    background: #c19b2c;
    border-color: #c19b2c;
    color: var(--primary-dark);
}

.btn-outline-primary {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline-primary:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-outline-light:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}

/* Filters Offcanvas */
.offcanvas-header {
    background: var(--primary-dark);
    color: var(--text-light);
}

.offcanvas-title {
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .navbar-collapse {
        background: var(--primary-dark);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .search-form {
        margin-bottom: 15px;
    }

    .banner-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .banner-slide {
        height: 400px;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-text {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .property-features {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .banner-slide {
        height: 350px;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .banner-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .calendar-days div {
        padding: 5px;
    }
}

/* propiedades.css - Estilos específicos para la página de propiedades */

.properties-page {
    margin-top: 76px;
    padding: 30px 0;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--text-light);
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.filters-header h3 {
    color: var(--primary-dark);
    font-weight: 600;
    margin: 0;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group .form-label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

/* Properties Listing */
.properties-listing {
    padding-left: 30px;
}

.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.results-info h2 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 5px;
}

.results-info p {
    color: var(--text-dark);
    margin: 0;
}

.results-info span {
    font-weight: 600;
    color: var(--accent-gold);
}

.sort-options {
    min-width: 250px;
}



/* Pagination */
.pagination {
    margin-top: 40px;
}

.page-link {
    color: var(--primary-dark);
    border: 1px solid #dee2e6;
    padding: 0.5rem 0.75rem;
}

.page-link:hover {
    color: var(--primary-dark);
    background-color: var(--neutral-light);
    border-color: #dee2e6;
}

.page-item.active .page-link {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}

/* Filters Offcanvas for Mobile */
.offcanvas-start {
    width: 300px;
}

.offcanvas-header {
    background: var(--primary-dark);
    color: var(--text-light);
}

.offcanvas-title {
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .properties-listing {
        padding-left: 20px;
    }
}

@media (max-width: 991px) {
    .properties-listing {
        padding-left: 0;
    }

    .filters-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    .listing-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sort-options {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .properties-page {
        margin-top: 66px;
        padding: 20px 0;
    }

    .property-features {
        flex-direction: column;
        gap: 8px;
    }

    .property-actions .btn {
        padding: 10px 15px;
    }
}

@media (max-width: 575px) {
    .property-image {
        height: 200px;
    }

    .property-content {
        padding: 15px;
    }

    .property-title {
        font-size: 1.1rem;
    }

    .property-price {
        font-size: 1.3rem;
    }
}

/* nosotros.css - Estilos específicos para la página "Nosotros" */
/* Hero Section Modificado - Solo texto centrado */
.about-hero {
    margin-top: 0px;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    min-width: 150px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Responsive adjustments for the new hero */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-item {
        min-width: 130px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .about-hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-stats {
        gap: 25px;
    }

    .stat-item {
        min-width: 120px;
        padding: 15px;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 60px 0;
        margin-top: 66px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-item {
        min-width: calc(50% - 15px);
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 10px;
    }

    .stat-item {
        min-width: calc(50% - 10px);
        padding: 12px 8px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item {
        min-width: 100%;
    }
}

/* Mission and Vision */
.mission-vision {
    background-color: var(--neutral-light);
}

.mission-card,
.vision-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
}

.mission-card .card-body,
.vision-card .card-body {
    padding: 40px 30px;
    text-align: center;
}

.icon-container {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.mission-card .card-title,
.vision-card .card-title {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.mission-card .card-text,
.vision-card .card-text {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    background-color: var(--text-light);
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.section-subtitle {
    color: var(--text-dark);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.value-item:hover {
    background-color: var(--neutral-light);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.value-title {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.value-description {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background-color: var(--neutral-light);
}

.team-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    background: var(--text-light);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 37, 64, 0.8);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--text-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.25rem;
}

.team-position {
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-description {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--neutral-light);
}

.testimonial-card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    background: var(--text-light);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 25px;
}

.rating {
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    position: relative;
}

.testimonial-text:before {
    content: "";
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.2;
    position: absolute;
    top: -15px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.author-detail {
    color: var(--primary-light);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.9)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .about-hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .team-image {
        height: 240px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 40px 0;
        margin-top: 66px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat-item {
        flex: 0 0 calc(50% - 20px);
    }

    .mission-card .card-body,
    .vision-card .card-body {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 20px;
    }
}



/* contact.css - Estilos específicos para la página de contacto */

/* Hero Section */
.contact-hero {
    margin-top: 0px;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    text-align: center;
}


/* Contact Info Section */
.contact-info {
    background-color: var(--neutral-light);
}

.info-card {
    padding: 40px 30px;
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.info-title {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.info-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--text-light);
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    color: var(--primary-dark);
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.section-subtitle {
    color: var(--text-dark);
    font-size: 1.1rem;
    max-width: 300px;
    margin: 0 auto;
}

.contact-form {
    background: var(--neutral-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form .form-label {
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.2rem rgba(30, 93, 136, 0.25);
}

.contact-form .btn {
    border-radius: 10px;
    padding: 15px;
    font-weight: 400;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--neutral-light);
}

.accordion-button {
    background: var(--text-light);
    color: var(--primary-dark);
    font-weight: 400;
    padding: 20px;
    border: none;
    border-radius: 10px !important;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--text-light);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(30, 93, 136, 0.25);
    border-color: var(--primary-light);
}

.accordion-body {
    background: var(--text-light);
    border-radius: 0 0 10px 10px;
    padding: 20px;
    line-height: 1.6;
}

/* Map Section */
/*
.map-section {
    background-color: var(--text-light);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.placeholder-map {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    height: 100%;
}

.map-placeholder-content {
    text-align: center;
    padding: 40px;
}

.map-placeholder-content i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.map-placeholder-content h4 {
    margin-bottom: 15px;
    font-weight: 400;
}

.map-placeholder-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.office-hours {
    margin-top: 40px;
}

.office-hours h3 {
    color: var(--primary-dark);
    font-weight: 400;
}

.hours-table {
    background: var(--text-light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-row .day {
    font-weight: 400;
    color: var(--primary-dark);
}

.hour-row .time {
    color: var(--text-dark);
}
/*
/* CTA Section */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone {
    margin-bottom: 1.5rem;
}

.cta-phone i {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--accent-gold);
}

.phone-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--accent-gold);
}

.cta-note {
    opacity: 0.9;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .contact-hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .info-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px;
    }

    .phone-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 60px 0;
        margin-top: 66px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .phone-number {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .info-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .info-title {
        font-size: 1.3rem;
    }

    .hour-row {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .phone-number {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}


/* servicios.css - Estilos específicos para la página de servicios */

/* Hero Section */
.services-hero {
    margin-top: 0px;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    background-color: var(--neutral-light);
}

.service-card {
    background: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 37, 64, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1);
}

.service-content {
    padding: 30px;
}

.service-title {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-features i {
    color: var(--accent-green);
    width: 20px;
}

.service-actions {
    display: flex;
    gap: 15px;
}

.service-actions .btn {
    flex: 1;
}

/* Process Section */
.process-section {
    background-color: var(--text-light);
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.section-subtitle {
    color: var(--text-dark);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.process-step {
    padding: 30px 20px;
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-light);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 15px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.step-title {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.step-description {
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--text-light);
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}



/* CTA Section */
.services-cta {
    background: linear-gradient(rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.9)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    border-radius: 10px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
}



/* Responsive Styles */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .service-actions {
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    .services-hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .service-content {
        padding: 25px;
    }

    .process-step {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .services-hero {
        padding: 60px 0;
        margin-top: 66px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 20px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-actions .btn {
        padding: 10px 15px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .author-image {
        margin-right: 0;
    }
}


/* Estilos para las propiedades */
.property-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
}

.property-content {
    padding: 20px;
}

.property-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.property-location {
    color: #7f8c8d;
    margin-bottom: 15px;
}

.property-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #7f8c8d;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Estilos para el calendario */
.calendar-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.calendar-header {
    background-color: #2c3e50;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 200;
}

#calendar-input {
    width: 100%;
    padding: 15px;
    border: none;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-size: 1.1rem;
    color: #2c3e50;
}

.datepicker-container {
    padding: 15px;
    min-height: 100px;
}

.selected-date-info {
    padding: 15px;
    background-color: #ecf0f1;
    border-top: 1px solid #ddd;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.time-slot {
    padding: 8px 5px;
    background-color: #e9ecef;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.time-slot:hover {
    background-color: #d6d8db;
}

.time-slot.selected {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

.confirmation-btn {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background-color: var(--accent-gold);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.confirmation-btn:hover:not(:disabled) {
    background-color: var(--accent-gold);
}

.confirmation-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Estilos para Flatpickr */
.flatpickr-calendar {
    width: 100% !important;
    box-shadow: none !important;
    margin: 0 auto !important;
}

.flatpickr-days,
.flatpickr-weekdays,
.flatpickr-weekdaycontainer {
    width: 100% !important;
}

.flatpickr-day.selected {
    background: #3498db !important;
    border-color: #3498db !important;
}

@media (max-width: 992px) {
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}







/* ===== ESTILOS PARA DETALLES DE PROPIEDAD ===== */

/* Gallery Styles */
.property-gallery {
    margin-bottom: 30px;
}

.gallery-main {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.gallery-thumb {
    width: 100px;
    height: 75px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.gallery-thumb:hover, .gallery-thumb.active {
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Property Header */
.property-header {
    margin-bottom: 20px;
}





/* Property Details */
.property-details-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 30px;
}

.detail-section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-gold);
}

.property-feature {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--neutral-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
}

.feature-text {
    font-weight: 500;
}

.feature-value {
    font-weight: 600;
    color: var(--primary-dark);
}

.property-description {
    line-height: 1.7;
    color: var(--text-dark);
}

/* Contact Card */
.contact-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
}

.agent-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid var(--accent-gold);
}

.agent-name {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.agent-title {
    color: var(--primary-light);
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
}

.btn-call {
    background-color: var(--primary-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s;
    text-decoration: none;
}

.btn-call:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* Reviews Section */
.reviews-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 30px;
}

.review-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary-dark);
}

.review-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.review-rating {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.6;
}

.add-review-btn {
    margin-top: 20px;
}

/* Review Modal */
.rating-input {
    direction: rtl;
    text-align: center;
    margin-bottom: 20px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    color: #ddd;
    font-size: 2rem;
    padding: 0 5px;
    cursor: pointer;
    transition: color 0.3s;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: var(--accent-gold);
}

/* Similar Properties */
.similar-properties {
    margin-bottom: 50px;
}

.similar-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 25px;
    text-align: center;
}

/* Breadcrumb adjustments for property details */
.property-details-page .breadcrumb {
    
    margin-bottom: 30px;
}

/* Responsive Adjustments for Property Details */
@media (max-width: 768px) {
    .property-title {
        font-size: 1.8rem;
    }
    
    .property-price {
        font-size: 1.5rem;
    }
    
    .property-actions {
        flex-direction: column;
    }
    
    .property-features {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .gallery-main {
        height: 300px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .property-details-card,
    .contact-card,
    .reviews-section {
        padding: 20px;
    }
    
    .detail-section-title {
        font-size: 1.2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}





/* === Banner principal === */
.main-banner {
  width: 100%;
  overflow: hidden;
}

/* El Swiper ocupa todo el ancho */
.bannerSwiper {
  width: 100%;
  height: auto;
}

/* Cada slide se centra correctamente */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Contenedor del banner */
.banner-slide {
  position: relative;
  width: 100%;
  height: auto;
}

/* 🔥 La imagen se adapta sin recortes ni fondos extras */
.banner-image {
  width: 100%;
  height: auto;              /* Mantiene proporción original */
  object-fit: contain;       /* Muestra toda la imagen */
  display: block;
}

/* Overlay opcional, transparente */
.banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;      /* No bloquea clics sobre la imagen */
}

/* Si en el futuro quieres que tenga un fondo oscuro o degradado: */
/* .banner-overlay {
     background: rgba(0, 0, 0, 0.3);
   } */

/* === Responsividad === */
@media (max-width: 768px) {
  .banner-image {
    width: 100%;
    height: auto;
  }
}





