/* Properties Listing Page Styles */
:root {
    --color-accent: #FF5733;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
    color: #e5e7eb; /* text-gray-200 */
}

.font-display { 
    font-family: 'Montserrat', sans-serif; 
}

/* Hero Section with Background */
.hero-section-grayscale {
    position: relative;
    z-index: 1;
}

.hero-section-grayscale::before {
    content: '';
    position: absolute;
    top: -10rem; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background-image: linear-gradient(rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 1)), url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center 25%;
    filter: grayscale(100%);
    z-index: -4;
}

/* Glass Effect */
.glass-premium {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Main Search Bar */
.main-search-bar {
    background: white;
    border-radius: 9999px;
    padding: 0.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto auto;
    gap: 0.5rem;
    align-items: center;
}

.search-segment { 
    padding: 0.25rem 1.25rem; 
    position: relative; 
}

.search-segment:not(:last-of-type)::after {
    content: ''; 
    position: absolute; 
    right: -0.25rem; 
    top: 50%;
    transform: translateY(-50%); 
    width: 1px; 
    height: 30px; 
    background-color: #e5e7eb;
}

.search-segment label { 
    font-weight: 700; 
    font-size: 0.8rem; 
    color: #111827; 
    display: block; 
}

.search-segment input, 
.search-segment select {
    border: none; 
    background: transparent; 
    width: 100%;
    padding: 0.25rem 0; 
    font-size: 0.95rem; 
    color: #4b5563;
}

.search-segment input::placeholder { 
    color: #9ca3af; 
}

.search-segment input:focus, 
.search-segment select:focus { 
    outline: none; 
    box-shadow: none; 
}

/* Search Button */
.search-button {
    background-color: var(--color-accent); 
    color: white; 
    border-radius: 9999px;
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: all 0.2s ease; 
    height: 52px; 
    width: 52px;
}

.search-button:hover { 
    background-color: #E64A19; 
    transform: scale(1.05); 
}

/* Logo Navigation Animation */
.logo-nav-animation {
    /* Transición elástica y suave */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease-out;
}

.logo-nav-animation:hover {
    transform: scale(1.25) rotate(-8deg);
    /* Glow de doble capa: un núcleo blanco brillante y un aura naranja */
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 12px rgba(255, 87, 51, 0.7));
}

.logo-nav-animation:active {
    /* Un "pop" rápido y brillante al hacer clic */
    transform: scale(1.15);
    filter: drop-shadow(0 0 5px white) drop-shadow(0 0 15px rgba(255, 87, 51, 1));
    transition: transform 0.1s ease, filter 0.1s ease;
}

/* Filters Button */
.filters-button {
    background-color: #f3f4f6; 
    color: #374151; 
    border-radius: 9999px;
    font-weight: 600; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem;
    transition: all 0.2s ease; 
    height: 52px; 
    padding: 0 1.5rem;
}

.filters-button:hover { 
    background-color: #e5e7eb; 
}

/* Property Cards */
.property-card {
    background: white; 
    color: #1f2937;
    border-radius: 1rem; 
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.card-image-container .status-tag {
    position: absolute; 
    top: 0.75rem; 
    left: 0.75rem;
    background-color: var(--color-accent); 
    color: white;
    padding: 0.25rem 0.75rem; 
    border-radius: 9999px;
    font-size: 0.7rem; 
    font-weight: 700; 
    text-transform: uppercase;
}

.card-price .period { 
    font-size: 0.8rem; 
    color: #6b7280; 
    font-weight: 500; 
}

/* Card Button */
.btn-card {
    background-color: #f3f4f6; 
    color: #374151;
    transition: all 0.2s ease;
}

.btn-card:hover { 
    background-color: #e5e7eb; 
}

/* Modal Styles */
.modal-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8); 
    display: flex;
    align-items: center; 
    justify-content: center; 
    z-index: 9999;
    opacity: 0; 
    visibility: hidden; 
    transition: all 0.3s ease-in-out;
    padding: 80px 20px 20px 20px; /* Espacio para navbar */
}

.modal-overlay.active { 
    opacity: 1; 
    visibility: visible; 
}

.modal-content { 
    transform: scale(0.9); 
    transition: all 0.3s ease-in-out; 
}

.modal-overlay.active .modal-content { 
    transform: scale(1); 
}

[x-cloak] { 
    display: none !important; 
}

