/* --- GLOBAL UTILS --- */
.section-padding { padding: 100px 20px; }
.hero-container { max-width: 1200px; margin: 0 auto; width: 100%; }
.light-bg { background-color: #f8fafc; }
.text-center { text-align: center; }
.sub-heading { color: #0ca395; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; display: block; margin-bottom: 10px; }
.section-header { margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; color: #0b2239; margin-bottom: 15px; }
.section-header p { color: #64748b; font-size: 1.1rem; }

/* --- PAGE HERO BANNER --- */
.page-hero {
    position: relative;
    padding: 180px 20px 140px;
    background: linear-gradient(135deg, #0b2239 0%, #0ca395 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px; opacity: 0.2;
}
.relative-z { position: relative; z-index: 2; }
.page-hero h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; }
.page-hero p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* Angled Divider */
.custom-shape-divider-bottom {
    position: absolute; bottom: -1px; left: 0; width: 100%;
    overflow: hidden; line-height: 0; z-index: 3;
}
.custom-shape-divider-bottom svg { display: block; width: calc(100% + 1.3px); height: 70px; }
.custom-shape-divider-bottom .shape-fill { fill: #ffffff; }

/* --- DETAILED SERVICES LAYOUT --- */
.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}
.service-row:last-child {
    margin-bottom: 0;
}
.service-row.reversed {
    flex-direction: row-reverse;
}

.service-image-col {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.service-image-col img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.service-row:hover .service-image-col img {
    transform: scale(1.05);
}

.service-icon-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #0ca395;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(12, 163, 149, 0.4);
}
.service-row.reversed .service-icon-badge {
    right: auto;
    left: 30px;
}

.service-text-col {
    flex: 1;
}
.service-label {
    color: #1b84f5;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}
.service-text-col h2 {
    font-size: 2.2rem;
    color: #0b2239;
    margin-bottom: 20px;
    line-height: 1.2;
}
.service-text-col p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-list {
    list-style: none;
    margin-bottom: 35px;
}
.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #0b2239;
    font-weight: 500;
}
.service-list li i {
    color: #0ca395;
    font-size: 1.2rem;
    margin-top: 3px;
}

.btn-outline-primary {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid #0ca395;
    color: #0ca395;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-outline-primary:hover {
    background: #0ca395;
    color: white;
    box-shadow: 0 10px 20px rgba(12, 163, 149, 0.2);
}

/* --- WORK PROCESS --- */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: #0ca395;
    border: 3px solid #0ca395;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(12, 163, 149, 0.15);
    transition: all 0.3s ease;
}
.step-card:hover .step-icon {
    background: #0ca395;
    color: white;
    transform: scale(1.1);
}

.step-card h4 {
    font-size: 1.15rem;
    color: #0b2239;
    margin-bottom: 15px;
}

.step-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    color: #cbd5e1;
    font-size: 1.5rem;
}

/* --- BOTTOM CTA --- */
.bottom-cta {
    background: #0ca395;
    padding: 80px 20px;
    text-align: center;
    color: white;
    margin: 40px 20px;
    border-radius: 24px;
}
.bottom-cta h2 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 800; }
.bottom-cta p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 35px; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-primary-large, .btn-secondary-large { display: inline-flex; align-items: center; gap: 10px; padding: 18px 35px; border-radius: 50px; font-size: 1.1rem; font-weight: 700; text-decoration: none; transition: 0.3s; }
.btn-primary-large { background: white; color: #0ca395; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn-primary-large:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.btn-secondary-large { background: transparent; color: white; border: 2px solid white; }
.btn-secondary-large:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .service-row, .service-row.reversed { flex-direction: column; gap: 40px; margin-bottom: 80px; }
    .service-image-col { width: 100%; }
    .service-image-col img { height: 350px; }
    .service-text-col { text-align: center; padding: 0 15px; }
    .service-list li { text-align: left; }
    
    .process-steps { flex-direction: column; gap: 40px; align-items: center; }
    .step-arrow { display: none; }
    .step-card { max-width: 400px; }
}

@media (max-width: 768px) {
    .page-hero h1 { font-size: 2.5rem; }
    .service-text-col h2 { font-size: 1.8rem; }
    .bottom-cta { margin: 20px; padding: 60px 20px; }
    .cta-buttons { flex-direction: column; }
    .btn-primary-large, .btn-secondary-large { justify-content: center; width: 100%; }
}