/* ========================================
   DESKTOP STYLES (Full View)
   ======================================== */

/* Page Header */
.services-page-header {
    background: linear-gradient(rgba(22, 163, 74, 0.8), rgba(22, 163, 74, 0.6)), url(../img/bannerpic1.webp) center center no-repeat;
    background-size: cover;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.services-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.services-page-header h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Container System */
.services-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.services-content-container {
    width: 100%;
}

/* Section Backgrounds */
.services-bg-light {
    background-color: #f8fafc;
}

.services-bg-primary {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
}

/* Grid System */
.services-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.services-row-no-gutter {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.services-col-half-third {
    flex: 1;
    min-width: 300px;
    max-width: calc(33.333% - 1.33rem);
}

.services-col-half-quarter {
    flex: 1;
    min-width: 250px;
    max-width: calc(25% - 1.125rem);
}

/* Typography */
.services-text-center {
    text-align: center;
}

.services-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-section-header h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #16a34a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-section-header p {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
}

/* Service Cards */
.info-sqr-box2 {
    background: white;
    border: 2px solid rgba(22, 163, 74, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info-sqr-box2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.15);
    border-color: rgba(22, 163, 74, 0.3);
}

.info-sqr-box2 i {
    color: #16a34a;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.info-sqr-box2 h4,
.info-sqr-box2 h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #16a34a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-decoration: none;
    border-bottom: none;
}

.info-sqr-box2 h4 {
    font-size: 1.2rem;
}

.info-sqr-box2 h5 {
    font-size: 1.1rem;
    color: #1f2937;
}

.info-sqr-box2 p {
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Buttons */
.services-btn {
    display: inline-block;
    background: white;
    color: #16a34a;
    padding: 12px 30px;
    border: 2px solid white;
    border-radius: 25px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.services-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

/* Call to Action Section */
.services-cta {
    text-align: center;
    padding: 4rem 2rem;
}

.services-cta h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.services-cta p {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* Spacing Utilities */
.services-mt-4 {
    margin-top: 2rem;
}

.services-mb-3 {
    margin-bottom: 1.5rem;
}

.services-mb-5 {
    margin-bottom: 3rem;
}

/* ========================================
   MOBILE STYLES (Mobile View)
   ======================================== */

@media (max-width: 768px) {
    /* Page Header */
    .services-page-header {
        padding: 3rem 0;
        margin-bottom: 2rem;
    }
    
    .services-header-container {
        padding: 0 1rem;
    }
    
    .services-page-header h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    /* Container System */
    .services-section-container {
        padding: 2rem 1rem;
    }
    
    /* Grid System */
    .services-row,
    .services-row-no-gutter {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .services-col-half-third,
    .services-col-half-quarter {
        max-width: 100%;
        min-width: 100%;
    }
    
    /* Section Headers */
    .services-section-header {
        margin-bottom: 2rem;
    }
    
    .services-section-header h2 {
        font-size: 1.5rem;
    }
    
    .services-section-header p {
        font-size: 1rem;
    }
    
    /* Service Cards */
    .info-sqr-box2 {
        padding: 1.5rem;
        min-height: 240px;
    }
    
    .info-sqr-box2 i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .info-sqr-box2 h4 {
        font-size: 1.1rem;
    }
    
    .info-sqr-box2 h5 {
        font-size: 1rem;
    }
    
    /* Call to Action */
    .services-cta {
        padding: 3rem 1rem;
    }
    
    .services-cta h3 {
        font-size: 1.6rem;
    }
    
    .services-cta p {
        font-size: 1rem;
    }
    
    /* Spacing Adjustments */
    .services-mt-4 {
        margin-top: 1.5rem;
    }
    
    .services-mb-5 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .services-page-header h1 {
        font-size: 1.5rem;
    }
    
    .services-section-header h2 {
        font-size: 1.3rem;
    }
    
    .info-sqr-box2 {
        padding: 1rem;
        min-height: 200px;
    }
    
    .info-sqr-box2 i {
        font-size: 2rem;
    }
}