/* ===================================
   SERVICES.HTML SPECIFIC STYLES
   =================================== */

/* Services Page Dark Theme */
body#page-services {
    background-color: #202020;
    color: #ffffff;
}

/* Services Section Styles */
.service-item {
    margin-bottom: 3rem;
}

.service-mock-image {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 2rem;
}

.service-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.service-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Store Buttons - Device Optimized */
.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.store-btn {
    width: 180px;
    height: auto;
    max-height: 70px;
    min-height: 44px;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.2s ease;
    border-radius: 0;
    cursor: pointer;
    display: block;
}

.store-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15);
    filter: brightness(1.1);
}

.store-btn:active {
    transform: translateY(-2px) scale(1.01);
    transition: transform 0.1s ease;
}

/* Service Item Images */
.service-item-image {
    max-width: 300px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.service-item-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-item-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 0;
}

/* ===================================
   RESPONSIVE DESIGN - DEVICE OPTIMIZED
   =================================== */

/* Large Desktop (1200px+) - Enhanced for large screens */
@media (min-width: 1200px) {
    .store-btn {
        width: 200px;
        max-height: 75px;
    }
    
    .store-buttons {
        gap: 2rem;
    }
}

/* Desktop/Laptop (992px - 1199px) - Standard desktop experience */
@media (max-width: 1199px) and (min-width: 992px) {
    .store-btn {
        width: 170px;
        max-height: 65px;
    }
    
    .store-buttons {
        gap: 1.5rem;
    }
}

/* Tablet Landscape/Small Desktop (768px - 991px) - Touch optimized */
@media (max-width: 991px) and (min-width: 768px) {
    .store-btn {
        width: 160px;
        max-height: 62px;
        min-height: 48px;
    }
    
    .store-buttons {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .service-item h4 {
        font-size: 1.8rem;
    }
    
    .service-item p {
        font-size: 1.05rem;
    }
}

/* Tablet Portrait (576px - 767px) - Vertical layout transition */
@media (max-width: 767px) and (min-width: 576px) {
    .store-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .store-btn {
        width: 155px;
        max-height: 62px;
        min-height: 50px;
    }
    
    .service-item h4 {
        font-size: 1.6rem;
    }
    
    .service-item p {
        font-size: 1rem;
    }
    
    .service-item-content h4 {
        font-size: 1.5rem;
    }
    
    .service-item-content p {
        font-size: 0.95rem;
    }
    
    .service-item-image {
        max-width: 280px;
    }
}

/* Mobile Large (480px - 575px) - Single column, thumb-friendly */
@media (max-width: 575px) and (min-width: 480px) {
    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .store-btn {
        width: 150px;
        max-height: 60px;
        min-height: 48px;
    }
    
    .service-item h4 {
        font-size: 1.5rem;
    }
    
    .service-item p {
        font-size: 0.95rem;
    }
    
    .service-item-content h4 {
        font-size: 1.4rem;
    }
    
    .service-item-content p {
        font-size: 0.9rem;
    }
    
    .service-mock-image,
    .service-item-image {
        max-width: 250px;
    }
}

/* Mobile Small (320px - 479px) - Compact but accessible */
@media (max-width: 479px) {
    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-top: 1.2rem;
    }
    
    .store-btn {
        width: 140px;
        max-height: 56px;
        min-height: 48px;
    }
    
    .store-btn:hover {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.12);
    }
    
    .service-item h4 {
        font-size: 1.4rem;
    }
    
    .service-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .service-item-content h4 {
        font-size: 1.3rem;
    }
    
    .service-item-content p {
        font-size: 0.85rem;
    }
    
    .service-mock-image,
    .service-item-image {
        max-width: 200px;
    }
}

/* Mobile Tiny (< 320px) - Minimal but functional */
@media (max-width: 319px) {
    .store-btn {
        width: 130px;
        max-height: 52px;
        min-height: 48px;
    }
    
    .store-buttons {
        gap: 0.6rem;
    }
    
    .service-item h4 {
        font-size: 1.2rem;
    }
    
    .service-item p {
        font-size: 0.85rem;
    }
}