/* ===== CORONEL FERNANDEZ REAL ESTATE - MAIN STYLES ===== */

/* Variables CSS */
:root {
    /* Paleta de colores premium */
    --primary-gold: #A8C6E7;
    --secondary-gold: #D6E5F5;
    --light-gold: #F0F6FC;
    --dark-gray: #2C2C2C;
    --medium-gray: #666666;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Tipografía */
    --font-primary: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    
    /* Bordes */
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #1a202c;
    letter-spacing: -0.025em;
}

/* Aplicación específica de Montserrat para elementos destacados */
.btn, .nav-link, .logo, .hero-title, .section-title, .property-title, .development-title {
    font-family: 'Montserrat', var(--font-secondary);
    font-weight: 600;
}

/* Aplicación específica de Roboto para texto del cuerpo */
body, p, .lead, .property-description, .form-control, .card-text {
    font-family: 'Roboto', var(--font-primary);
}

/* Optimizaciones de tipografía */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Mejoras específicas para Montserrat en títulos */
h1, h2, h3 {
    font-family: 'Montserrat', var(--font-secondary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Mejoras específicas para Roboto en párrafos */
p, .lead {
    font-family: 'Roboto', var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
}

h1 {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.75;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: #718096;
    line-height: 1.8;
}

/* Utilidades */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-md);
}

.text-center { text-align: center; }
.text-gold { color: var(--primary-gold); }
.bg-gold { background-color: var(--primary-gold); }
.bg-light-gold { background-color: var(--light-gold); }

/* Colores de fondo específicos para secciones */
/* Nuestras propiedades destacadas y filtros - #F8F8F8 */
.search-section,
#propiedades {
    background-color: #F8F8F8 !important;
}

/* Área de desarrollo - #FFFFFF */
#desarrollos {
    background-color: #FFFFFF !important;
}

/* Sección "Contá con nosotros" - #A8C6E7 */
.contact-professionals-section {
    background-color: #A8C6E7 !important;
}

/* Sección "¿Tenés una propiedad a la venta?" - #597DB7 */
.cta-section {
    background-color: #597DB7 !important;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    line-height: 1.5;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #A8C6E7, #8BB4DB);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(168, 198, 231, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8BB4DB, #6EA2CF);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168, 198, 231, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
}

.btn-white {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
    border-radius: 8px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
    border-radius: 14px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 2rem;
    width: 100%;
    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex: 0 0 auto;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
}

.user-icon {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #2c3e50;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.user-icon:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background: url('/static/images/hero.jpg') center/cover no-repeat;
    color: #FFFFFF;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.05) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    line-height: 1.1;
    color: #FFFFFF;
}

.hero-title-highlight {
    color: #BFD1E8;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 1;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

.hero-actions .btn {
    padding: 18px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 1rem;
    border: 2px solid transparent;
    position: relative;
    z-index: 10;
    cursor: pointer;
    text-decoration: none;
}

.hero-actions .btn-primary {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
}

.hero-actions .btn-primary:hover {
    background: #8BB4DB;
    border-color: #8BB4DB;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 198, 231, 0.4);
}

.hero-actions .btn-secondary {
    background: white;
    border-color: white;
    color: #2c3e50;
}

.hero-actions .btn-secondary:hover {
    background: #f8f9fa;
    border-color: #f8f9fa;
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Search Section */
.search-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.search-widget {
    background: white;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.search-tabs .nav-tabs {
    border-bottom: none;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
}

.search-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
}

.search-tabs .nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    background: transparent;
    color: #6c757d;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 25px;
    transition: all 0.3s ease;
}

.search-tabs .nav-tabs .nav-link:hover {
    border-color: transparent;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
}

.search-tabs .nav-tabs .nav-link.active {
    background: white;
    color: var(--primary-gold);
    border-color: transparent;
    position: relative;
}

.search-tabs .nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gold);
}

.search-tabs .tab-content {
    padding: var(--spacing-xl);
    background: white;
}

.search-form .row {
    align-items: end;
}

.search-form .form-control,
.search-form .form-select {
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    height: 48px;
}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

.search-form .btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 48px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--dark-gray);
}

.form-control {
    padding: var(--spacing-sm);
    border: 2px solid #E5E5E5;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
}

