/* ==========================================
   SERVICES PAGE STYLES
   Matches Navy Blue + Coral Branding
========================================== */

:root {
    --navy: #0A2540;
    --coral: #FE623A;
    --coral-hover: #ff5252;
    --light: #F5F7FA;
    --white: #ffffff;
    --dark: #333333;
    --border: #E5EAF0;
    --text-light: #6B7280;
}

/* ==========================================
   GLOBAL
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .08);
}

.logo {
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 200px;
    height: 200px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 600;
    transition: .3s;
}

.nav-links a:hover {
    color: var(--coral);
}

.nav-btn {
    text-decoration: none;
    background: var(--coral);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 90px 0;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/* ==========================================
   BUTTONS
========================================== */

.btn-primary {
    display: inline-block;
    background: var(--coral);
    color: white;
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 700;
    transition: all .3s ease;
}

.btn-primary:hover {
    background: var(--coral-hover);
    transform: translateY(-2px);
}

/* ==========================================
   HERO SECTION
========================================== */

.services-hero {
    background: linear-gradient(135deg,
            var(--navy) 0%,
            #12385d 100%);
    color: white;
    text-align: center;
    padding: 120px 0;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-weight: 600;
}

.services-hero h1 {
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto 25px;
}

.services-hero p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    opacity: .9;
}

/* ==========================================
   SERVICES OVERVIEW
========================================== */

.services-overview {
    background: var(--light);
}

.services-overview h2 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
    transition: all .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
}

/* ==========================================
   SERVICE DETAIL SECTIONS
========================================== */

.service-detail {
    background: white;
}

.alt-section {
    background: var(--light);
}

.service-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.service-label {
    display: inline-block;
    color: var(--coral);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.service-header h2 {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.service-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ==========================================
   DETAIL BOXES
========================================== */

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.detail-box {
    background: white;
    border-radius: 15px;
    padding: 35px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
}

.alt-section .detail-box {
    background: white;
}

.detail-box h3 {
    color: var(--navy);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--coral);
}

.detail-box ul li {
    padding: 12px 0;
    border-bottom: 1px solid #edf1f5;
    position: relative;
    padding-left: 30px;
}

.detail-box ul li:last-child {
    border-bottom: none;
}

.detail-box ul li::before {
    content: "✓";
    color: var(--coral);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ==========================================
   PROCESS SECTION
========================================== */

.process-section {
    background: var(--navy);
    color: white;
}

.process-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: .9;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-step {
    background: rgba(255, 255, 255, .08);
    padding: 35px;
    border-radius: 15px;
    transition: all .3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-5px);
}

.step-number {
    display: inline-flex;
    width: 55px;
    height: 55px;
    background: var(--coral);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    margin-bottom: 15px;
}

/* ==========================================
   SERVICES CTA
========================================== */

.services-cta {
    background: linear-gradient(135deg,
            var(--coral),
            #ff8585);
    color: white;
    text-align: center;
}

.services-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.services-cta p {
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 1.1rem;
}

.services-cta .btn-primary {
    background: white;
    color: var(--navy);
}

.services-cta .btn-primary:hover {
    background: #f4f4f4;
}

/* ==========================================
   Footer Styles
========================================== */
footer {
    background: #071326;
    color: white;
    text-align: center;
    padding: 25px;
}

/* ==========================================
   OPTIONAL ICON CIRCLES
========================================== */

.service-icon {
    width: 75px;
    height: 75px;
    background: rgba(255, 107, 107, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--coral);
    font-size: 2rem;
}

/* ==========================================
   ANIMATIONS
========================================== */

.service-card,
.detail-box,
.process-step {
    transition: all .3s ease;
}

.detail-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */

@media (max-width: 992px) {

    .detail-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .services-hero h1 {
        font-size: 2.8rem;
    }

    .service-header h2 {
        font-size: 2.3rem;
    }

    .process-section h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {

    section {
        padding: 70px 0;
    }

    .services-hero {
        padding: 90px 0;
    }

    .services-hero h1 {
        font-size: 2.2rem;
    }

    .services-overview h2,
    .service-header h2,
    .process-section h2,
    .services-cta h2 {
        font-size: 2rem;
    }

    .detail-box {
        padding: 25px;
    }

    .service-card {
        padding: 25px;
    }

    .process-step {
        padding: 25px;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {

    .services-hero h1 {
        font-size: 1.9rem;
    }

    .services-hero p,
    .service-header p,
    .process-intro,
    .services-cta p {
        font-size: 1rem;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }
}