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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e5e5e5;
    background-color: #0a0a0a;
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

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

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

a:hover {
    color: #b8e55c;
}

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

.btn-primary {
    background-color: #97d93b;
    color: #000000;
}

.btn-primary:hover {
    background-color: #b8e55c;
    color: #000000;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #333333;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #444444;
}

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

.btn-outline:hover {
    background-color: #97d93b;
    color: #000000;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-top: 3px solid #97d93b;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #333333;
    text-align: right;
}

.close {
    color: #aaaaaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ffffff;
}

/* Cookie Toggle Switch */
.cookie-category {
    margin-bottom: 20px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 8px;
}

.cookie-toggle input {
    display: none;
}

.slider {
    position: relative;
    width: 50px;
    height: 24px;
    background-color: #333333;
    border-radius: 12px;
    margin-right: 12px;
    transition: background-color 0.3s;
}

.slider:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ffffff;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

.cookie-toggle input:checked + .slider {
    background-color: #97d93b;
}

.cookie-toggle input:checked + .slider:before {
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-label {
    font-weight: 500;
}

/* Navigation */
.navbar {
    background-color: #0a0a0a;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #333333;
}

.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: 12px;
}

.nav-logo img {
    width: 32px;
    height: 32px;
}

.nav-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

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

.nav-link {
    color: #e5e5e5;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
    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;
    z-index: 1;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

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

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

.section-alt {
    background-color: #111111;
}

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

.section-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

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

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

/* Page Header */
.page-header {
    background-color: #111111;
    padding: 120px 0 60px;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    color: #c4c4c4;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.content-item h3 {
    color: #97d93b;
    margin-bottom: 1rem;
}

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

.service-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333333;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(151, 217, 59, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

/* Detailed Services */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detailed-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #333333;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.service-info h2 {
    margin-bottom: 0.5rem;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: #97d93b;
    font-size: 1.2rem;
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #97d93b;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #c4c4c4;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #97d93b;
    font-weight: bold;
}

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

.advantage-item {
    text-align: center;
    padding: 2rem;
}

.advantage-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #97d93b;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

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

.expert-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333333;
}

.expert-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.expert-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-title {
    color: #97d93b;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

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

.review-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.review-rating {
    margin-bottom: 1rem;
}

.review-rating .stars {
    color: #97d93b;
    font-size: 1.2rem;
}

.review-author {
    margin-top: 1.5rem;
    text-align: right;
}

.review-author strong {
    color: #ffffff;
    display: block;
}

.review-author span {
    color: #97d93b;
    font-size: 0.9rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

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

/* Forms */
.contact-form {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.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: 6px;
    background-color: #0a0a0a;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #97d93b;
    box-shadow: 0 0 0 2px rgba(151, 217, 59, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Contact Page Specific */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-item-large {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

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

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

.contact-form-container {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #333333;
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

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

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 0.5rem;
}

.radio-custom,
.checkbox-custom {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #333333;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.checkbox-custom {
    border-radius: 4px;
}

.radio-label input,
.checkbox-label input {
    display: none;
}

.radio-label input:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #97d93b;
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #97d93b;
    font-weight: bold;
}

/* Contact Options */
.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-option {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333333;
}

.option-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

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

.office-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.office-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

/* Cities */
.cities-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.city-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #333333;
}

.city-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.city-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.city-info h2 {
    margin-bottom: 0.5rem;
}

.city-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.city-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #97d93b;
}

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

.stat-item {
    background-color: #0a0a0a;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-positive {
    color: #97d93b;
    font-weight: 600;
}

.district-list {
    list-style: none;
    margin: 1rem 0;
}

.district-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333333;
}

.district-list li:last-child {
    border-bottom: none;
}

.city-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.pros h4 {
    color: #97d93b;
    margin-bottom: 1rem;
}

.cons h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.pros ul,
.cons ul {
    list-style: none;
}

.pros li::before {
    content: '✓';
    color: #97d93b;
    font-weight: bold;
    margin-right: 0.5rem;
}

.cons li::before {
    content: '!';
    color: #ff6b6b;
    font-weight: bold;
    margin-right: 0.5rem;
}

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

.trend-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333333;
}

.trend-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #1a1a1a;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid #333333;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #222222;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #97d93b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #97d93b, #7bc332);
    color: #000000;
}

.cta-content {
    text-align: center;
}

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

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

.cta-content .btn-primary {
    background-color: #000000;
    color: #ffffff;
}

.cta-content .btn-primary:hover {
    background-color: #333333;
    color: #ffffff;
}

/* Thank You Page */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}

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

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

.success-icon {
    width: 100px;
    height: 100px;
    filter: brightness(0) saturate(100%) invert(67%) sepia(56%) saturate(508%) hue-rotate(63deg) brightness(95%) contrast(88%);
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #c4c4c4;
}

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

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
}

.detail-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.detail-content h3 {
    color: #97d93b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.detail-content p {
    margin: 0;
    font-size: 0.9rem;
}

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

.additional-info {
    text-align: center;
}

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

.info-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333333;
}

.info-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.contact-reminder {
    text-align: center;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.contact-method-info h3 {
    color: #97d93b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-method-info p {
    margin: 0;
    font-weight: 600;
}

.contact-method-info span {
    font-size: 0.9rem;
    color: #999999;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-meta {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 1px solid #333333;
}

.legal-content h2 {
    color: #97d93b;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333333;
}

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

.cookies-table th {
    background-color: #97d93b;
    color: #000000;
    font-weight: 600;
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

.cookie-settings-demo {
    margin: 2rem 0;
    text-align: center;
}

.cookie-actions {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid #333333;
}

.cookie-actions h3 {
    margin-bottom: 1rem;
    color: #97d93b;
}

.cookie-actions p {
    margin-bottom: 2rem;
}

.cookie-actions .btn {
    margin: 0 0.5rem 0.5rem 0;
}

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

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

.footer-section h3 {
    color: #97d93b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.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: translateY(-2px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #0a0a0a;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid #333333;
        z-index: 998;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-grid,
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .city-header {
        flex-direction: column;
        text-align: center;
    }
    
    .city-pros-cons {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .urgent-contact {
        grid-template-columns: 1fr;
    }
    
    .detail-item,
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .radio-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .thank-you-actions .btn {
        width: auto;
        min-width: 200px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    .cookies-table {
        display: none;
    }
}

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

.service-card,
.expert-card,
.review-card,
.city-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading States */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #97d93b;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #97d93b;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    body {
        background-color: #000000;
        color: #ffffff;
    }
    
    .section-alt {
        background-color: #000000;
    }
    
    .service-card,
    .expert-card,
    .review-card {
        border: 2px solid #ffffff;
    }
}

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