/* Enhanced Glass Premium for Navigation */
.glass-premium {
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Glass Card for Modal Sections */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Gallery Section Styles */
.gallery-section {
    position: relative;
    min-height: 400px;
}

.gallery-main-container {
    height: 100%;
    min-height: 400px;
}

.gallery-main-image {
    transition: transform 0.3s ease;
}

.gallery-main-image:hover {
    transform: scale(1.02);
}

/* Gallery Navigation */
.gallery-nav-btn {
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-section:hover .gallery-nav-btn {
    opacity: 1;
}

.gallery-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(255, 87, 51, 0.3);
}

/* Gallery Thumbnails */
.gallery-thumbnails {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-thumbnails::-webkit-scrollbar {
    display: none;
}

.gallery-thumbnail {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumbnail:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.gallery-thumbnail.active {
    opacity: 1;
    border-color: #FF5733;
    box-shadow: 0 0 10px rgba(255, 87, 51, 0.5);
}

/* Property Details Section */
.property-details-section {
    max-height: 90vh;
}

/* Custom Scrollbar */
/* Scrollbar Personalizado con Estilo Dopaminérgico Indenant */
.scrollbar-custom {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 87, 51, 0.8) rgba(255, 255, 255, 0.05);
}

.scrollbar-custom::-webkit-scrollbar {
    width: 8px;
}

.scrollbar-custom::-webkit-scrollbar-track {
    background: rgba(30, 30, 30, 0.2);
    border-radius: 4px;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
}

.scrollbar-custom::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF5733, #FF8A50, #FF5733);
    border-radius: 4px;
    box-shadow: 0 0 6px rgba(255, 135, 80, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scrollbar-custom::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FF8A50, #FF5733, #FF8A50);
    box-shadow: 0 0 8px rgba(255, 87, 51, 0.8);
}

/* ===== SCROLLBAR DOPAMINÉRGICO INDENANT ===== */

/* Estilo super específico para el scrollbar del modal */
#property-modal .property-content .indenant-custom-scrollbar.dopamine-scroll {
    scrollbar-width: thin !important;
    scrollbar-color: rgba(255, 135, 80, 0.3) rgba(30, 30, 30, 0.05) !important;
    overflow-y: auto !important;
}

#property-modal .property-content .indenant-custom-scrollbar.dopamine-scroll::-webkit-scrollbar {
    width: 6px !important; /* Grosor aún más sutil */
    height: auto !important;
    display: block !important;
}

#property-modal .property-content .indenant-custom-scrollbar.dopamine-scroll::-webkit-scrollbar-track {
    background: rgba(30, 30, 30, 0.05) !important;
    border-radius: 3px !important;
    box-shadow: none !important;
    margin: 4px 0 !important;
}

#property-modal .property-content .indenant-custom-scrollbar.dopamine-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 140, 85, 0.35), rgba(255, 100, 60, 0.25), rgba(255, 140, 85, 0.35)) !important;
    border-radius: 3px !important;
    box-shadow: 0 0 2px rgba(255, 135, 80, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    min-height: 40px !important;
}

#property-modal .property-content .indenant-custom-scrollbar.dopamine-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(255, 140, 85, 0.45), rgba(255, 100, 60, 0.35), rgba(255, 140, 85, 0.45)) !important;
    box-shadow: 0 0 3px rgba(255, 87, 51, 0.25) !important;
}

/* Estilos de respaldo para otros contenedores con scroll */
.modal-details-content {
    scrollbar-width: thin !important;
    scrollbar-color: rgba(255, 87, 51, 0.8) rgba(30, 30, 30, 0.2) !important;
}

