/* Tablet Styles */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 5rem 1.5rem 3rem;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

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

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

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

    .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);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero {
        min-height: 80vh;
        padding: 4rem 1rem 2rem;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

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

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

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

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

    .service-card {
        padding: 2rem;
    }

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

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

    .testimonial-card {
        padding: 2rem;
    }

    .about-features {
        gap: 0.5rem;
    }

    .feature {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

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

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

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

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

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

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

    .cookie-actions .btn {
        width: 100%;
    }

    .cookie-modal {
        padding: 1rem;
    }

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

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

    .cookie-modal-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-modal-actions .btn {
        width: 100%;
    }

    .legal-content {
        padding: 0 1rem 3rem;
    }

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

    .cookies-table th,
    .cookies-table td {
        padding: 0.75rem;
    }

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

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-img {
        height: 200px;
    }
    
    .about-img {
        height: 250px;
    }
    
    .destination-img {
        height: 180px;
    }
    
    .avatar-img {
        width: 50px;
        height: 50px;
    }

    .image-placeholder {
        height: 200px;
        padding: 1.5rem;
    }

    .image-placeholder i {
        font-size: 2rem;
    }

    .image-placeholder p {
        font-size: 0.9rem;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .nav-container {
        padding: 0 0.75rem;
    }

    .nav-logo a {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero {
        padding: 3rem 0.75rem 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

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

    .newsletter-form,
    .contact-form {
        padding: 1.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .cookie-banner {
        padding: 1rem;
    }

    .cookie-content p {
        font-size: 0.9rem;
    }

    .legal-content h1 {
        font-size: 1.8rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .special-offer {
        padding: 2rem;
    }

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

    .thank-you-icon i {
        font-size: 4rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-icon i {
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .nav-toggle,
    .social-links,
    .btn,
    .newsletter,
    .hero-actions {
        display: none;
    }

    .legal-page {
        padding-top: 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: black;
        background: white;
    }

    h1, h2, h3, h4, h5, h6 {
        color: black;
        page-break-after: avoid;
    }

    .legal-content {
        max-width: none;
        padding: 0;
    }

    .legal-section {
        page-break-inside: avoid;
    }

    .cookies-table {
        page-break-inside: avoid;
    }

    .contact-info {
        background: white;
        border: 1px solid black;
    }
}

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

    .btn-outline {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }

    .service-icon,
    .contact-icon,
    .step-icon {
        background: #000;
    }

    .image-placeholder {
        background: #f0f0f0;
        border-color: #000;
        color: #000;
    }
}

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

    .animate-on-scroll {
        animation: none;
        opacity: 1;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1a1a1a;
        --text-color: #e0e0e0;
        --card-bg: #2a2a2a;
        --border-color: #404040;
    }

    /* Note: Full dark mode implementation would require more extensive changes */
    /* This is a basic foundation for dark mode support */
}

/* Landscape Orientation for Tablets */
@media screen and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        min-height: 60vh;
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        margin-bottom: 0;
    }
}

/* Portrait Orientation for Mobile */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .hero {
        min-height: 70vh;
        padding: 3rem 1rem 2rem;
    }

    .image-placeholder {
        height: 180px;
    }
}