/* Secciones */
.section {
    padding: clamp(60px, 8vw, 120px) 0;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 80px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: "Poppins", Sans-serif;
    font-size: 35px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1a202c;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #718096;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Properties Carousel */
.properties-carousel-container {
    position: relative;
    margin-top: 2rem;
}

.properties-carousel {
    overflow: hidden;
    border-radius: 16px;
}

.properties-grid {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1rem;
}

.property-card {
    flex: 0 0 350px;
    min-width: 350px;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #2c3e50;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

.carousel-btn:disabled:hover {
    transform: translateY(-50%) scale(0.9);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #A8C6E7;
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background: #a0aec0;
    transform: scale(1.1);
}

/* Responsive Design for Carousel */
@media (max-width: 768px) {
    .properties-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .property-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn-prev {
        left: -20px;
    }
    
    .carousel-btn-next {
        right: -20px;
    }
}

/* Tarjetas de propiedades */

.property-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Property badges at the top */
.property-badges-top {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    z-index: 2;
    flex-wrap: wrap;
}

.property-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-featured {
    background: #8BC34A;
    color: white;
}

.badge-type {
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

.badge-opportunity {
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

/* Property action buttons at the bottom right */
.property-actions-top {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 3;
    align-items: center;
}

.property-action-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.property-action-btn:hover {
    background: var(--primary-gold);
    color: white;
    transform: scale(1.1);
}

/* Property price overlay at the bottom */
.property-price-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.property-price-amount {
    font-size: 1rem;
    font-weight: 700;
}

/* Ocultamos solo el botón de favoritos antiguo que no está en property-actions-top */
.property-card .property-favorite:not(.property-action-btn) {
    display: none;
}

/* Aseguramos que el botón de favoritos dentro de property-actions-top sea visible */
.property-actions-top .property-favorite {
    display: flex;
}

.property-favorite:hover {
    background: var(--primary-gold);
    color: white;
    transform: scale(1.1);
}

.property-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 40px 20px 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
}

.property-card:hover .property-overlay {
    transform: translateY(0);
}

.property-content {
    padding: 1.5rem;
}

/* New property content styles */
.property-info-row {
    margin-bottom: 1rem;
    line-height: 1.4;
}

.property-rooms {
    font-weight: 600;
    color: var(--dark-gray);
}

.property-type-text {
    color: var(--dark-gray);
}

.property-location-text {
    color: var(--dark-gray);
}

.property-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.property-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--medium-gray);
    font-size: 0.85rem;
    line-height: 1.4;
}

.property-address i {
    color: var(--primary-gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.property-features {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
}

.property-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-gray);
    font-size: 0.85rem;
}

.property-features .feature i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.property-features .feature span {
    font-weight: 600;
    color: var(--dark-gray);
}

.property-type-badge {
    align-self: flex-start;
    background: var(--light-gray);
    color: var(--medium-gray);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.property-type {
    background: var(--light-gray);
    color: var(--medium-gray);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.property-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.property-location {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.property-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: var(--medium-gray);
    font-size: 0.85rem;
}

.property-features .feature i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.property-features .feature span {
    font-weight: 600;
    color: var(--dark-gray);
}

.property-footer {
    display: flex;
    gap: 0.75rem;
}

.property-footer .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-white {
    background: white;
    color: var(--dark-gray);
    border: 2px solid white;
}

.btn-white:hover {
    background: var(--primary-gold);
    color: white;
    border-color: var(--primary-gold);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--medium-gray);
    font-size: 0.875rem;
}

.property-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.amenity-tag {
    background-color: var(--light-gold);
    color: var(--dark-gray);
    padding: 2px var(--spacing-xs);
    border-radius: var(--border-radius);
    font-size: 0.75rem;
}

/* Carrusel */
.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.carousel-btn {
    background-color: var(--white);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: var(--primary-gold);
    color: var(--white);
}

/* Sección Sobre Nosotros */
.about-section {
    background-color: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.team-member {
    text-align: center;
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--light-gold);
    margin: 0 auto var(--spacing-md);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.pillar {
    text-align: center;
    padding: var(--spacing-lg);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

/* Formulario de contacto */
.contact-form {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-section {
    text-align: left;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: left;
}

/* Specific styling for the contact section in footer */
.footer-section .contact-info {
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
}

.footer-section .contact-info p:first-child {
    margin-top: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #cccccc;
}

/* Footer contact info - white text */
.footer .contact-info p {
    color: #ffffff;
    margin: 2px 0;
    font-size: 0.95rem;
}

/* Main contact section - black text */
.section .contact-info p {
    color: #333333;
    margin: 2px 0;
    font-size: 0.95rem;
}

.footer-social {
    text-align: center;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a:hover {
    color: #cccccc;
}

.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    color: #ffffff;
    font-size: 0.85rem;
    border-top: none;
    padding-top: 0;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .footer-logo-img {
        height: 40px;
    }
}

/* WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* Modales */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--medium-gray);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: transparent;
}

.about-section .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
    max-width: none;
}

.about-section .row {
    min-height: 600px;
}

.about-image-main {
    height: 100%;
    display: flex;
    align-items: center;
}

.about-image-main img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.about-content-wrapper {
    padding-left: 30px;
    padding-right: 20px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
}

.about-image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: auto;
}

.about-image-secondary img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.about-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #8FA7DB;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: left;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: left;
    max-width: 400px;
}

