/* ================================
   ThatTrip - Responsive Styles
   ================================ */

/* Tablet (768px - 1023px) */
@media screen and (max-width: 1023px) {

    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
        font-weight: 900;
        margin-bottom: 2rem;
    }

    /* Hero */
    .hero-title {
        font-size: 3rem;
    }

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

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Destinations */
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile (up to 767px) */
@media screen and (max-width: 767px) {

    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 1.8rem);
        font-weight: 900;
        margin-bottom: 1.5rem;
    }

    /* Navigation */
    .navbar {
        padding: 1rem 0;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        color: var(--gray-900);
        font-size: 1.125rem;
    }

    .navbar.scrolled .nav-link {
        color: var(--gray-900);
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        height: 100vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .hero .btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .scroll-indicator {
        font-size: 1.5rem;
        bottom: 2rem;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
    }

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

    .stat-card {
        padding: 1.5rem;
    }

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

    /* Destinations */
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .destination-card {
        height: 300px;
    }

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

    .service-card {
        padding: 2rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    /* Testimonials */
    .testimonials-carousel {
        padding: 1rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-info h3,
    .enquiry-form h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .contact-item {
        margin-bottom: 1.5rem;
    }

    .contact-item i {
        font-size: 1.25rem;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }

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

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

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

    .footer-logo {
        font-size: 1.25rem;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }

    .payment-methods {
        font-size: 1.5rem;
    }
}

/* Small Mobile (up to 480px) */
@media screen and (max-width: 480px) {

    /* Hero */
    .hero-title {
        font-size: 1.75rem;
    }

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

    .hero-content {
        padding: 0 1rem;
    }

    /* Buttons */
    .btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Stats */
    .stat-card i {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    /* Destination Cards */
    .destination-card {
        height: 250px;
    }

    .destination-name {
        font-size: 1.25rem;
    }

    /* Service Cards */
    .service-card i {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.125rem;
    }

    /* Feature Cards */
    .feature-card i {
        font-size: 2rem;
    }

    /* Contact */
    .contact-info,
    .enquiry-form {
        padding: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.65rem 0.875rem;
        font-size: 0.9rem;
    }
}

/* Large Desktop (1280px and above) */
@media screen and (min-width: 1280px) {

    .section {
        padding: 6rem 0;
    }

    .section-title {
        font-size: 3rem;
        margin-bottom: 3rem;
    }

    .hero-title {
        font-size: 5rem;
    }

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

    .destinations-grid,
    .services-grid {
        gap: 2rem;
    }

    .destination-card {
        height: 400px;
    }
}

/* Landscape Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 8rem 0 4rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .scroll-indicator {
        display: none;
    }

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

    .nav-menu.active {
        overflow-y: auto;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .nav-toggle,
    .scroll-indicator,
    .btn,
    .swiper-button-prev,
    .swiper-button-next,
    .swiper-pagination,
    .enquiry-form,
    .footer-social,
    .social-icons {
        display: none !important;
    }

    body {
        font-size: 12pt;
    }

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

    a {
        text-decoration: underline;
    }

    .hero {
        height: auto;
        padding: 4rem 0;
        background-attachment: scroll;
    }
}
