/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .service-content, .service-image {
        flex: 100%;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .services-alt .service-content {
        padding-left: 0;
    }
    
    .about-content, .about-image {
        flex: 100%;
        padding: 0;
        display: block;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
    }

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

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display:inline-table;
    }

    /* Mobile Shop Styling */
    .Shop {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--primary);
        border-radius: 0;
        margin-top: 4px;
        padding: 0;
        height: 26px;
    }

    .Shop li {
        margin: 0;
    }

    .Shop a {
        padding: 5px 8px;
        color: var(--light);
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .btn {
        display: block;
        margin: 10px 0;
        width: 100%;
    }
    
    .btn-outline {
        margin-left: 0;
    }
    
    .stat-item {
        flex: 100%;
        margin-bottom: 30px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .service-content h2 {
        font-size: 2rem;
    }
    /* Center services-preview section and grid on mobile */
    .services-preview {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .services-preview .container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .services-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    .service-card {
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        overflow-x: hidden;
    }

    .contact {
        overflow-x: hidden;
    }

    .contact-details-grid {
        justify-content: flex-start;
    }

    .contact-details-column {
        align-items: flex-start;
        text-align: left;
    }

    .contact-details-column.contact-details-column--right {
        margin-left: 0;
    }

    .contact-header .contact-detail {
        justify-content: flex-start;
        text-align: left;
    }

    .contact-header .contact-detail span,
    .contact-header .contact-detail a {
        text-align: left;
    }
    
    .contact-form {
        padding: 15px 0;
        width: 100%;
        overflow-x: hidden;
        max-width: 100%;
    }

    .contact-form input[type="text"], 
    .contact-form input[type="email"], 
    .contact-form input[type="tel"],
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .containers {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .image-left {
        max-height: calc(0.5 * 600px);
        overflow: hidden;
    }

    .image-left img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 200px;
        object-fit: cover;
    }
    
    .footer-section {
        text-align: center;
    }
}