/* =========================================
   📱 MOBILE RESPONSIVE ADD-ONS (Append to end of home.css)
   Safe & Non-Breaking - Only adds mobile rules
   ========================================= */

/* ===== GLOBAL MOBILE BASE ===== */
@media (max-width: 991px) {
    
    /* --- Header & Navigation --- */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }
    .menu-toggle span, 
    .menu-toggle i {
        font-size: 20px;
        color: var(--primary-orange, #f07323);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background: #fff;
        padding: 70px 20px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    
    .nav-links {
        flex-direction: column;
        gap: 2px;
        margin: 0;
        padding: 0;
    }
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 15px;
        color: #333;
        text-decoration: none;
    }
    .nav-links a.active {
        color: var(--primary-orange);
        font-weight: 600;
    }
    
    /* Mobile Dropdown */
    .has-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: #f9f9f9;
        padding: 0 0 0 15px;
        margin: 5px 0;
        border-radius: 4px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: block !important;
    }
    .dropdown-menu.show {
        max-height: 600px;
    }
    .dropdown-menu li a {
        padding: 10px 0;
        font-size: 14px;
        color: #555;
    }
    .dropdown-menu .svc-desc {
        display: none;
    }
    
    /* Menu Overlay */
    .menu-overlay {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }
    .nav-menu.active ~ .menu-overlay,
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Hide desktop call box, show in menu */
    .header-call-box { display: none; }
    .mobile-call-box {
        display: block !important;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }
    
    /* --- Hero Section --- */
    .hero-slider-wrap,
    .hero {
        height: auto !important;
        min-height: 500px;
        padding-bottom: 30px;
    }
    .hero-slide, .hero {
        padding: 0 15px !important;
    }
    .hero-slide h1.main-text,
    .hero h1 {
        font-size: clamp(28px, 8vw, 42px) !important;
        line-height: 1.2 !important;
    }
    .hero-slide h2.top-text,
    .hero-slide h2.bottom-text,
    .hero-top-text,
    .hero-bottom-text {
        font-size: clamp(13px, 3.5vw, 15px) !important;
        line-height: 1.5 !important;
    }
    .scroll-down {
        bottom: 20px !important;
        right: 50% !important;
        transform: translateX(50%) !important;
    }
    
    /* --- Booking Form --- */
    .booking-wrapper {
        margin-top: 20px !important;
        width: 95% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .booking-header {
        flex-direction: column !important;
        text-align: center !important;
        padding: 15px 20px !important;
        gap: 12px !important;
    }
    .booking-header h3 {
        font-size: 22px !important;
    }
    .booking-tabs {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 15px !important;
    }
    .booking-body {
        padding: 10px 20px 25px !important;
    }
    .booking-form {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    .track-layout {
        grid-template-columns: 1fr !important;
    }
    .form-group input,
    .form-group select {
        padding: 11px 14px !important;
        font-size: 14px !important;
    }
    .btn-submit {
        width: 100% !important;
        justify-content: center !important;
        padding: 0 20px !important;
        height: 44px !important;
        font-size: 14px !important;
    }
    
    /* --- About Section --- */
    .about-section {
        flex-direction: column !important;
        text-align: center !important;
        gap: 35px !important;
        padding: 30px 0 60px !important;
    }
    .about-title-wrapper {
        justify-content: center !important;
    }
    .about-image {
        text-align: center !important;
    }
    .about-image img {
        max-width: 100% !important;
        height: auto !important;
    }
    .about-title-wrapper h2 {
        font-size: 32px !important;
    }
    
    /* --- Crew Showcase (Critical Fix) --- */
    .crew-showcase-section {
        padding-bottom: 60px !important;
        overflow: hidden !important;
    }
    .crew-relative-wrapper {
        padding-left: 0 !important;
        max-width: 100% !important;
    }
    .crew-main-image {
        width: 100% !important;
    }
    .orange-truck-image {
        position: relative !important;
        width: 90% !important;
        right: auto !important;
        bottom: auto !important;
        margin: 25px auto 0 !important;
        display: block !important;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15)) !important;
    }
    .orange-dashed-bar {
        position: relative !important;
        bottom: auto !important;
        left: 0 !important;
        width: 100% !important;
        height: 12px !important;
        margin: 20px 0 !important;
    }
    .crew-section-title {
        margin-top: 25px !important;
    }
    .crew-section-title h2 {
        font-size: 28px !important;
    }
    
    /* --- Services Grid --- */
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .service-card img {
        height: 180px !important;
    }
    .section-header-center h2 {
        font-size: 28px !important;
    }
    
    /* --- Sister Concern --- */
    .infographic-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .timeline-line,
    .timeline-dot {
        display: none !important;
    }
    .sister-concern-bg::before {
        top: 0 !important;
        opacity: 0.7 !important;
    }
    .sister-concern-bg {
        margin-top: 40px !important;
        padding-top: 30px !important;
    }
    .info-number {
        font-size: 90px !important;
        margin-bottom: -30px !important;
    }
    .info-box {
        padding: 0 15px 65px !important;
    }
    .info-box h4 {
        font-size: 14px !important;
        padding: 14px 10px !important;
        width: calc(100% + 20px) !important;
        left: -10px !important;
    }
    .globe-wrapper {
        width: 85px !important;
        height: 85px !important;
        bottom: -42px !important;
    }
    .globe-inner {
        width: 60px !important;
        height: 60px !important;
        font-size: 24px !important;
    }
    
    /* --- News Section --- */
    .news-split {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .news-header {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }
    .news-list-item {
        flex-direction: column !important;
    }
    .news-list-item img {
        width: 100% !important;
        height: 180px !important;
        margin-top: 12px !important;
    }
    .news-title-area h2 {
        font-size: 30px !important;
    }
    
    /* --- Testimonials --- */
    .testimonial-split {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 35px !important;
    }
    .client-card {
        border-radius: 20px !important;
        padding: 20px 25px !important;
    }
    .client-card-inner {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }
    .quote-mark {
        margin: 10px auto 0 !important;
    }
    .testimonial-controls-area {
        flex-direction: column !important;
        gap: 15px !important;
    }
    .section-header-center h2 {
        font-size: 30px !important;
    }
}

