


html {
    scroll-behavior: smooth;
}


.hero {
    background: linear-gradient(135deg, #2c1810 0%, #3e2723 30%, #5d4037 70%, #8d6e63 100%);
    color: #f5f5dc;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(245,245,220,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(210, 105, 30, 0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}


.search-section {
    background: white;
    padding: 2rem 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-header-search {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-search h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffeeea;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header-search p {
    font-size: 1.2rem;
    color: #ffeeea;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background: rgba(248, 246, 243, 0.7);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 69, 19, 0.08);
}

.search-button {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.2);
}

.search-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.3);
}


.properties {
    padding: 4rem 0;
    background: linear-gradient(135deg, #faf9f7 0%, #f8f6f3 100%);
}

.properties-container {
    max-width: none !important;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}


.properties-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 3rem;
}

.property-row {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border: 1px solid rgba(139, 69, 19, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.property-row:hover {
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.12);
    transform: translateY(-2px);
}

.property-row:first-child {
    margin-top: 0;
}

.property-row:last-child {
    margin-bottom: 0;
}

.row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(139, 69, 19, 0.1);
}

.row-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3e2723;
    margin: 0;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.row-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.row-nav .nav-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #8b4513;
    background: transparent;
    color: #8b4513;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.row-nav .nav-btn:hover:not(:disabled) {
    background: #8b4513;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.row-nav .nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.row-nav .nav-btn:focus {
    outline: 2px solid #8b4513;
    outline-offset: 2px;
}


.properties-row-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.properties-row-container::-webkit-scrollbar {
    display: none;
}

.properties-row-container .property-card {
    min-width: 420px;
    max-width: 450px;
    height: 720px;
    flex-shrink: 0;
    background: #f8f6f3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(139, 69, 19, 0.05);
    display: flex;
    flex-direction: column;
}

.properties-row-container .property-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
}


.properties-row-container .property-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 50%, #cd853f 100%);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.properties-row-container .property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.properties-row-container .property-card:hover .property-image img {
    transform: scale(1.1);
}

.properties-row-container .property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #8b4513;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.properties-row-container .property-heart {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.properties-row-container .property-heart:hover {
    background: #d2691e;
    color: white;
    transform: scale(1.1);
}

.properties-row-container .property-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 240px);
}

.properties-row-container .property-content-top {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.properties-row-container .property-price {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}


.properties-row-container .property-price-per-sqm {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d2691e;
    margin-bottom: 0.8rem;
    padding: 0.3rem 0.8rem;
    background: rgba(210, 105, 30, 0.1);
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
}

.properties-row-container .property-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3e2723;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 2.8rem;
}

.properties-row-container .property-location {
    color: #8b4513;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.2;
}

.properties-row-container .property-location::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
}

.properties-row-container .property-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.properties-row-container .detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5d4e37;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.2;
}

.properties-row-container .detail-icon {
    width: 8px;
    height: 8px;
    background: #8b4513;
    border-radius: 50%;
    opacity: 0.8;
    flex-shrink: 0;
}


.properties-row-container .property-parking {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5d4e37;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.5rem 0.8rem;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(210, 105, 30, 0.05) 100%);
    border-radius: 10px;
    border-left: 3px solid #8b4513;
}

.properties-row-container .property-parking i {
    color: #8b4513;
    font-size: 0.9rem;
}


.properties-row-container .property-parking.has-parking {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.05) 0%, rgba(50, 205, 50, 0.05) 100%);
    border-left-color: #8b4513;
}

.properties-row-container .property-parking.has-parking i {
    color: #228b22;
}

.properties-row-container .property-parking.no-parking {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05) 0%, rgba(255, 69, 0, 0.05) 100%);
    border-left-color: #8b4513;
}

.properties-row-container .property-parking.no-parking i {
    color: #8b4513;
}

.properties-row-container .property-description {
    color: #5d4e37;
    line-height: 1.6;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 4.2rem;
}

.properties-row-container .property-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
    flex-shrink: 0;
}

