@media screen and (min-width: 992px) {
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #mobileMenu {
        display: flex;
        position: static;
        width: auto;
        height: auto;
        background: none;
        box-shadow: none;
        flex-direction: row;
    }
}

/* TABLET tapos MOBILE adi - 991px pababa */
@media screen and (max-width: 991px) {

    /* dito yung header.php */
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        position: relative;
    }

    .menu-toggle {
        display: block;
        font-size: 30px;
        color: #6ce8ff;
        cursor: pointer;
        z-index: 9999;
    }

    #mobileMenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #08131f;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s ease;
        z-index: 9998;
    }

    #mobileMenu.active {
        right: 0;
    }

    #mobileMenu li {
        list-style: none;
    }

    #mobileMenu li a {
        color: white;
        font-size: 22px;
        text-decoration: none;
        font-weight: 600;
    }

    .logo-text p {
        display: none;
    }

    .destination-section {
        flex-direction: column;
        padding: 60px 5%;
        gap: 40px;
    }

    .destination-gallery,
    .destination-content {
        width: 100%;
        max-width: 100%;
    }
    
    .destination-content h2 {
        font-size: 42px;
        text-align: center;
    }

/* dito yung ABOUT.PHP */
    .about-hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 5% 50px;
        gap: 40px;
    }

    .about-left {
        max-width: 100%;
    }

    .about-highlights {
        justify-content: center;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

/* dito yung SERVICES.PHP */
    .services-hero {
        padding: 100px 5% 50px;
    }

    .vehicle-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

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

/* MOBILE PHONES adi - 768px pababa   */

@media (max-width: 768px) {
    
/* adi start nung HEADER.PHP */ 
    .topbar {
        padding: 10px 5%;
        justify-content: center;
        font-size: 14px;
    }

    nav {
        padding: 15px 5%;
    }

    .logo-area img {
        height: 50px; 
    }

    .logo-text h1 {
        font-size: 22px;
    }

/* adi start nung INDEX.PHP */
    .hero {
        height: auto;
        min-height: 70vh;
        padding: 80px 5%;
    }

    .overlay h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-btn {
        font-size: 16px;
        padding: 12px 34px;
        margin-top: 30px;
    }

    .services {
        padding: 30px 5%;
        padding-bottom: 10px;
        gap: 15px;
    }

    .service-card {
        width: 100%;
        min-height: auto;
        padding: 20px 15px;
    }

    .destination-section,
    .testimonial-section,
    .premium-contact-section {
        padding: 25px 5%;
    }

    .destination-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .destination-content h2 {
        font-size: 28px;
        text-align: left;
    }

    .destination-button {
        font-size: 14px;
        padding: 12px 24px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .testimonial-header h2 {
        font-size: 28px;
    }

    .testimonial-header p {
        font-size: 14px;
    }

    .testimonial-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .testimonial-card {
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
    }

    .testimonial-card::before {
        display: none;
    }

    .testimonial-card h3 {
        font-size: 18px;
    }

    .testimonial-card p {
        font-size: 14px;
    }

    .contact-container {
        padding: 40px 20px;
    }

    .contact-container h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .contact-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

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

    .contact-card {
        padding: 20px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
        min-height: auto;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .contact-icon i {
        font-size: 30px;
    }

    .contact-text {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-text h3 {
        font-size: 16px;
        margin-bottom: 4px;
        line-height: 1.2;
    }

    .contact-text span {
        font-size: 13px;
        line-height: 1.4;
    }    

    /* adi man su ABOUT.PHP */

    .about-left h1 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .about-left p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .highlight-box {
        padding: 15px 20px;
        min-width: 100px;
        flex: 1;
    }

    .highlight-box h3 {
        font-size: 24px;
    }

    .highlight-box span {
        font-size: 13px;
    }

    .top-images {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .small-image img {
        height: 150px;
    }

    .main-image img {
        height: 250px;
    }

    .team-section {
        padding: 50px 5%;
    }

    .team-header h2 {
        font-size: 28px;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .team-card {
        padding: 15px 10px;
    }
    
    .team-card img {
        height: 140px;
        margin-bottom: 12px;
    }

    .team-name {
        font-size: 16px;
    }

    .team-role {
        font-size: 12px;
    }

    /* adi man su SERVICES.PHP */
    .services-hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .services-hero p {
        font-size: 15px;
    }

    .country-section,
    .vehicle-section,
    .process-section {
        padding: 50px 5%;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .vehicle-section .section-title {
        font-size: 24px;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .country-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .country-card img {
        height: 130px;
    }

    .country-card h3 {
        padding: 15px 10px;
        font-size: 16px;
    }

    .vehicle-grid {
        grid-template-columns: 1fr; 
        gap: 25px;
    }

    .vehicle-card img {
        height: 200px;
    }

    .vehicle-card h3 {
        font-size: 20px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .process-card {
        padding: 25px 20px;
    }

    .process-card span {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .process-card h3 {
        font-size: 18px;
    }

    .process-card p {
        font-size: 14px;
    }

    .other-country-wrapper {
        margin-top: 40px;
        padding: 0;
    }

    .other-country-top {
        height: 180px;
    }

    .world-map {
        width: 220px;
    }

    .other-country-bottom {
        padding: 25px 15px;
    }

    .other-country-bottom h3 {
        font-size: 24px;
    }

    .other-country-bottom p {
        font-size: 14px;
    }

    .country-popup {
        padding: 35px 20px;
        border-radius: 20px;
    }

    .popup-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .country-popup h2 {
        font-size: 22px;
    }

    .country-popup p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .popup-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .popup-book-btn,
    .popup-close-btn {
        width: 100%;
        padding: 16px;
        font-size: 16px;
        box-sizing: border-box;
    }

    /* dito yung REVIEWS.PHP */

    .review-page {
        padding: 50px 5%;
    }
    
    .review-intro h1 {
        font-size: 32px;
    }
    
    .review-intro p {
        font-size: 15px;
    }
    
    .review-form-box {
        padding: 25px 15px;
        margin-bottom: 30px;
    }

    .review-form-box input {
        padding: 15px 25px;
        font-size: 16px;
    }

    .review-form-box select {
        padding: 15px 25px;
        font-size: 14px;
    }

    .review-form-box input[type="file"] {
        padding: 10px 20px;
        font-size: 14px;
    }

    .review-form-box form button {
        padding: 14px 25px;
    }
    
    .review-form-box h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .review-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .review-box {
        padding: 15px 10px;
        min-height: auto;
    }

    .review-box img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
        border-width: 2px;
    }
    
    .review-box h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .review-box .stars {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .review-box p {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 0;
    }

    /* dito naman yung sa BOOK.PHP */

    .booking-hero {
        padding: 100px 5% 50px;
    }

    .booking-header h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .booking-header p {
        font-size: 15px;
        line-height: 1.5;
    }

    .booking-form {
        padding: 25px 15px;
        border-radius: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-form input:not([type="checkbox"]),
    .booking-form select,
    .booking-form textarea {
        padding: 14px 15px;
        font-size: 15px;
        border-radius: 12px;
    }
    
    .input-box label,
    .form-group label {
        font-size: 15px;
    }

    .extras {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    
    .extra-card {
        padding: 15px;
        min-width: 100%;
        border-radius: 15px;
    }
    
    .extra-content h3 {
        font-size: 16px;
    }
    
    .extra-content p {
        font-size: 13px;
    }
    
    .booking-btn {
        padding: 18px;
        font-size: 18px;
    }
    
    .booking-popup {
        padding: 30px 20px;
        width: 95%;
    }
    
    .booking-popup h2 {
        font-size: 26px;
    }
    
    .booking-popup p {
        font-size: 15px;
    }
    
    .booking-popup button {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }
}