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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

svg {
max-width: 100%;}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    color: #cccccc;
    margin-bottom: 1rem;
}

a {
    color: #99ff00;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(153, 255, 0, 0.1);
}

.navbar {
    padding: 1rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-logo:hover {
    color: #99ff00;
}

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

.nav-link {
    color: #cccccc;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #99ff00;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #99ff00;
    transition: 0.3s;
}

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

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

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

/* Hero Section */
.hero {
    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-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #99ff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #99ff00;
    color: #1a1a1a;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(153, 255, 0, 0.3);
}

/* Page Header */
.page-header {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    text-align: center;
    border-bottom: 1px solid rgba(153, 255, 0, 0.1);
}

.page-header-content svg {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

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

/* Sections */
section {
    padding: 5rem 0;
}

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

.section-header svg {
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Grids */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text h2 {
    margin-bottom: 2rem;
    color: #99ff00;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.about-features,
.advantages-grid,
.values-grid,
.team-stats,
.achievements-grid {
    display: grid;
    gap: 2rem;
}

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

.advantages-grid,
.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.achievements-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.feature,
.advantage,
.value,
.achievement {
    padding: 2rem;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(153, 255, 0, 0.1);
    transition: all 0.3s ease;
}

.feature:hover,
.advantage:hover,
.value:hover,
.achievement:hover {
    background: rgba(42, 42, 42, 0.8);
    border-color: rgba(153, 255, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

.feature h3,
.advantage h3,
.value h3 {
    color: #99ff00;
    margin-bottom: 1rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #99ff00;
    margin-bottom: 0.5rem;
}

/* Offers Section */
.offers {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

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

.offer {
    background: rgba(42, 42, 42, 0.5);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(153, 255, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.offer:hover {
    background: rgba(42, 42, 42, 0.8);
    border-color: rgba(153, 255, 0, 0.3);
    transform: translateY(-5px);
}

.offer-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #99ff00;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.offer h3 {
    color: #99ff00;
    margin: 1rem 0;
}

.offer-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid #99ff00;
    color: #99ff00;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.offer-link:hover {
    background: #99ff00;
    color: #1a1a1a;
}

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

.review {
    background: rgba(42, 42, 42, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(153, 255, 0, 0.1);
    transition: all 0.3s ease;
}

.review:hover {
    background: rgba(42, 42, 42, 0.8);
    border-color: rgba(153, 255, 0, 0.3);
    transform: translateY(-2px);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.review p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-author {
    color: #99ff00;
    font-weight: 600;
}

/* Conditions Section */
.conditions-list {
    display: grid;
    gap: 1.5rem;
}

.condition {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(153, 255, 0, 0.1);
    transition: all 0.3s ease;
}

.condition:hover {
    background: rgba(42, 42, 42, 0.5);
    border-color: rgba(153, 255, 0, 0.2);
}

.condition h3 {
    color: #99ff00;
    margin-bottom: 0.5rem;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    text-align: center;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    flex: 1;
    padding: 1rem;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid rgba(153, 255, 0, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #888;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #99ff00;
    box-shadow: 0 0 10px rgba(153, 255, 0, 0.3);
}

.submit-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #99ff00;
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.submit-button:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(153, 255, 0, 0.3);
}

/* Apartments Section */
.catalog-filters {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    color: #99ff00;
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-group select {
    padding: 0.75rem 1rem;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid rgba(153, 255, 0, 0.2);
    border-radius: 8px;
    color: #ffffff;
    min-width: 180px;
}

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

.apartment-card {
    background: rgba(42, 42, 42, 0.3);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(153, 255, 0, 0.1);
    transition: all 0.3s ease;
}

.apartment-card:hover {
    background: rgba(42, 42, 42, 0.5);
    border-color: rgba(153, 255, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.apartment-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.apartment-image svg {
    width: 100%;
    height: 100%;
}

.apartment-content {
    padding: 1.5rem;
}

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

.apartment-header h3 {
    color: #99ff00;
    margin-bottom: 0.5rem;
    flex: 1;
}

.apartment-rating {
    text-align: right;
}

.rating-stars {
    display: flex;
    gap: 2px;
    justify-content: flex-end;
    margin-bottom: 0.25rem;
}

.rating-text {
    font-size: 0.9rem;
    color: #cccccc;
}

.apartment-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: #cccccc;
    background: rgba(153, 255, 0, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
}

.apartment-description {
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.apartment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.apartment-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #99ff00;
}

.price-unit {
    font-size: 0.9rem;
    color: #cccccc;
}

.apartment-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid #99ff00;
    color: #99ff00;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.apartment-btn:hover {
    background: #99ff00;
    color: #1a1a1a;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(42, 42, 42, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(153, 255, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(42, 42, 42, 0.5);
    border-color: rgba(153, 255, 0, 0.3);
    transform: translateY(-2px);
}

.contact-icon {
    flex-shrink: 0;
}

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

.contact-details p {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details span {
    font-size: 0.9rem;
    color: #888;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-form-info h2 {
    color: #99ff00;
    margin-bottom: 1.5rem;
}

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

.contact-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.contact-form-container {
    background: rgba(42, 42, 42, 0.3);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(153, 255, 0, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #cccccc;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #99ff00;
    border-radius: 4px;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #99ff00;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a1a;
    font-weight: bold;
}

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

.faq-item {
    padding: 2rem;
    background: rgba(42, 42, 42, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(153, 255, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(42, 42, 42, 0.5);
    border-color: rgba(153, 255, 0, 0.3);
}

.faq-item h3 {
    color: #99ff00;
    margin-bottom: 1rem;
}

/* Office Hours */
.office-hours {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.office-hours-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.office-hours-info {
    text-align: center;
}

.office-hours-info h2 {
    color: #99ff00;
    margin-bottom: 1rem;
}

.hours-table {
    background: rgba(42, 42, 42, 0.5);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(153, 255, 0, 0.1);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(153, 255, 0, 0.1);
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #cccccc;
}

.time {
    color: #99ff00;
    font-weight: 700;
}

.hours-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(153, 255, 0, 0.1);
    color: #cccccc;
}

/* Mission Section */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    color: #99ff00;
    margin-bottom: 2rem;
}

.mission-points {
    margin-top: 2rem;
}

.mission-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

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

.team-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(153, 255, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #99ff00;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    text-align: center;
}

.cta-content svg {
    margin-bottom: 2rem;
}

.cta-content h2 {
    color: #99ff00;
    margin-bottom: 1rem;
}

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

.cta-button.primary {
    background: #99ff00;
    color: #1a1a1a;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #99ff00;
    color: #99ff00;
}

.cta-button.secondary:hover {
    background: #99ff00;
    color: #1a1a1a;
}

/* Booking Form Section */
.booking-form-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(153, 255, 0, 0.1);
}

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

.footer-section h3 {
    color: #99ff00;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

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

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

.social-links a:hover {
    background: rgba(153, 255, 0, 0.1);
    border-color: rgba(153, 255, 0, 0.3);
    transform: translateY(-2px);
}

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

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

.footer-section ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

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

.contact-info {
    color: #cccccc;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(153, 255, 0, 0.1);
    color: #888;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-top: 1px solid rgba(153, 255, 0, 0.3);
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.cookie-text h3 {
    color: #99ff00;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #cccccc;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: #99ff00;
    color: #1a1a1a;
}

.cookie-accept:hover {
    background: #ffffff;
}

.cookie-necessary {
    background: transparent;
    border: 2px solid #99ff00;
    color: #99ff00;
}

.cookie-necessary:hover {
    background: #99ff00;
    color: #1a1a1a;
}

.cookie-settings {
    background: transparent;
    border: 2px solid #cccccc;
    color: #cccccc;
}

.cookie-settings:hover {
    background: #cccccc;
    color: #1a1a1a;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1002;
}

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

.cookie-modal-content {
    background: #2a2a2a;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(153, 255, 0, 0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(153, 255, 0, 0.1);
}

.cookie-modal-header h3 {
    color: #99ff00;
    margin: 0;
}

.cookie-close {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.cookie-close:hover {
    color: #99ff00;
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
}

.cookie-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.cookie-name {
    font-weight: 600;
    color: #99ff00;
}

.cookie-description {
    color: #cccccc;
    margin: 0 0 0 2.5rem;
    font-size: 0.9rem;
}

.cookie-modal-footer {
    padding: 2rem;
    border-top: 1px solid rgba(153, 255, 0, 0.1);
    text-align: center;
}

.cookie-save {
    background: #99ff00;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-save:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 3rem 0;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(153, 255, 0, 0.3);
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

    .content-grid,
    .contact-form-grid,
    .mission-content,
    .office-hours-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .catalog-filters {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

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

    .apartment-header {
        flex-direction: column;
        gap: 1rem;
    }

    .apartment-rating {
        text-align: left;
    }

    .apartment-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .cookie-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 3rem 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .about-features,
    .advantages-grid,
    .values-grid, [class*="-grid"], .thank-you-details, .info-steps {
        grid-template-columns: 1fr !important;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        align-self: center;
    }
    .nav-logo {
        font-size: 1rem;
    }
    .step {
    flex-direction: column;}
}

/* Cache Control Headers - Anti-caching */
.no-cache {
    Cache-Control: no-cache, no-store, must-revalidate;
    Pragma: no-cache;
    Expires: 0;
}

/* Loading and transition effects */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Print styles */
@media print {
    .cookie-consent,
    .cookie-modal,
    .nav-toggle {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}