.properties-row-container .property-btn {
    flex: 1;
    padding: 0.8rem 0.6rem;
    border-radius: 15px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 40px;
}

.properties-row-container .btn-primary {
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    color: white;
}

.properties-row-container .btn-secondary {
    background: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
}

.properties-row-container .property-btn:hover {
    transform: translateY(-2px);
}

.properties-row-container .btn-primary:hover {
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.properties-row-container .btn-secondary:hover {
    background: #8b4513;
    color: white;
}


.scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-dot.active {
    background: #8b4513;
    transform: scale(1.4);
}

.scroll-dot:hover {
    background: #8b4513;
    transform: scale(1.2);
}

.scroll-dot:focus {
    outline: 2px solid #8b4513;
    outline-offset: 2px;
}


.modal.enhanced-modal {
    backdrop-filter: blur(5px);
}

.enhanced-modal .modal-content {
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


.property-image-container {
    position: relative;
    overflow: hidden;
}

.property-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.3s ease;
}


.image-carousel-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.property-card:hover .image-carousel-controls {
    opacity: 1;
    pointer-events: auto;
}

.carousel-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(139, 69, 19, 0.9);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}


.image-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.image-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.image-dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.image-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}


.property-badge.unified {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
}


.properties-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 69, 19, 0.1);
}

.properties-footer p {
    color: #5d4e37;
    opacity: 0.8;
    margin-top: 1rem;
    font-weight: 500;
}


.why-choose-us {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 50%, #f5f3f0 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(139,69,19,0.05)"/><circle cx="80" cy="80" r="3" fill="rgba(210,105,30,0.05)"/><circle cx="60" cy="30" r="1.5" fill="rgba(139,69,19,0.05)"/></svg>');
    background-size: 200px 200px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.advantage-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(139, 69, 19, 0.05);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(210, 105, 30, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.advantage-card:hover::before {
    transform: scale(1);
}

.advantage-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(139, 69, 19, 0.15);
    border-color: rgba(210, 105, 30, 0.2);
}

.advantage-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.advantage-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #3e2723;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

.advantage-card p {
    color: #5d4e37;
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.advantage-highlight {
    background: linear-gradient(135deg, #d2691e 0%, #ff8c00 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #2c1810 0%, #3e2723 100%);
    padding: 4rem 3rem;
    border-radius: 30px;
    color: #f5f5dc;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(210, 105, 30, 0.1) 0%, transparent 50%);
}

.cta-section h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}


.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #8b4513;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.property-row.loading {
    opacity: 0.7;
    pointer-events: none;
}

.property-row.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #8b4513;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}


.property-row * {
    transition: all 0.3s ease;
}


.cta-btn:hover,
.search-button:hover,
.contact-btn:hover {
    transform: translateY(-3px);
}

.cta-primary:hover {
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.4);
}

.cta-secondary:hover {
    background: #f5f5dc;
    color: #2c1810;
}


.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #8b4513;
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.1);
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .notification {
        top: 90px;
        right: 1rem;
        left: 1rem;
        max-width: 100%;
        margin: 0 auto;
        font-size: 0.9rem;
        padding: 1rem 1.2rem;
    }
}


