/* Tablet Styles */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-content h2 {
        font-size: 1.5rem;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

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

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .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(-8px) rotate(-45deg);
    }

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

    .legal-text {
        padding: 2rem;
    }

    .thank-you-content {
        padding: 2rem;
    }

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

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

    .hero {
        padding: 120px 0 80px;
    }

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

    .hero-content h2 {
        font-size: 1.2rem;
    }

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

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

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

    .services,
    .about,
    .reviews,
    .newsletter,
    .contact {
        padding: 60px 0;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .service-card,
    .review-card {
        padding: 1.5rem;
    }

    .newsletter-form {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .social-icons {
        justify-content: center;
    }

    .cookie-banner {
        padding: 1rem 0.5rem;
    }

    .cookie-content {
        gap: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons button {
        width: 100%;
    }

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

    .cookie-modal-buttons {
        flex-direction: column;
    }

    .legal-content {
        padding: 120px 0 80px;
    }

    .legal-text {
        padding: 1.5rem;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }

    .thank-you {
        padding: 120px 0 80px;
    }

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

    .review-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .stat h3 {
        font-size: 2rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

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

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .hero-img {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .service-card,
    .review-card,
    .newsletter-form,
    .contact-info,
    .legal-text,
    .thank-you-content {
        border: 2px solid #fff;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        border: 2px solid currentColor;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .hero-buttons,
    .newsletter,
    .social-links {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero,
    .services,
    .about,
    .reviews,
    .contact,
    .legal-content {
        background: white;
        padding: 20px 0;
    }

    h1, h2, h3 {
        color: black;
    }

    p, li {
        color: black;
    }

    .service-card,
    .review-card,
    .legal-text {
        background: white;
        border: 1px solid #ccc;
    }
}
