/* ══════════════════════════════
   SERVICE SECTION
══════════════════════════════ */
.service-section {
    padding: 70px 0;
    background: #f8faff;
    position: relative;
    overflow: hidden;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #00c9a7, #0d6efd);
    background-size: 200% 100%;
    animation: shimmer-line 3s linear infinite;
}

@keyframes shimmer-line {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Section Header ── */
.service-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #0d6efd;
    margin-bottom: 12px;
}

.service-section .section-label::before {
    content: '';
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #00c9a7);
    border-radius: 3px;
    display: inline-block;
}

.service-section .section-heading {
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    font-weight: 900;
    color: #0d1e3a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.service-section .section-heading span {
    color: #0d6efd;
}

/* ── Before/After Image Container ── */
.service-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 420px;
    box-shadow: 0 20px 60px rgba(13, 30, 58, 0.18);
}

.service-img-container .img-badge-floating {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #0d6efd;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(13,110,253,0.4);
    display: flex;
    align-items: center;
    gap: 7px;
}

.service-img-container .img-badge-floating i {
    font-size: 0.85rem;
}

/* ── Service Cards ── */
.service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.32s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 44px rgba(13,110,253,0.15);
}

.service-card-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.06);
}

.service-card-img-wrap {
    overflow: hidden;
    position: relative;
}

.service-card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,30,58,0.35) 0%, transparent 60%);
    pointer-events: none;
}

.service-card-body {
    padding: 16px 18px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #e9f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: background 0.25s, color 0.25s;
}

.service-card:hover .service-card-icon {
    background: #0d6efd;
    color: #fff;
}

.service-card-body h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0d1e3a;
    margin: 0;
    line-height: 1.3;
}

/* ── Offer Card ── */
.offer-card {
    background: linear-gradient(145deg, #0a1628, #0d2444);
    border-radius: 20px;
    padding: 36px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.12);
    pointer-events: none;
}

.offer-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(0, 201, 167, 0.07);
    pointer-events: none;
}

.offer-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(13,110,253,0.2);
    border: 1px solid rgba(13,110,253,0.35);
    color: #5bc8f5;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    width: fit-content;
}

.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.offer-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 24px;
}

.offer-card-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 22px;
}

.offer-card-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-card-phone-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(13,110,253,0.4);
    animation: phone-pulse 2s ease-in-out infinite;
}

@keyframes phone-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(13,110,253,0.4); }
    50% { box-shadow: 0 4px 25px rgba(13,110,253,0.7); }
}

.offer-card-phone-text small {
    display: block;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.offer-card-phone-text a {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: -0.5px;
}

.offer-card-phone-text a:hover {
    color: #5bc8f5;
}

/* ── Section Divider Row ── */
.service-row-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #dee2e6, transparent);
    margin: 50px 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .service-img-container {
        min-height: 280px;
        margin-bottom: 10px;
    }
    .offer-card {
        padding: 28px 22px;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .service-section { padding: 50px 0; }
    .service-card-img { height: 140px; }
    .offer-card h3 { font-size: 1.2rem; }
}