@media (max-width: 768px) {
    
    .properties-row-container {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        will-change: scroll-position;
        transform: translateZ(0);
        scroll-snap-type: none !important;
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        max-width: 100%;
        padding: 1rem 0.5rem;
        gap: 1rem;
    }
    
    .properties-row-container .property-card {
        scroll-snap-align: none !important;
        will-change: transform;
        transform: translateZ(0);
        min-width: 300px;
        max-width: 320px;
        height: 600px;
        border-radius: 14px;
        box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
        transition: transform 0.2s ease;
        backface-visibility: hidden;
    }
    
    .row-header {
        position: sticky;
        top: 0;
        z-index: 10;
        background: white;
        margin: -2rem -2rem 1.5rem -2rem;
        padding: 1.5rem 2rem 1rem 2rem;
        border-bottom: 1px solid rgba(139, 69, 19, 0.1);
        box-shadow: 0 2px 8px rgba(139, 69, 19, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .row-nav {
        display: flex;
        gap: 0.8rem;
        position: relative;
        z-index: 11;
    }
    
    .row-nav .nav-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        font-size: 1.1rem;
        border: 2px solid #8b4513;
        background: white;
        color: #8b4513;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(139, 69, 19, 0.15);
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .row-nav .nav-btn:active {
        transform: scale(0.95);
        background: #8b4513;
        color: white;
    }
    
    .scroll-indicators {
        display: flex !important;
        justify-content: center;
        gap: 0.5rem;
        margin: 1rem 0 0.5rem 0;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 20px;
        position: relative;
        z-index: 5;
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 12px rgba(139, 69, 19, 0.1);
    }
    
    .scroll-dot {
        width: 10px !important;
        height: 10px !important;
        border-radius: 50%;
        background: rgba(139, 69, 19, 0.3);
        cursor: pointer;
        transition: all 0.2s ease;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        min-width: 10px;
        min-height: 10px;
        flex-shrink: 0;
    }
    
    .scroll-dot.active {
        background: #8b4513;
        transform: scale(1.4);
        box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
    }
    
    .scroll-dot:active {
        transform: scale(1.6);
    }
    
    .property-row {
        padding: 1rem;
        margin: 0 0.5rem;
        border-radius: 16px;
        background: white;
        box-shadow: 0 4px 16px rgba(139, 69, 19, 0.08);
        overflow: hidden;
    }
    
    .properties-row-container .property-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
    }
    
    .properties-row-container .property-card:active {
        transform: scale(0.98);
    }
    
    .properties-row-container .property-image {
        height: 160px;
        overflow: hidden;
    }
    
    .properties-row-container .property-image img {
        transition: none;
    }
    
    .properties-row-container .property-content {
        padding: 1.2rem 1rem;
        height: calc(100% - 160px);
    }
    
    .properties-row-container .property-title {
        font-size: 1.05rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
        min-height: 2.6rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .properties-row-container .property-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-height: 2.8rem;
    }
    
    .properties-row-container .property-btn {
        min-height: 44px;
        padding: 0.8rem 0.6rem;
        font-size: 0.85rem;
        border-radius: 12px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        transition: transform 0.1s ease;
    }
    
    .properties-row-container .property-btn:active {
        transform: scale(0.95);
    }
    
    .properties-row-container .property-btn:hover {
        transform: none;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .advantage-card {
        padding: 2rem 1.5rem;
    }

    .advantage-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .advantage-card h3 {
        font-size: 1.3rem;
    }

    .cta-section {
        padding: 3rem 2rem;
    }

    .cta-section h3 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .search-form {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 1rem;
    }
    
    .search-form .form-group {
        min-width: 100%;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    
    .image-carousel-controls {
        opacity: 1;
        pointer-events: auto;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .image-indicators {
        bottom: 8px;
        gap: 4px;
    }
    
    .image-dot {
        width: 6px;
        height: 6px;
    }
    
    .image-dot.active {
        transform: scale(1.4);
    }

    
    .properties-row-container .property-price-per-sqm {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
        margin-bottom: 0.6rem;
    }

    
    .properties-row-container .property-parking {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
        margin-bottom: 0.8rem;
    }

    .properties-row-container .property-parking i {
        font-size: 0.8rem;
        min-width: 12px;
    }
}


@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1rem;
    }

    .hero-content,
    .properties-container,
    .search-container {
        padding: 0 1rem;
    }

    .row-header {
        margin: -1rem -1rem 1.2rem -1rem;
        padding: 1.2rem 1rem 0.8rem 1rem;
    }
    
    .row-title {
        font-size: 1.1rem;
    }
    
    .row-nav .nav-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        font-size: 1rem;
    }
    
    .property-row {
        padding: 0.8rem;
        margin: 0 0.3rem;
    }
    
    .properties-row-container .property-card {
        min-width: 280px;
        max-width: 300px;
        height: 580px;
    }
    
    .properties-row-container .property-image {
        height: 140px;
    }
    
    .properties-row-container .property-content {
        padding: 1rem 0.9rem;
        height: calc(100% - 140px);
    }
    
    .scroll-dot {
        width: 8px !important;
        height: 8px !important;
        min-width: 8px;
        min-height: 8px;
    }
    
    .scroll-indicators {
        margin: 0.8rem 0 0.3rem 0;
        padding: 0.4rem;
    }

    
    .properties-row-container .property-price {
        font-size: 1.2rem;
    }

    .properties-row-container .property-price-per-sqm {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    
    .properties-row-container .property-parking {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
        margin-bottom: 0.6rem;
    }
}


@media (max-width: 360px) {
    .row-nav .nav-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        font-size: 0.9rem;
    }
    
    .properties-row-container .property-card {
        min-width: 260px;
        max-width: 280px;
        height: 560px;
    }
    
    .properties-row-container .property-image {
        height: 130px;
    }
    
    .properties-row-container .property-content {
        padding: 0.9rem 0.8rem;
        height: calc(100% - 130px);
    }
    
    .row-title {
        font-size: 1rem;
    }

    .properties-row-container .property-price {
        font-size: 1.1rem;
    }
}


@media (min-width: 769px) {
    .properties-row-container::-webkit-scrollbar {
        height: 6px;
    }
    
    .properties-row-container::-webkit-scrollbar-track {
        background: rgba(139, 69, 19, 0.1);
        border-radius: 3px;
    }
    
    .properties-row-container::-webkit-scrollbar-thumb {
        background: rgba(139, 69, 19, 0.3);
        border-radius: 3px;
    }
    
    .properties-row-container::-webkit-scrollbar-thumb:hover {
        background: rgba(139, 69, 19, 0.5);
    }
}


@media (max-width: 768px) {
    .property-card,
    .property-row,
    .nav-btn,
    .scroll-dot {
        will-change: transform;
        backface-visibility: hidden;
    }
    
    .properties-row-container .btn-primary {
        background: #8b4513;
    }
    
    .properties-row-container .property-price {
        color: #8b4513;
    }
    
    .properties-row-container::-webkit-scrollbar {
        display: none;
    }
}


@supports (-webkit-overflow-scrolling: touch) {
    .properties-row-container {
        -webkit-overflow-scrolling: touch;
    }
    
    body {
        overflow-x: hidden;
    }
}


@media (prefers-reduced-motion: reduce) {
    .properties-row-container,
    .property-card,
    .nav-btn,
    .scroll-dot,
    .modal.enhanced-modal .modal-content {
        transition: none !important;
        animation: none !important;
    }
    
    .properties-row-container {
        scroll-behavior: auto !important;
    }
    
    html {
        scroll-behavior: auto !important;
    }
}


@media (hover: none) and (pointer: coarse) {
    .image-carousel-controls {
        opacity: 1;
        pointer-events: auto;
    }
    
    .carousel-btn:hover {
        background: rgba(0, 0, 0, 0.7);
        transform: none;
    }
    
    .carousel-btn:active {
        background: rgba(139, 69, 19, 0.9);
        transform: scale(0.9);
    }
    
    .image-dot:hover {
        background: rgba(255, 255, 255, 0.5);
        transform: none;
    }
    
    .property-card:hover .image-carousel-controls {
        opacity: 1;
        pointer-events: auto;
    }
    
    .property-card:hover .property-image img {
        transform: none;
    }
    
    .property-card:hover {
        transform: none;
        box-shadow: 0 8px 25px rgba(139, 69, 19, 0.08);
    }
}


.carousel-btn:focus,
.image-dot:focus,
.nav-btn:focus,
.scroll-dot:focus {
    outline: 2px solid #8b4513;
    outline-offset: 2px;
}


@media (prefers-contrast: high) {
    .carousel-btn {
        background: rgba(0, 0, 0, 0.9);
        border: 2px solid white;
    }
    
    .image-dot {
        border: 2px solid white;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .image-dot.active {
        background: white;
        border: 2px solid black;
    }
    
    .property-badge {
        border: 2px solid #8b4513;
    }

    .property-price-per-sqm {
        border: 1px solid #d2691e;
    }

    .property-parking {
        border: 2px solid #8b4513 !important;
    }
}


@media (max-width: 768px) {
    .property-card:focus,
    .property-btn:focus,
    .nav-btn:focus,
    .scroll-dot:focus,
    .carousel-btn:focus,
    .image-dot:focus {
        outline: 3px solid #8b4513;
        outline-offset: 2px;
    }
}


.properties-row-container,
.property-card,
.modal.enhanced-modal {
    contain: layout style paint;
}


.videos-section {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #faf9f7 0%, #f5f3f0 100%);
            position: relative;
            overflow: hidden;
        }

        .videos-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(210, 105, 30, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .videos-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .videos-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .videos-header h2 {
            font-size: 3rem;
            font-weight: 800;
            color: #3e2723;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .videos-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #d2691e 0%, #ff8c00 100%);
            border-radius: 2px;
        }

        .videos-subtitle {
            font-size: 1.2rem;
            color: #5d4e37;
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .video-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            cursor: pointer;
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #d2691e 0%, #ff8c00 100%);
            overflow: hidden;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .video-card:hover .video-thumbnail img {
            transform: scale(1.1);
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #d2691e;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .video-card:hover .play-button {
            transform: translate(-50%, -50%) scale(1.1);
            background: white;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .video-content {
            padding: 1.5rem;
        }

        .video-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #3e2723;
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }

        .video-description {
            color: #5d4e37;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .video-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #8b7355;
        }

        .video-duration {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .video-views {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .youtube-button {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .youtube-button::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 ease;
        }

        .youtube-button:hover::before {
            left: 100%;
        }

        .youtube-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
            background: linear-gradient(135deg, #ff3333 0%, #e60000 100%);
        }

        .youtube-button i {
            font-size: 1.3rem;
        }

        .cta-section-video {
            text-align: center;
            background: white;
            padding: 2.5rem;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .cta-section-video::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d2691e 0%, #ff8c00 50%, #d2691e 100%);
        }

        .cta-title-video {
            font-size: 1.8rem;
            font-weight: 700;
            color: #3e2723;
            margin-bottom: 1rem;
        }

        .cta-description-video {
            color: #5d4e37;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease forwards;
        }

        .video-card:nth-child(1) { animation-delay: 0.1s; }
        .video-card:nth-child(2) { animation-delay: 0.2s; }
        .video-card:nth-child(3) { animation-delay: 0.3s; }

        
        @media (max-width: 768px) {
            .videos-section {
                padding: 3rem 1rem;
            }

            .videos-header h2 {
                font-size: 2.2rem;
            }

            .videos-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .video-card {
                margin: 0 auto;
                max-width: 400px;
            }

            .cta-section-video {
                padding: 2rem 1.5rem;
            }

            .cta-title-video {
                font-size: 1.5rem;
            }

            .youtube-button {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .videos-header h2 {
                font-size: 1.8rem;
            }

            .videos-grid {
                grid-template-columns: 1fr;
            }

            .video-thumbnail {
                height: 200px;
            }

            .play-button {
                width: 60px;
                height: 60px;
                font-size: 1.2rem;
            }
        }

        .testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 50%, #f5f3f0 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(139,69,19,0.05)"/><circle cx="80" cy="80" r="3" fill="rgba(210,105,30,0.05)"/></svg>');
    background-size: 200px 200px;
    animation: float 20s ease-in-out infinite;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3e2723;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #5d4e37;
    opacity: 0.8;
}


.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.testimonial-card {
    min-width: 100%;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.08);
    border: 2px solid rgba(139, 69, 19, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: #8b4513;
    opacity: 0.1;
    font-family: serif;
}

.testimonial-content {
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.author-info span {
    font-size: 14px;
    color: #666;
}


.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #8b4513;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #8b4513;
}

.carousel-btn:hover {
    background: #8b4513;
    color: white;
    transform: translateY(-2px);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #8b4513;
    transform: scale(1.2);
}


.google-review-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.08);
    border: 2px solid rgba(139, 69, 19, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.google-review-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(210, 105, 30, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 0.6; }
}

.google-review-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.15);
}

.review-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.review-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.review-actions {
    text-align: center;
    flex: 1;
}

.review-actions h3 {
    margin-bottom: 0.5rem;
    color: #3e2723;
    font-weight: 700;
    font-size: 1.4rem;
}

.review-actions p {
    margin-bottom: 1.5rem;
    color: #5d4e37;
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.8;
}

.review-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.google-review-btn, .quick-feedback-btn {
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.google-review-btn::before,
.quick-feedback-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.google-review-btn:hover::before,
.quick-feedback-btn:hover::before {
    left: 100%;
}

.google-review-btn {
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.google-review-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.4);
}

.quick-feedback-btn {
    background: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
}

.quick-feedback-btn:hover {
    background: rgba(139, 69, 19, 0.1);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.2);
}


.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(62, 39, 35, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.3);
    animation: modalAppear 0.3s ease;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 2rem 2rem 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #3e2723;
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #8b4513;
}

.modal-body {
    padding: 2rem;
}

.quick-rating {
    text-align: center;
    margin-bottom: 2rem;
}

.quick-rating p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
}

