/* Global Overrides for Full Viewport */
html, body {
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important; /* Allow vertical scroll if content overflows */
}

.slide-container {
    width: 100vw !important;
    min-height: 100vh !important;
    height: auto !important; /* Allow growth */
    box-sizing: border-box !important;
    position: relative;
    overflow-x: hidden;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 1024px) {
    /* General stack for flex containers that are rows */
    .content-wrapper {
        flex-direction: column !important;
        padding: 20px !important;
        gap: 30px !important;
    }

    .header {
        padding: 20px !important;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }

    .col-left, .col-right {
        width: 100% !important;
        flex: none !important;
    }

    /* Adjust typography */
    .main-title, .header-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }

    .subtitle, .header-subtitle {
        font-size: 1.25rem !important;
    }

    /* Hide decorative huge backgrounds that might break layout or overlay content */
    .truck-illustration {
        font-size: 200px !important;
        bottom: 10px !important;
        right: 10px !important;
    }

    .bg-shape-1, .bg-shape-2 {
        /* Keep them but ensure they don't block text */
    }
}

@media (max-width: 640px) {
    .main-title {
        font-size: 2rem !important;
    }
    
    .brand-logo {
        font-size: 1.8rem !important;
    }

    .tagline-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px !important;
    }

    .tagline-icon {
        margin-bottom: 10px;
    }
    
    .nav-buttons {
        bottom: 10px !important;
        right: 10px !important;
        gap: 10px !important;
    }
    
    .nav-btn {
        padding: 8px 16px !important;
        font-size: 0.9rem !important;
    }

    .contact-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Stylish Navigation Buttons */
.nav-buttons {
    position: fixed;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 20px;
    z-index: 9999; /* Ensure on top */
}

.nav-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.nav-btn:active {
    transform: translateY(-1px);
}

.nav-btn i {
    font-size: 0.9em;
}

/* Hide buttons when printing or if desired */
@media print {
    .nav-buttons { display: none; }
}
