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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: #ffffff;
}

h2 {
    font-size: 2.5rem;
    color: #ffffff;
}

h3 {
    font-size: 2rem;
    color: #ffffff;
}

h4 {
    font-size: 1.5rem;
    color: #ffffff;
}

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

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

a:hover {
    color: #ffbf00;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff0000, #ffbf00);
    color: #ffffff !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #cc0000, #cc9900);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #333333;
    color: #ffffff !important;
    border: 2px solid #555555;
}

.btn-secondary:hover {
    background-color: #555555;
    border-color: #777777;
}

.btn-outline {
    background-color: transparent;
    color: #ff0000;
    border: 2px solid #ff0000;
}

.btn-outline:hover {
    background-color: #ff0000;
    color: #ffffff;
}

/* Navigation */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333333;
}

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

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

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

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

.nav-menu a {
    color: #b8b8b8;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff0000;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* 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-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff0000, #ffbf00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 191, 0, 0.1));
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid #333333;
}

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

.page-hero p {
    font-size: 1.2rem;
    color: #b8b8b8;
}

/* Sections */
.section {
    padding: 80px 0;
}

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

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

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

.about-text h3 {
    color: #ff0000;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 191, 0, 0.1));
    border-radius: 10px;
    border: 1px solid #333333;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: #ffbf00;
    margin-bottom: 0.5rem;
}

/* Benefits Section */
.benefits-section {
    background-color: #111111;
}

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

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 191, 0, 0.05));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #ff0000;
}

.benefit-card h3 {
    color: #ff0000;
    margin-bottom: 1rem;
}

/* Services Section */
.services-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333333;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 2rem;
    color: #b8b8b8;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-button.active,
.tab-button:hover {
    color: #ff0000;
    border-bottom-color: #ff0000;
}

.tab-content {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 191, 0, 0.05));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
}

.tab-pane {
    display: none;
    text-align: center;
}

.tab-pane.active {
    display: block;
}

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

/* FAQ Section */
.faq-section {
    background-color: #111111;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 191, 0, 0.05));
    border-radius: 10px;
    border: 1px solid #333333;
}

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

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

.review-card {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 191, 0, 0.05));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
    text-align: center;
}

.review-stars {
    color: #ffbf00;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: #ff0000;
    margin-bottom: 0.5rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #333333;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff0000;
}

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

.form-row .form-group {
    flex: 1;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 191, 0, 0.1));
    text-align: center;
}

.newsletter-form .form-row {
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-form input {
    min-width: 200px;
}

/* Footer */
.footer {
    background-color: #111111;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333333;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ff0000;
    margin-bottom: 1rem;
}

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

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

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

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

.footer-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

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

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #666666;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-top: 1px solid #333333;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

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

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

.modal-content {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
    max-width: 500px;
    width: 90%;
}

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

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

/* Company Pages */
.company-story {
    background-color: #111111;
}

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

.company-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

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

.value-card {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 191, 0, 0.05));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
    text-align: center;
}

.value-card h3 {
    color: #ff0000;
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    background-color: #111111;
}

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

.team-member {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 191, 0, 0.05));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
}

.member-title {
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 1rem;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.member-credentials span {
    background-color: #333333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #ffbf00;
}

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

.achievement-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 191, 0, 0.1));
    border-radius: 10px;
    border: 1px solid #333333;
}

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

.achievement-text {
    color: #ffffff;
    font-weight: 500;
}

/* Catalog Pages */
.filter-section {
    background-color: #111111;
    padding: 2rem 0;
}

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

.filters select {
    padding: 10px 15px;
    border: 1px solid #333333;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
    min-width: 150px;
}

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

.property-card {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 191, 0, 0.05));
    border-radius: 10px;
    border: 1px solid #333333;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    border-color: #ff0000;
}

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

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0.5rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    color: #ffbf00;
}

.rating-score {
    color: #ffffff;
    font-weight: bold;
}

.property-info {
    padding: 1.5rem;
}

.property-location {
    color: #ff0000;
    font-weight: 500;
    margin-bottom: 1rem;
}

.property-details {
    margin: 1.5rem 0;
}

.detail-item {
    margin-bottom: 0.5rem;
    color: #b8b8b8;
}

.detail-item strong {
    color: #ffffff;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.property-features span {
    background-color: #333333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #ffbf00;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info-section {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 191, 0, 0.05));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
    height: fit-content;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
    color: #ff0000;
}

.contact-text small {
    color: #888888;
}

.social-section h3 {
    color: #ff0000;
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 0, 0, 0.1);
}

.social-link span {
    font-size: 1.5rem;
}

.social-link strong {
    color: #ffffff;
}

.social-link small {
    color: #888888;
}

