/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 200px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Header Mobile */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin-bottom: 30px;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active .menu-icon {
        display: none;
    }
    
    .mobile-menu-toggle.active .close-icon {
        display: block;
    }
    
    /* Hero Mobile */
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 250px;
    }
    
    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    /* Sections Mobile */
    .about,
    .advantages,
    .services,
    .tours,
    .reviews,
    .achievements,
    .contact {
        padding: 60px 0;
    }
    
    /* About Mobile */
    .about-content {
        text-align: center;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .about-stats {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat {
        flex: 1;
        min-width: 120px;
    }
    
    /* Grids Mobile */
    .advantages-grid,
    .services-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Tours Mobile */
    .tour-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .tour-meta {
        justify-content: center;
    }
    
    .tour-content.active {
        padding: 20px;
    }
    
    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
        padding: 30px 20px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
    
    /* Cookie Modal Mobile */
    .cookie-modal-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
    
    .cookie-modal-buttons .btn {
        width: 100%;
    }
    
    /* Legal Pages Mobile */
    .legal-page {
        padding: 100px 0 40px;
    }
    
    .legal-content {
        padding: 0 10px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
    
    /* Cookie Table Mobile */
    .cookie-table {
        font-size: 14px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
    
    /* Cookie Settings Mobile */
    .cookie-settings-section {
        padding: 20px;
    }
    
    /* Thanks Page Mobile */
    .thanks-page {
        padding: 100px 0 40px;
    }
    
    .thanks-content h1 {
        font-size: 2rem;
    }
    
    .thanks-message {
        font-size: 1.1rem;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thanks-actions .btn {
        width: 250px;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 15px;
    }
    
    .booking-details,
    .contact-details {
        padding: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-actions .btn,
    .thanks-actions .btn {
        width: 200px;
    }
    
    .tour-header {
        padding: 20px;
    }
    
    .tour-header h3 {
        font-size: 1.2rem;
    }
    
    .tour-price {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .cookie-modal-content {
        padding: 20px 15px;
    }
    
    .legal-content {
        padding: 0 5px;
    }
    body {
        word-break: break-word;
    }
}

/* Utility Classes for Responsive Design */
@media (max-width: 768px) {
    .mobile-center {
        text-align: center;
    }
    
    .mobile-full-width {
        width: 100%;
    }
    
    .mobile-hide {
        display: none;
    }
    
    .mobile-stack {
        flex-direction: column;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-content h1 {
        color: #333;
    }
    
    .hero-content p {
        color: #666;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .btn {
        border: 1px solid #333;
        color: #333;
        background: transparent;
    }
}
