/* 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 {
        display: flex;
        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 {
        border: 2px solid var(--primary);
        border-radius: 20px;
        margin-top: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 150px; /* Give it some width on mobile */
    }

    .Shop a {
        padding: 8px 0 !important;
        width: 100%;
        text-align: center;
        color: var(--light);
        font-size: 18px;
        font-weight: 200;
        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 {
    padding: clamp(18px, 2vw, 25px);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.service-content h2 {
    font-size: clamp(1.35rem, 4.5vw, 1rem);
    color: white;
    margin-bottom: clamp(8px, 3vw, 12px);
    font-weight: 200;
}

.service-content p {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    opacity: 0.8;
    margin-bottom: clamp(12px, 4vw, 18px);
}

.service-content ul {
    list-style: none;
    margin-bottom: clamp(12px, 4vw, 18px);
    text-align: left;
    margin-left: calc(-1 * clamp(18px, 2vw, 25px));
    padding-left: clamp(18px, 2vw, 25px);
    width: calc(100% + clamp(18px, 2vw, 25px));
}

.service-content li {
    display: flex;
    margin-bottom: clamp(6px, 3vw, 10px);
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    opacity: 0.9;
    
    
}

.service-content li i {
    color: var(--primary);
    margin-right: 0px;
}
    /* 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: left;
    }
}