/* Tablet Styles */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero Section */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats */
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Cookie Banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Thank You */
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Legal Pages */
    .legal-content {
        padding: 2rem;
        margin: 0 1rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Typography */
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Brand */
    .brand-name {
        font-size: 1.2rem;
    }
    
    .logo {
        height: 35px;
    }
    
    /* Sections */
    .hero,
    .services,
    .about,
    .reviews,
    .contact {
        padding: 60px 0;
    }
    
    .newsletter {
        padding: 40px 0;
    }
    
    .legal-page {
        padding: 100px 0 60px;
    }
    
    .thank-you {
        padding: 100px 0 60px;
    }
    
    /* Service Cards */
    .service-card {
        padding: 1.5rem;
    }
    
    /* Review Cards */
    .review-card {
        padding: 1.5rem;
    }
    
    /* Contact Items */
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-icon {
        align-self: flex-start;
    }
    
    /* Hours */
    .hours-list {
        padding: 1.5rem;
    }
    
    .hours-item {
        flex-direction: column;
        gap: 0.25rem;
        text-align: left;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Cookie Banner */
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-buttons {
        gap: 0.5rem;
    }
    
    .cookie-buttons .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Modal */
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    /* Legal Content */
    .legal-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .legal-intro {
        padding: 0.75rem;
    }
    
    /* Thank You Details */
    .thank-you-details {
        padding: 1.5rem;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Newsletter Form */
    .newsletter-form input {
        padding: 10px 15px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .modal,
    .btn,
    .social-links,
    .nav-toggle {
        display: none !important;
    }
    
    .legal-page,
    .thank-you {
        padding: 20px 0;
    }
    
    .legal-content,
    .thank-you-content {
        box-shadow: none;
        margin: 0;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1 {
        font-size: 18pt;
    }
    
    h2 {
        font-size: 16pt;
    }
    
    h3 {
        font-size: 14pt;
    }
    
    a {
        color: #000 !important;
        text-decoration: underline;
    }
    
    .legal-section {
        page-break-inside: avoid;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
}

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

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .service-card,
    .review-card,
    .legal-content,
    .thank-you-details {
        border: 2px solid #000;
    }
    
    .btn-outline {
        border-width: 3px;
    }
    
    .footer-bottom {
        border-top-width: 2px;
        border-top-color: #fff;
    }
}

/* Dark Theme Support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }
    
    .service-card,
    .review-card,
    .legal-content,
    .thank-you-details,
    .modal-content {
        background-color: #1e1e1e;
        color: #e0e0e0;
    }
    
    .header {
        background-color: #1e1e1e;
        border-bottom: 1px solid #333;
    }
    
    .hero {
        background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    }
    
    .services,
    .reviews {
        background-color: #1a1a1a;
    }
    
    .hours-list {
        background-color: #2d2d2d;
    }
    
    .hours-item {
        border-bottom-color: #444;
    }
    
    .legal-intro {
        background-color: #2d2d2d;
    }
    
    .legal-section {
        border-bottom-color: #444;
    }
    
    .legal-footer {
        border-top-color: #444;
    }
}