.rating-stars-interactive {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.rating-stars-interactive i {
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-stars-interactive i:hover,
.rating-stars-interactive i.active {
    color: #ffc107;
    transform: scale(1.1);
}

.rating-text {
    font-size: 1rem;
    color: #666;
    margin-top: 1rem;
}

.feedback-options {
    text-align: center;
}

.feedback-options h4 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feedback-options p {
    margin-bottom: 1.5rem;
    color: #555;
}

.feedback-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feedback-btn {
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.feedback-btn.primary {
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    color: white;
}

.feedback-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.feedback-btn.secondary {
    background: #f8f6f3;
    color: #3e2723;
    border: 2px solid rgba(139, 69, 19, 0.2);
}

.feedback-btn.secondary:hover {
    background: rgba(139, 69, 19, 0.1);
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .review-summary {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .review-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 0 auto;
    }
    
    .review-actions h3 {
        font-size: 1.2rem;
    }
    
    .review-buttons {
        flex-direction: column;
    }
    
    .google-review-btn, .quick-feedback-btn {
        width: 100%;
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 20% auto;
    }
    
    .modal-header, .modal-body {
        padding: 1.5rem;
    }
    
    .rating-stars-interactive i {
        font-size: 28px;
    }
    
    .carousel-controls {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .rating-number {
        font-size: 2rem;
    }
    
    .rating-stars-interactive i {
        font-size: 24px;
        gap: 6px;
    }
}


@media (min-width: 768px) {
    .properties-container {
        padding: 0 2rem;
    }
}

@media (min-width: 1200px) {
    .properties-container {
        padding: 0 3rem;
    }
}

@media (min-width: 1600px) {
    .properties-container {
        padding: 0 4rem;
    }
}

@media (min-width: 2000px) {
    .properties-container {
        padding: 0 6rem;
    }
}


.property-row {
    width: 100%;
    max-width: none;
}

.properties-row-container {
    width: 100%;
    max-width: none;
}


@media (min-width: 1200px) {
    .properties-row-container .property-card {
        min-width: 420px !important;
        max-width: 460px !important;
    }
}

@media (min-width: 1600px) {
    .properties-row-container .property-card {
        min-width: 460px !important;
        max-width: 500px !important;
    }
}

@media (min-width: 1920px) {
    .properties-row-container .property-card {
        min-width: 500px !important;
        max-width: 540px !important;
    }
}