.form-tabs {
    display: flex;
    margin-bottom: 2rem;
    background-color: #1a1a1a;
    border-radius: 5px;
    padding: 0.5rem;
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    background: none;
    color: #b8b8b8;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: #ff0000;
    color: #ffffff;
}

.contact-form {
    display: none;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 191, 0, 0.05));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
}

.contact-form.active {
    display: block;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: #ff0000;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 191, 0, 0.1));
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Legal Pages */
.legal-content {
    padding: 2rem 0;
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

.legal-navigation {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 191, 0, 0.05));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.legal-navigation h3 {
    color: #ff0000;
    margin-bottom: 1rem;
}

.legal-navigation ul {
    list-style: none;
}

.legal-navigation li {
    margin-bottom: 0.5rem;
}

.legal-navigation a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-navigation a:hover {
    color: #ff0000;
}

.legal-content-main {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 191, 0, 0.05));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
}

.legal-content-main h2 {
    color: #ff0000;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333333;
}

.legal-content-main h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content-main h3 {
    color: #ffbf00;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content-main ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content-main li {
    margin-bottom: 0.5rem;
    color: #b8b8b8;
}

.contact-info-legal {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 191, 0, 0.1));
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333333;
    margin: 1rem 0;
}

.contact-info-legal h3 {
    color: #ff0000;
    margin-bottom: 1rem;
}

/* Cookie Policy Specific Styles */
.cookie-type {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 191, 0, 0.1));
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333333;
    margin-bottom: 1rem;
}

.cookie-type h4 {
    color: #ffbf00;
    margin-bottom: 0.5rem;
}

.cookie-table {
    overflow-x: auto;
    margin: 1rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #333333;
}

.cookie-table th {
    background-color: #333333;
    color: #ff0000;
    font-weight: bold;
}

.cookie-table td {
    color: #b8b8b8;
}

.cookie-controls {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 191, 0, 0.1));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
    margin: 2rem 0;
}

.cookie-controls h4 {
    color: #ff0000;
    margin-bottom: 1rem;
}

.cookie-setting {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-setting input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
}

.cookie-setting label {
    color: #ffffff;
    cursor: pointer;
}

.browser-instructions {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333333;
    margin: 1rem 0;
}

.browser-instructions h4 {
    color: #ffbf00;
    margin-bottom: 0.5rem;
}

.browser-instructions ol {
    margin-left: 1.5rem;
    color: #b8b8b8;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px !important;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-subtitle {
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 3rem;
}

.confirmation-details {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 191, 0, 0.05));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
    margin-bottom: 3rem;
}

.confirmation-details h3 {
    color: #ff0000;
    margin-bottom: 2rem;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.step-number {
    background: linear-gradient(135deg, #ff0000, #ffbf00);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #b8b8b8;
    margin: 0;
}

.quick-actions {
    margin-bottom: 3rem;
}

.quick-actions h3 {
    color: #ff0000;
    margin-bottom: 2rem;
}

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

.action-card {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 191, 0, 0.05));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
}

.action-card h4 {
    color: #ff0000;
    margin-bottom: 1rem;
}

.action-card p {
    margin-bottom: 1.5rem;
}

.emergency-contact {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 191, 0, 0.1));
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
    margin-bottom: 3rem;
}

.emergency-contact h3 {
    color: #ff0000;
    margin-bottom: 1rem;
}

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

.contact-method {
    color: #ffffff;
}

.office-hours {
    color: #888888;
    font-style: italic;
}

.return-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid #333333;
    }

    .nav-menu.active {
        display: flex;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .about-content,
    .story-content,
    .contact-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

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

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

    .newsletter-form .form-row {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }

    .legal-wrapper {
        grid-template-columns: 1fr;
    }

    .legal-navigation {
        position: static;
        order: 2;
    }

    .legal-content-main {
        order: 1;
    }

    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .action-cards {
        grid-template-columns: 1fr;
    }
}

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

    .section {
        padding: 60px 0;
    }

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

    .page-hero {
        padding: 100px 0 60px;
    }

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .property-card {
        margin: 0 10px;
    }

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

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

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

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

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

    .tab-buttons {
        flex-direction: column;
    }

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

    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }

    .modal-buttons {
        flex-direction: column;
    }
    body {
        word-break: break-word;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .newsletter-section,
    .footer {
        display: none;
    }

    body {
        background-color: white;
        color: black;
    }

    .section {
        padding: 1rem 0;
    }

    .page-hero {
        padding: 1rem 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #ff0000;
        border: 2px solid #ffffff;
    }

    .btn-outline {
        border-width: 3px;
    }

    .property-card,
    .benefit-card,
    .review-card,
    .team-member,
    .value-card,
    .faq-item {
        border-width: 2px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