.about-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
}

.about-highlight {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
}

/* Services Grid */
.services-grid {
    margin-top: 80px;
}

.services-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    height: 100%;
    min-height: 400px;
}

.services-center-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    height: 100%;
    min-height: 400px;
}

.services-center-image img {
    max-width: 60%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.service-item {
    text-align: center;
    padding: 25px 15px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}



/* CTA Section */
.cta-section {
    background: #597DB7;
    color: white;
    overflow: hidden;
}

.cta-header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 40px 0;
}

.cta-header-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.cta-header-services {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    text-align: right;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.cta-content {
    padding: 80px 0;
}

.cta-text {
    padding-right: 40px;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
}

.btn-white {
    background-color: white;
    color: #2c3e50;
    border: 2px solid white;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: transparent;
    color: white !important;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-cta {
    color: #2c3e50 !important;
    text-decoration: none !important;
}

.btn-cta:hover {
    color: white !important;
    text-decoration: none !important;
}

.cta-image {
    text-align: center;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Contact Professionals Section */
.contact-professionals-section {
    background: #A8C6E7 !important;
    padding: 80px 0;
    color: #000000;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-logo {
    margin-bottom: 30px;
}

.logo-solo {
    height: 60px;
    width: auto;
}

.contact-title {
    font-size: 2rem;
    font-weight: 400;
    color: #000000;
    margin: 0;
    letter-spacing: 1px;
}

.contact-title strong {
    font-weight: 700;
    color: #000000;
}

.professionals-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.professional-card {
    background: transparent;
    padding: 40px 30px;
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    transition: none;
}

.professional-card:hover {
    transform: none;
    box-shadow: none;
}

.professional-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.professional-credentials {
    margin-bottom: 25px;
}

.professional-credentials p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.4;
}

.professional-credentials strong {
    font-weight: 600;
    color: #000000;
}

.professional-description {
    border-top: none;
    padding-top: 20px;
}

.professional-description p {
    color: #000000;
}

/* Contact Banner Styles */
.contact-banner {
    margin: 0;
    padding: 40px 20px;
    background: white;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.contact-banner-content {
    text-align: center;
}

.contact-banner-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

.contact-banner-title .highlight {
    color: #27ae60;
    font-weight: 700;
}

@media (max-width: 768px) {
    .contact-banner {
        padding: 30px 15px;
    }
    
    .contact-banner-title {
        font-size: 1.2rem;
    }
}

.professional-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

/* New Contact Section Styles */
.contact-info {
    padding: 40px 30px;
    text-align: center;
}

.contact-logo-img {
    max-width: 250px;
    height: auto;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 10px;
}

.contact-email,
.contact-phone,
.contact-address {
    font-size: 0.95rem;
    color: #333 !important;
    margin: 0;
    line-height: 1.5;
}

.contact-address {
    margin-top: 5px;
}

.contact-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #555;
    color: white;
    text-decoration: none;
}

.contact-form-new {
    padding: 40px 30px;
}

.contact-form-new .form-group {
    margin-bottom: 20px;
}

.contact-form-new .form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 0.95rem;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s ease;
}

.contact-form-new .form-control:focus {
    border-color: #333;
    box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.1);
    outline: none;
    color: #333;
}

.contact-form-new .form-control::placeholder {
    color: #999;
}

.btn-submit {
    background-color: #333;
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #555;
    color: white;
}

