/* Services Page Redesign CSS */

:root {
    --primary-navy: #101c26;
    /* Dark Navy for Text/Footer */
    --accent-green: #25D366;
    /* Bright Green - Exact Match */
    --text-dark: #191c20;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Reset / Fonts inherited from script.css/bootstrap */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

a {
    text-decoration: none;
}

/* =========================================
   Header/Nav Global Fixed
   ========================================= */
header#header {
    z-index: 1000;
}

/* Header Button Special */
.btn-green-quote {
    background-color: var(--accent-green) !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-green-quote:hover {
    background-color: #1eb655 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* =========================================
   Hero Section
   ========================================= */
.services-hero {
    /* Gradient: Dark Navy to slightly lighter/greenish navy */
    background: linear-gradient(135deg, #0f1c29 0%, #1a3c3f 100%);
    padding: 180px 0 120px;
    color: var(--white);
    position: relative;
}

.hero-badge {
    background-color: rgba(37, 211, 102, 0.15);
    /* Transparent Green */
    color: var(--accent-green);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 24px;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--white);
}

.services-hero h1 .text-green {
    color: var(--accent-green);
}

.services-hero p {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
}

/* =========================================
   Service Sections
   ========================================= */
.service-section {
    padding: 100px 0;
    background-color: var(--white);
}

.bg-alternating {
    background-color: #fcfcfc;
    /* Extremely subtle grey variation or strictly white? Screenshot typically alternates white/white or white/light-grey. Using subtle grey to differentiate slightly. */
    background-color: #ffffff;
    /* Sticking to white based on "replica" request unless screenshot shows grey bg. Assuming straight white for cleanness. */
}

/* Adjustments if alternating background color is absolutely required by screenshot interpretation:
   If screenshot shows distinct bands, use:
   .bg-alternating { background-color: #f9fafb; }
   For now, keeping white as it's safer for "clean" look unless specified.
*/

.service-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 25px;
    color: var(--white);
}

/* Icon Colors */
.icon-orange {
    background-color: #ff9f1c;
}

.icon-red {
    background-color: #e63946;
}

.icon-grey {
    background-color: #495057;
}

.icon-blue {
    background-color: #0077b6;
}

.icon-purple {
    background-color: #7209b7;
}

.icon-green {
    background-color: #2a9d8f;
}

/* Or accent green */

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.service-list li i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.service-img-wrapper img {
    border-radius: 24px;
    /* Soft rounding */
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.service-img-wrapper img:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

/* Buttons */
.btn-green {
    background-color: var(--accent-green);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-green);
}

.btn-green:hover {
    background-color: #1eb655;
    border-color: #1eb655;
    color: var(--white);
}

.btn-outline-green {
    background-color: transparent;
    color: var(--accent-green);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-green);
}

.btn-outline-green:hover {
    background-color: var(--accent-green);
    color: var(--white);
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    padding: 100px 0;
    background-color: var(--accent-green);
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-section p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.btn-white {
    background-color: var(--white);
    color: var(--accent-green);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--accent-green);
    transform: translateY(-3px);
}

/* =========================================
   Responsive Adjustments
   ========================================= */

/* =========================================
   MOBILE-FIRST RESPONSIVE OVERRIDES (Services)
   ========================================= */

@media (max-width: 768px) {

    /* Services Hero */
    .services-hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .services-hero h1 {
        font-size: 2.2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    /* Service Sections */
    .service-section {
        padding: 50px 0;
    }

    .service-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .service-content h2 {
        font-size: 2rem;
    }

    .service-icon-box {
        margin: 0 auto 20px;
        /* Center icon */
    }

    .service-list {
        display: inline-block;
        text-align: left;
        /* Keep list items left aligned but centered block */
        margin-bottom: 30px;
    }

    .service-img-wrapper {
        margin-bottom: 30px;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        gap: 15px !important;
    }

    .btn-green,
    .btn-outline-green {
        width: 100%;
        justify-content: center;
    }

    /* CTA */
    .cta-section {
        padding: 60px 0;
        text-align: center;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .btn-white,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
}