:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --gold-color: #d4af37;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-gold: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.text-gold {
    color: var(--gold-color);
}

/* Navigation */
.navbar {
    background: rgba(44, 62, 80, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white !important;
}

.navbar-brand i {
    color: var(--gold-color);
    margin-right: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-color) !important;
}

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

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
.hero-section .container{
    position: relative;
    z-index: 4;
}
.hero-content {
    color: white;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-primary {
    background: var(--gradient-secondary);
    border: none;
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

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

.hero-image img {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-card {
    position: absolute;
    top: 20px;
    right: -20px;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    margin: 0 auto;
    position: relative;
    animation: scroll 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes scroll {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Apartments */
.featured-apartments {
    padding: 100px 0;
    background: var(--bg-light);
}

.apartment-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.apartment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.apartment-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.apartment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.apartment-card:hover .apartment-image img {
    transform: scale(1.1);
}

.apartment-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-secondary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.apartment-content {
    padding: 25px;
}

.apartment-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.apartment-location {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.apartment-location i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.apartment-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.apartment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.apartment-features span {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.apartment-features i {
    color: var(--primary-color);
}

.apartment-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

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

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 100,0 80,100 0,100" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.benefit-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
}

.benefit-icon {
    background: var(--gradient-gold);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.benefit-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Cleaning Service */
.cleaning-service {
    padding: 100px 0;
    background: white;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.service-price {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.price-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.price-amount span {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

.service-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Timeline */
.timeline-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 50px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 50px;
}

.timeline-year {
    position: absolute;
    top: 0;
    background: var(--gradient-secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -25px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -25px;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.timeline-content h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="70" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="90" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-stars {
    margin-bottom: 25px;
}

.testimonial-stars i {
    color: var(--gold-color);
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 30px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
}

.author-info h5 {
    color: white;
    margin-bottom: 5px;
}

.author-info span {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: var(--gold-color);
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: white;
}

.map-container {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.cities-list {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    height: 500px;
    overflow-y: auto;
}

.cities-list h4 {
    margin-bottom: 25px;
    color: var(--text-dark);
}

.city-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.city-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.city-info h5 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.city-info p {
    color: var(--text-light);
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-gold);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-icon {
    background: rgba(255,255,255,0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-brand i {
    color: var(--gold-color);
}

.footer-brand p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-color);
    transform: translateY(-3px);
}

.footer h5 {
    color: var(--gold-color);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-color);
    padding-left: 5px;
}

.contact-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--gold-color);
    width: 20px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 40px 0 20px;
}

.copyright {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.ads-compliance {
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-text i {
    color: var(--gold-color);
    font-size: 1.2rem;
}

.cookie-text a {
    color: var(--gold-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 80px !important;
        padding-right: 0 !important;
    }
    
    .timeline-year {
        left: 0 !important;
        right: auto !important;
    }
    
    .cities-list {
        margin-top: 30px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .apartment-features {
        justify-content: center;
    }
    
    .apartment-price {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .floating-card {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 20px;
        justify-content: center;
    }
    .hero-section{
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

.carousel-indicators button{
    width: 15px!important;
    height: 15px!important;
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .timeline-item {
        padding-left: 60px !important;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .service-price {
        padding: 20px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Loading animations */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth transitions for all interactive elements */
a, button, .apartment-card, .benefit-card, .city-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus styles for accessibility */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid var(--gold-color);
    outline-offset: 2px;
}



.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


        /* Legal pages styles */
        .legal-header {
            background: var(--gradient-primary);
            color: white;
            padding: 120px 0 80px!important;
            text-align: center;
        }

        .legal-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .legal-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin: 0;
        }

        .legal-content {
            background: white;
            min-height: 60vh;
        }

        .legal-document {
            background: var(--bg-light);
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .legal-section {
            margin-bottom: 40px;
        }

        .legal-section h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--gold-color);
        }

        .legal-section h3 {
            color: var(--text-dark);
            font-size: 1.3rem;
            margin: 25px 0 15px 0;
        }

        .legal-section p {
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .legal-section ul {
            margin-bottom: 20px;
        }

        .legal-section li {
            color: var(--text-dark);
            line-height: 1.6;
            margin-bottom: 8px;
        }

        @media (max-width: 768px) {
            .legal-title {
                font-size: 2.2rem;
            }
            
            .legal-document {
                padding: 30px 20px;
            }
            
            .legal-section h2 {
                font-size: 1.5rem;
            }
        }