/* ===== TABLET & SMALL MOBILE (767px and below) ===== */
@media (max-width: 767px) {
    
    /* Global */
    .container {
        padding: 0 15px !important;
    }
    
    /* Hero */
    .hero-slider-wrap,
    .hero {
        min-height: 450px !important;
    }
    .hero-slide h1.main-text,
    .hero h1 {
        font-size: clamp(24px, 9vw, 36px) !important;
    }
    
    /* Booking */
    .booking-wrapper {
        margin-top: 15px !important;
    }
    .booking-header h3 {
        font-size: 20px !important;
    }
    .booking-tabs {
        gap: 12px !important;
        font-size: 13px !important;
    }
    
    /* Crew */
    .orange-truck-image {
        width: 95% !important;
    }
    .orange-dashed-bar {
        height: 10px !important;
    }
    .crew-section-title h2 {
        font-size: 24px !important;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    .service-card img {
        height: 200px !important;
    }
    
    /* Sister Concern */
    .info-number {
        font-size: 70px !important;
    }
    .info-box h4 {
        font-size: 13px !important;
    }
    .info-box ul {
        font-size: 11px !important;
    }
    
    /* Bottom Sections */
    .bottom-sections-wrapper {
        margin-top: 60px !important;
        padding: 50px 0 70px !important;
    }
}

/* ===== MOBILE (480px and below) ===== */
@media (max-width: 480px) {
    
    /* Header */
    .top-bar-flex {
        flex-direction: column !important;
        text-align: center !important;
        gap: 6px !important;
        font-size: 12px !important;
    }
    .logo-text .title {
        font-size: 15px !important;
    }
    .logo-text .subtitle {
        font-size: 9px !important;
        display: none; /* Hide subtitle on very small screens */
    }
    
    /* Hero */
    .hero,
    .hero-slider-wrap {
        padding: 80px 10px 160px !important;
        min-height: 420px !important;
    }
    .hero-slide h1.main-text,
    .hero h1 {
        font-size: clamp(22px, 10vw, 30px) !important;
    }
    .hero-slide h2.top-text,
    .hero-slide h2.bottom-text,
    .hero-top-text,
    .hero-bottom-text {
        font-size: 13px !important;
    }
    
    /* Booking */
    .booking-header {
        padding: 12px 15px !important;
    }
    .booking-header h3 {
        font-size: 18px !important;
    }
    .form-group label {
        font-size: 13px !important;
    }
    .form-group input,
    .form-group select {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }
    .btn-submit {
        font-size: 13px !important;
        height: 42px !important;
    }
    
    /* About */
    .about-title-wrapper h2 {
        font-size: 26px !important;
    }
    .btn-read-more {
        padding: 10px 25px !important;
        font-size: 12px !important;
    }
    
    /* Services */
    .section-header-center h2 {
        font-size: 24px !important;
    }
    .service-card img {
        height: 170px !important;
    }
    .service-card h3 {
        font-size: 14px !important;
        padding: 12px !important;
    }
    
    /* Sister Concern */
    .info-number {
        font-size: 55px !important;
    }
    .info-box h4 {
        font-size: 12px !important;
        padding: 12px 8px !important;
    }
    .globe-wrapper {
        width: 70px !important;
        height: 70px !important;
    }
    
    /* News */
    .news-title-area h2 {
        font-size: 26px !important;
    }
    .news-list-item .text h4 {
        font-size: 14px !important;
    }
    .featured-text h3 {
        font-size: 17px !important;
    }
    
    /* Testimonials */
    .section-header-center h2 {
        font-size: 26px !important;
    }
    .client-card {
        padding: 15px 20px !important;
        border-radius: 15px !important;
    }
    .client-logo {
        width: 50px !important;
        height: 50px !important;
    }
    .client-details h4 {
        font-size: 15px !important;
    }
    .review-title {
        font-size: 14px !important;
    }
    
    /* Footer spacing */
    .bottom-sections-wrapper {
        margin-top: 50px !important;
    }
}

/* ===== TOUCH OPTIMIZATIONS (Mobile Devices) ===== */
@media (hover: none) and (pointer: coarse) {
    .nav-links a,
    .tab,
    .btn-submit,
    .btn-read-more,
    .nav-arrow,
    .btn-see-more {
        min-height: 44px; /* Apple recommended touch target */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Prevent iOS zoom on input focus */
    input, select, textarea {
        font-size: 16px !important;
    }
}

/* ===== ACCESSIBILITY: Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}