/* RESPONSIVE-ADDITIONS.CSS */

/* LARGE DESKTOPS: 1200px and up */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* MEDIUM DESKTOPS: 992px to 1199px */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .intro-wrap h1 {
        font-size: 50px;
    }
    
    .slides {
        height: 500px;
    }
}

/* TABLETS: 768px to 991px */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    /* Navigation */
    .site-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }

@media (max-width: 991px) {
    .nav-toggle {
        display: block;  /* Show hamburger on mobile/tablet */
    }

    .nav-toggle .hamburger {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-toggle .hamburger:nth-child(1) {
        top: 4px;
    }

    .nav-toggle .hamburger:nth-child(2) {
        top: 15px;
    }

    .nav-toggle .hamburger:nth-child(3) {
        top: 26px;
    }

    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .hamburger:nth-child(1) {
        top: 15px;
        transform: rotate(45deg);
    }

    .nav-toggle.active .hamburger:nth-child(3) {
        top: 15px;
        transform: rotate(-45deg);
    }

    /* Existing rules – keep these */
    .site-menu {
        display: none;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu.active .site-menu {
        display: flex;
        flex-direction: column;
        gap: 8px;
        background: #fff;
        padding: 10px 16px;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 999;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .nav-menu.active .site-menu a {
        color: #1A374D;
        padding: 10px 8px;
    }
}

    /* When the nav is toggled open, ensure the menu items are visible */
    .nav-menu.active {
        display: block;
    }

    .nav-menu.active .site-menu {
        display: flex;
        flex-direction: column;
        gap: 8px;
        background: #fff;
        padding: 10px 16px;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 999;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .nav-menu.active .site-menu a {
        color: #1A374D;
        padding: 10px 8px;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-wrap {
        order: 1;
    }
    
    .slides {
        order: 2;
        height: 450px;
        max-width: 600px;
        margin: 0 auto;
        display: block;
        visibility: visible;
    }
    
    .intro-wrap h1 {
        font-size: 45px;
        text-align: center;
    }
    
    .hero-card {
        padding: 25px;
    }
    
    /* Services */
    .services-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-image {
        max-height: 400px;
        order: -1;
    }
    
    .services-cards-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    /* Destinations */
    .destination-item {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 26px;
    }
    
    .prev-btn {
        left: -22px;
    }
    
    .next-btn {
        right: -22px;
    }
    
    /* Footer */
    .footer-row {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-col-large {
        grid-column: 1 / -1;
    }
}

/* TABLETS: 1024px max (Services specific) */
@media (max-width: 1024px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-image {
        min-height: 400px;
    }
    
    .services-cards-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .packages_services p {
        font-size: 15px;
    }
    
    .service-card h3 {
        font-size: 16px;
        min-height: auto;
    }
    
    .service-card {
        padding: 25px 20px;
    }
}

/* SMALL TABLETS & LARGE PHONES: 576px to 767px */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 20px;
    }
    
    /* Navigation */
    .site-nav {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-image {
        width: 25px;
        height: 25px;
    }
    
    /* Hero Section */
    .hero {
        padding: 90px 0 60px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
    }
    
    .intro-wrap {
        order: 1;
    }
    
    .slides {
        order: 2;
        height: 400px;
        border-radius: 150px;
        width: 100%;
        max-width: 100%;
        display: block;
        position: relative;
        visibility: visible;
    }
    
    .slides img {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .intro-wrap h1 {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .typed-words:after {
        height: 5px;
    }
    
    .hero-card {
        padding: 20px;
    }
    
    .hero-card h2 {
        font-size: 1.5rem;
    }
    
    .hero-card p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 13px;
        width: 100%;
    }
    
    /* Packages Section */
    .section {
        padding: 50px 0;
    }
    
    .packages_services {
        margin-bottom: 40px;
    }
    
    .packages_services p {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 30px;
        margin-bottom: 30px;
    }
    
    .services-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 17px;
        min-height: auto;
    }
    
    .service-card .btn {
        width: 100%;
    }
    
    /* Destinations */
    .destination-section {
        padding: 50px 0;
    }
    
    .destination-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .media-thumb img {
        height: 300px;
    }
    
    .media-text {
        padding: 25px 15px;
    }
    
    .media-text h3 {
        font-size: 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
    
    .slider-dots {
        margin-top: 25px;
    }
    
    /* Testimonials */
    .testimonial-section {
        padding: 50px 0;
        margin-top: 2rem;
    }
    
    .content-wrapper {
        max-width: 100%;
    }
    
    .testimonial-section .section-title {
        font-size: 28px;
        margin-bottom: 2rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .testimonial {
        padding: 30px 15px;
    }
    
    .name {
        font-size: 1.3rem;
    }
    
    blockquote p {
        font-size: 1rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 26px;
        margin-bottom: 0.8rem;
    }
    
    /* Footer */
    .footer-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .widget {
        margin-bottom: 20px;
    }
    
    .heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    /* Page-Specific Hero */
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-section {
        min-height: 400px;
    }
    
    /* Booking Form */
    .booking-form {
        padding: 3rem 1rem;
    }
    
    .booking-form form {
        padding: 2rem 1.5rem;
    }
    
    /* Tour Packages */
    .tour-gallery {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
    }
    
    .tour-gallery img {
        flex: 0 0 85%;
        height: 220px;
        scroll-snap-align: center;
    }
    
    .tour-gallery::-webkit-scrollbar {
        display: none;
    }
    
    .tour-gallery {
        -ms-overflow-style: none;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .tour-title {
        font-size: 2rem;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}

/* MOBILE DEVICES: 481px to 575px */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .text-primary {
        font-size: 1.25rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
    }
    
    .intro-wrap {
        order: 1;
    }
    
    .intro-wrap h1 {
        font-size: 32px;
    }
    
    .slides {
        order: 2;
        height: 350px;
        border-radius: 120px;
        width: 100%;
        display: block;
        position: relative;
        visibility: visible;
        margin-top: 30px;
    }
    
    .slides img {
        display: block !important;
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Services */
    .services-image img {
        min-height: 250px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card h3 {
        font-size: 16px;
    }
    
    .service-card .tour-rate,
    .service-card .tour-time {
        font-size: 13px;
    }
    
    /* Destinations */
    .media-thumb img {
        height: 280px;
    }
    
    .media-text h3 {
        font-size: 18px;
    }
    
    .media-text .location {
        font-size: 13px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    /* Testimonials */
    .carousel-btn {
        display: none;
    }
    
    .carousel-wrapper {
        gap: 0;
    }
    
    .carousel-indicators {
        margin-top: 1.5rem;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 24px;
    }
    
    .btn-outline {
        padding: 10px 30px;
    }
    
    /* Footer */
    .social-links {
        justify-content: center;
    }
    
    .contact-info svg {
        width: 14px;
        height: 14px;
    }
    
    /* Page-Specific */
    .hero-heading {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.75rem 2rem;
    }
    
    /* Tour Packages */
    .main-title {
        font-size: 2rem;
    }
    
    .tour-title {
        font-size: 1.75rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
}

/* EXTRA SMALL MOBILE: 320px to 480px */
@media (max-width: 480px) {
    /* Hero Section */
    .hero {
        padding: 70px 0 40px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
    }
    
    .intro-wrap {
        order: 1;
    }
    
    .intro-wrap h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .slides {
        order: 2;
        height: 300px;
        border-radius: 100px;
        width: 100%;
        display: block !important;
        position: relative;
        visibility: visible !important;
        margin-top: 25px;
    }
    
    .slides img {
        display: block !important;
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 1s;
    }
    
    .slides img.active {
        opacity: 1 !important;
    }
    
    /* Sections */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 26px;
        padding-bottom: 15px;
    }
    
    .section-title:after {
        width: 50px;
        height: 2px;
    }
    
    /* Packages */
    .packages_services p {
        font-size: 14px;
    }
    
    .service-card {
        padding: 18px 12px;
    }
    
    .service-card h3 {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .service-card .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Destinations */
    .destination-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .media-thumb img {
        height: 250px;
    }
    
    .media-text {
        padding: 20px 12px;
    }
    
    .media-text h3 {
        font-size: 16px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dot.active {
        width: 25px;
    }
    
    /* Testimonials */
    .testimonial-section {
        padding: 40px 0;
    }
    
    .testimonial-section .section-title {
        font-size: 24px;
        margin-bottom: 1.5rem;
    }
    
    .testimonial {
        padding: 25px 10px;
    }
    
    .name {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    blockquote p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    /* CTA */
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    /* Footer */
    .footer-main {
        padding: 30px 0 20px;
    }
    
    .widget p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .heading {
        font-size: 0.95rem;
    }
    
    .links a,
    .contact-info a {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .copyright p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* VERY SMALL DEVICES: up to 375px */
@media (max-width: 375px) {
    .intro-wrap h1 {
        font-size: 24px;
    }
    
    .slides {
        height: 280px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .service-card h3 {
        font-size: 14px;
    }
    
    .media-thumb img {
        height: 220px;
    }
    
    .cta-content h2 {
        font-size: 20px;
    }
}

/* LANDSCAPE ORIENTATION (Mobile) */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .intro-wrap h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .slides {
        height: 250px;
    }
    
    .hero-card {
        padding: 15px;
    }
    
    .section {
        padding: 30px 0;
    }
}