/* =============================================
   PAGE SERVICES — Capital Panache
   ============================================= */

/* Hero */
.services-hero {
    position: relative;
    width: 100%;
    min-height: 55vh;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 80px 0 60px;
    border-bottom: 4px solid #0000FF;
}

.services-hero__eyebrow {
    display: inline-block;
    font-family: Orkney, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0000FF;
    background-color: #f0f0ff;
    padding: 6px 14px;
    margin-bottom: 24px;
}

.services-hero__title {
    font-family: Gilroy, Helvetica, sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1;
    color: #0612F9;
    margin-bottom: 28px;
}

.services-hero__subtitle {
    font-family: Orkney, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #303030;
    max-width: 560px;
}

/* Services Grid */
.services-grid {
    padding: 80px 0;
    background-color: #fafafa;
}

.services-grid__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@media screen and (max-width: 1023px) {
    .services-grid__inner {
        grid-template-columns: 1fr;
    }
}

/* Service Card */
.service-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 44px 40px;
    border: 1px solid #e8e8e8;
    background-color: #ffffff;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: #0000FF;
    transition: width 0.3s ease;
}

.service-card:hover {
    background-color: #f0f0ff;
    border-color: #0000FF;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover .service-card__arrow {
    transform: translateX(6px);
    color: #0000FF;
}

.service-card__number {
    font-family: Gilroy, Helvetica, sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: #e8e8ff;
    line-height: 1;
    min-width: 60px;
    transition: color 0.25s;
}

.service-card:hover .service-card__number {
    color: #c0c0ff;
}

.service-card__content {
    flex: 1;
}

.service-card__title {
    font-family: Gilroy, Helvetica, sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #0612F9;
    margin-bottom: 10px;
}

.service-card__desc {
    font-family: Orkney, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

.service-card__tags {
    display: inline-block;
    font-family: Orkney, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0000FF;
}

.service-card__arrow {
    font-size: 24px;
    color: #bbbbff;
    transition: transform 0.25s ease, color 0.25s ease;
    flex-shrink: 0;
}

/* CTA Section */
.services-cta {
    padding: 100px 0;
    background-color: #0612F9;
    text-align: center;
}

.services-cta__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.services-cta__title {
    font-family: Gilroy, Helvetica, sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5vw, 72px);
    color: #ffffff;
    line-height: 1.1;
}

.services-cta__btn {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.2s;
}

.services-cta__btn .start-a-project-recto {
    background-color: #FFDB3B;
    color: #0000FF;
    font-family: Gilroy, Helvetica, sans-serif;
    font-weight: 800;
    font-size: 20px;
    padding: 0 48px;
    height: 56px;
    line-height: 56px;
    display: inline-block;
}

.services-cta__btn:hover .start-a-project-recto {
    background-color: #ffffff;
}

/* Nav Services Button moved to style.css */