/* Hide scrollbar utility */
.scrollbar-hide {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Gradient Text and Buttons */
.gradient-text {
    background: linear-gradient(135deg, #FF5733, #FF8A50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-dopamine {
    background-image: linear-gradient(135deg, #FF5733, #FF8A50);
}

.btn-dopamine {
    background: linear-gradient(135deg, #FF5733, #FF8A50);
    transition: all 0.3s ease;
    color: white;
}

.btn-dopamine:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 87, 51, 0.4);
}

/* AlpineJS Transitions for Menu */
.menu-transition-enter-active { 
    transition: all 0.3s ease-out; 
}

.menu-transition-enter { 
    transform: translateY(-1rem); 
    opacity: 0; 
}

.menu-transition-enter-to { 
    transform: translateY(0); 
    opacity: 1; 
}

.menu-transition-leave-active { 
    transition: all 0.2s ease-in; 
}

.menu-transition-leave { 
    transform: translateY(0); 
    opacity: 1; 
}

.menu-transition-leave-to { 
    transform: translateY(-1rem); 
    opacity: 0; 
}

/* AlpineJS Transitions for Modal */
.modal-transition-enter-active { 
    transition: opacity 0.3s ease-out; 
}

.modal-transition-enter { 
    opacity: 0; 
}

.modal-transition-enter-to { 
    opacity: 1; 
}

.modal-transition-leave-active { 
    transition: opacity 0.2s ease-in; 
}

.modal-transition-leave { 
    opacity: 1; 
}

.modal-transition-leave-to { 
    opacity: 0; 
}

.modal-transition-enter-active .glass-premium,
.modal-transition-leave-active .glass-premium {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-transition-enter .glass-premium { 
    transform: scale(0.95); 
}

.modal-transition-enter-to .glass-premium { 
    transform: scale(1); 
}

.modal-transition-leave .glass-premium { 
    transform: scale(1); 
}

.modal-transition-leave-to .glass-premium { 
    transform: scale(0.95); 
}

/* ===== SPLIT-SCREEN DYNAMIC MODAL STYLES ===== */

/* Modal Overlay Específico para Split-Screen */
.modal-overlay-dynamic {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1rem;
}

.modal-overlay-dynamic.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Content Container */
.modal-content-dynamic {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(13, 13, 13, 0.98));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    width: 100%;
    max-width: 80rem;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9) translateY(2rem);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.modal-overlay-dynamic.active .modal-content-dynamic {
    transform: scale(1) translateY(0);
}

/* Close Button */
.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 60;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.modal-close-btn:hover {
    background: rgba(255, 87, 51, 0.8);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 0 20px rgba(255, 87, 51, 0.5);
}

/* Split Screen Layout */
.modal-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    max-height: 90vh;
}

/* Left Side - Image Gallery */
.modal-gallery-section {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.9), rgba(26, 26, 26, 0.8));
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gallery-main-container {
    position: relative;
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-main-image:hover {
    transform: scale(1.05);
}

/* Gallery Navigation */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.gallery-nav-btn:hover {
    background: linear-gradient(135deg, #FF5733, #FF8A50);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 25px rgba(255, 87, 51, 0.6);
}

.gallery-nav-btn.prev {
    left: 1rem;
}

.gallery-nav-btn.next {
    right: 1rem;
}

/* Gallery Counter */
.gallery-counter {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Fullscreen Button */
.gallery-fullscreen-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 0.75rem;
    padding: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-fullscreen-btn:hover {
    background: linear-gradient(135deg, #FF5733, #FF8A50);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 87, 51, 0.5);
}

/* Thumbnails */
.gallery-thumbnails {
    display: flex;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 87, 51, 0.5) transparent;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FF5733, #FF8A50);
    border-radius: 2px;
}

.gallery-thumbnail {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.gallery-thumbnail:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.gallery-thumbnail.active {
    border-color: #FF5733;
    box-shadow: 0 0 15px rgba(255, 87, 51, 0.5);
}

/* Right Side - Property Details */
.modal-details-section {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(13, 13, 13, 0.98));
    color: white;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 87, 51, 0.5) transparent;
}

.modal-details-section::-webkit-scrollbar {
    width: 6px;
}

.modal-details-section::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.modal-details-section::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FF5733, #FF8A50);
    border-radius: 3px;
}

.modal-details-content {
    padding: 2rem;
}

/* Property Header */
.property-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.property-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF5733, #FF8A50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.property-operation-type {
    display: inline-block;
    background: linear-gradient(135deg, #FF5733, #FF8A50);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Property Cards */
.property-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.property-info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 87, 51, 0.3);
    transform: translateY(-2px);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FF5733;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-title i {
    font-size: 1.1rem;
}

/* Price Section */
.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF5733, #FF8A50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 87, 51, 0.1);
    transform: scale(1.02);
}

.feature-icon {
    color: #FF5733;
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

.feature-text {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Description */
.property-description {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Amenities List */
.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background: rgba(255, 87, 51, 0.1);
    transform: translateX(4px);
}

.amenity-icon {
    color: #FF5733;
    font-size: 1rem;
    width: 1.25rem;
    text-align: center;
}

/* Requirements List - Spacing handled by margin-bottom in requirement-item */

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 87, 51, 0.1);
    border: 1px solid rgba(255, 87, 51, 0.2);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
}

.requirement-icon {
    color: #FF5733;
    font-size: 1.1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.requirement-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Property Card Carousel Indicators */
.property-card .carousel-indicators {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.property-card .carousel-dot {
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card .carousel-dot:hover {
    transform: scale(1.25);
    opacity: 0.8;
}

.property-card .carousel-dot.active {
    background-color: #4b5563; /* gray-600 */
}

.property-card .carousel-dot.inactive {
    background-color: #9ca3af; /* gray-400 */
}

/* Contact Actions */
.contact-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.contact-btn.primary {
    background: linear-gradient(135deg, #FF5733, #FF8A50);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 87, 51, 0.3);
}

.contact-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 87, 51, 0.4);
}

.contact-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 87, 51, 0.5);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modal-split-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
    
    .modal-gallery-section {
        max-height: 50vh;
    }
    
    .gallery-thumbnails {
        padding: 1rem;
    }
    
    .gallery-thumbnail {
        width: 3rem;
        height: 3rem;
    }
}

@media (max-width: 768px) {
    .modal-overlay-dynamic {
        padding: 0.5rem;
    }
    
    .modal-content-dynamic {
        max-height: 95vh;
        border-radius: 1rem;
    }
    
    .modal-details-content {
        padding: 1.5rem;
    }
    
    .property-title {
        font-size: 1.5rem;
    }
    
    .price-display {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-actions {
        flex-direction: column;
    }
    
    .gallery-nav-btn {
        width: 3rem;
        height: 3rem;
    }
    
    .modal-close-btn {
        width: 2.5rem;
        height: 2.5rem;
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-split-container {
        grid-template-rows: 40vh 1fr;
    }
    
    .gallery-thumbnails {
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .gallery-thumbnail {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-list {
        grid-template-columns: 1fr;
    }
}