@media (max-width: 991px) {
    .contact-info,
    .contact-form-new {
        padding: 30px 20px;
    }
    
    .contact-logo-img {
        max-width: 150px;
    }
    
    .contact-social {
        justify-content: center;
        margin-top: 30px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .header-content {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .property-features {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-section .row {
        min-height: auto;
    }
    
    .about-image-main {
        margin-bottom: 40px;
    }
    
    .about-content-wrapper {
        padding-left: 20px;
        padding-right: 20px;
        position: relative;
    }
    
    .about-content {
        padding-right: 0;
        text-align: center;
    }
    
    .about-title {
        text-align: center;
    }
    
    .about-subtitle {
        font-size: 1.8rem;
        line-height: 1.2;
        text-align: center;
    }
    
    .about-description {
        text-align: center;
        font-size: 0.95rem;
    }
    
    .about-highlight {
        text-align: center;
    }
    
    .about-image-secondary {
        position: static;
        margin-top: 30px;
        width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-grid {
        margin-top: 50px;
    }
    
    .services-grid .row {
        flex-direction: column;
    }
    
    .services-column {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .services-center-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .service-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: calc(60px + var(--spacing-lg)) 0 var(--spacing-lg) 0;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.875rem;
    }
    
    .property-card {
        margin: 0 var(--spacing-xs);
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* CTA Section Responsive */
    .cta-header-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .cta-header-services {
        font-size: 0.8rem;
        text-align: left;
    }
    
    .cta-content {
        padding: 50px 0;
    }
    
    .cta-text {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    /* Contact Professionals Section Responsive */
    .contact-professionals-section {
        padding: 50px 0;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .logo-solo {
        height: 45px;
    }
    
    .contact-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .professional-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .professional-name {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .professional-credentials {
        margin-bottom: 20px;
    }
    
    .professional-credentials p {
        font-size: 0.9rem;
        margin: 6px 0;
    }
    
    .professional-description p {
        font-size: 0.95rem;
    }
}

/* Final Image Section */
.final-image-section {
    margin: 0;
    padding: 0;
    width: 100%;
}

.final-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.final-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-width: 100%;
}

/* Responsive styles for final image */
@media (max-width: 768px) {
    .final-image {
        width: 100%;
        height: auto;
    }
}

/* ===== FILTER LINKS STYLES ===== */
.filter-sidebar {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-md);
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--light-gold);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.filter-link {
    display: block;
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--medium-gray);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
}

.filter-link:hover {
    background-color: var(--light-gold);
    color: var(--primary-gold);
    transform: translateX(4px);
    border-color: var(--secondary-gold);
}

.filter-link.active {
    background-color: var(--primary-gold);
    color: var(--white);
    font-weight: 600;
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-sm);
}

.filter-link.active:hover {
    background-color: var(--secondary-gold);
    transform: translateX(2px);
}

/* Responsive filter styles */
@media (max-width: 768px) {
    .filter-sidebar {
        padding: var(--spacing-sm);
    }
    
    .filter-link {
        padding: var(--spacing-sm);
        font-size: 1rem;
    }
}

/* ===== PROPERTY DETAIL CAROUSEL STYLES ===== */
.property-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.property-hero {
    background: #f8f9fa;
    padding: 2rem 0;
}

.image-carousel-container {
    max-width: 100%;
    margin: 0 auto;
}

.image-carousel {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 500px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    min-height: 400px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #fff;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #333;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.carousel-btn:hover {
    background: rgba(168, 198, 231, 0.95);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

/* Image Counter */
.image-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Autoplay Controls */
.autoplay-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.autoplay-btn {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1rem;
}

.autoplay-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding: 0 20px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) #f1f1f1;
}

.thumbnail-gallery::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-gallery::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 3px;
}

.thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--primary-gold);
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Property Info Section */
.property-info {
    padding: 3rem 0;
}

.info-section {
    background: white;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.section-title i {
    color: var(--primary-gold);
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .property-hero {
        padding: 1rem 0;
    }
    
    .carousel-image {
        min-height: 300px;
        max-height: 50vh;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .image-counter {
        top: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .autoplay-controls {
        top: 10px;
        left: 10px;
    }
    
    .autoplay-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .thumbnail {
        width: 60px;
        height: 45px;
    }
    
    .thumbnail-gallery {
        gap: 8px;
        margin-top: 15px;
        padding: 0 15px;
    }
    
    .info-section {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .carousel-image {
        min-height: 250px;
        max-height: 40vh;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .thumbnail {
        width: 50px;
        height: 38px;
    }
}