/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(252, 88, 127, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fc587f;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #fc587f;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fc587f;
    transition: width 0.3s ease;
}

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

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fc587f;
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #fc587f, #ff7a9a);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 88, 127, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 88, 127, 0.5);
}

.page-header {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 6rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(252, 88, 127, 0.2);
}

.page-header h1 {
    font-size: 3rem;
    color: #fc587f;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #fc587f;
    margin-bottom: 1rem;
}

/* Company Section */
.company-section {
    padding: 6rem 0;
    background: rgba(45, 45, 45, 0.3);
}

.company-content p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.company-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(252, 88, 127, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(252, 88, 127, 0.3);
    box-shadow: 0 10px 30px rgba(252, 88, 127, 0.1);
}

.feature svg {
    margin-bottom: 1rem;
}

.feature h3 {
    color: #fc587f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Achievements Section */
.achievements-section {
    padding: 6rem 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(252, 88, 127, 0.1), rgba(252, 88, 127, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(252, 88, 127, 0.2);
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: #fc587f;
    margin-bottom: 0.5rem;
}

.achievement-text {
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* Offers Section */
.offers-section {
    padding: 6rem 0;
    background: rgba(45, 45, 45, 0.3);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background: rgba(26, 26, 26, 0.7);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(252, 88, 127, 0.1);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(252, 88, 127, 0.3);
    box-shadow: 0 15px 40px rgba(252, 88, 127, 0.1);
}

.offer-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
}

.offer-card h3 {
    color: #fc587f;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.offer-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fc587f;
    margin-top: 1rem;
}

/* Advantages Section */
.advantages-section {
    padding: 6rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(252, 88, 127, 0.1);
    transition: all 0.3s ease;
}

.advantage:hover {
    transform: translateY(-5px);
    border-color: rgba(252, 88, 127, 0.3);
}

.advantage-icon {
    margin-bottom: 1rem;
}

.advantage h3 {
    color: #fc587f;
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: rgba(45, 45, 45, 0.3);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: rgba(26, 26, 26, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(252, 88, 127, 0.1);
}

.review-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
}

.review-rating svg {
    width: 20px;
    height: 20px;
}

.review-author {
    color: #fc587f;
    font-weight: bold;
    margin-top: 1rem;
}

/* Properties Page */
.filter-section {
    padding: 2rem 0;
    background: rgba(45, 45, 45, 0.5);
}

.filter-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(26, 26, 26, 0.8);
    color: #e0e0e0;
    border: 1px solid rgba(252, 88, 127, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #fc587f;
    color: white;
}

.properties-section {
    padding: 4rem 0;
}

.city-section {
    margin-bottom: 4rem;
}

.city-section h2 {
    color: #fc587f;
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(252, 88, 127, 0.3);
    padding-bottom: 1rem;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.property-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(252, 88, 127, 0.1);
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    border-color: rgba(252, 88, 127, 0.3);
    box-shadow: 0 15px 40px rgba(252, 88, 127, 0.1);
}

.property-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.property-content {
    padding: 1.5rem;
}

.property-details {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.property-type,
.property-size,
.property-rooms {
    background: rgba(252, 88, 127, 0.1);
    color: #fc587f;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.property-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.stars {
    color: #fc587f;
}

.property-rating span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.property-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fc587f;
    margin-top: 1rem;
}

/* Services Page */
.services-section {
    padding: 4rem 0;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category h2 {
    color: #fc587f;
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(252, 88, 127, 0.3);
    padding-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(252, 88, 127, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(252, 88, 127, 0.3);
    box-shadow: 0 15px 40px rgba(252, 88, 127, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #fc587f;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    justify-content: center;
}

.service-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fc587f;
    margin-top: 1rem;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-form-container {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(252, 88, 127, 0.1);
}

.contact-form-container h2 {
    color: #fc587f;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(45, 45, 45, 0.8);
    border: 1px solid rgba(252, 88, 127, 0.3);
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fc587f;
    box-shadow: 0 0 10px rgba(252, 88, 127, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group span {
    flex: 1;
}

.checkbox-group a {
    color: #fc587f;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(45deg, #fc587f, #ff7a9a);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 88, 127, 0.3);
}

.contact-info-container {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(252, 88, 127, 0.1);
}

.contact-info-container h2 {
    color: #fc587f;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.contact-details h3 {
    color: #fc587f;
    margin-bottom: 0.5rem;
}

.contact-hours {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h3 {
    color: #fc587f;
    margin-bottom: 1rem;
}

.map-section {
    margin-top: 4rem;
}

.map-section h2 {
    color: #fc587f;
    margin-bottom: 2rem;
    text-align: center;
}

.map-placeholder {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(252, 88, 127, 0.1);
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-description {
    text-align: center;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 0;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    color: #fc587f;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    color: #fc587f;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(252, 88, 127, 0.1);
}

.step svg {
    margin-bottom: 1rem;
}

.step h3 {
    color: #fc587f;
    margin-bottom: 1rem;
}

.contact-reminder {
    background: rgba(45, 45, 45, 0.5);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.contact-reminder h3 {
    color: #fc587f;
    margin-bottom: 1rem;
}

.contact-quick {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
}

.back-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #fc587f, #ff7a9a);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #fc587f;
    border: 2px solid #fc587f;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 88, 127, 0.3);
}

/* Footer */
footer {
    background: rgba(26, 26, 26, 0.95);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(252, 88, 127, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #fc587f;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fc587f;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(252, 88, 127, 0.1);
    color: #b0b0b0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-top: 1px solid rgba(252, 88, 127, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #e0e0e0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #fc587f;
    color: white;
}

.cookie-btn.necessary {
    background: transparent;
    color: #fc587f;
    border: 1px solid #fc587f;
}

.cookie-btn.settings {
    background: rgba(45, 45, 45, 0.8);
    color: #e0e0e0;
    border: 1px solid rgba(252, 88, 127, 0.3);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(252, 88, 127, 0.2);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: rgba(26, 26, 26, 0.98);
    border: 1px solid rgba(252, 88, 127, 0.3);
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: #fc587f;
    margin-bottom: 2rem;
    text-align: center;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(45, 45, 45, 0.3);
    border-radius: 8px;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-weight: bold;
    color: #fc587f;
}

.cookie-category input[type="checkbox"] {
    margin-top: 0.2rem;
}

.cookie-category p {
    margin-top: 0.5rem;
    margin-left: 2rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(252, 88, 127, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid, [class*="-grid"], .company-features {
        grid-template-columns: 1fr !important;
    }

    .back-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    body {
        word-break: break-word;
    }
}
.legal-text {
padding: 50px 0;}