/**
 * Services Section Styles
 * 
 * Sticky left column with scrolling right column layout
 */

/* ===== Services Section ===== */
.services-section {
    padding: 100px 20px;
    background: #F5F5F6;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    position: relative;
    align-items: flex-start;
}

/* ===== Left Column (Sticky) ===== */
.services-sticky-col {
    flex: 0 0 400px;
    position: sticky;
    top: 100px;
    padding-right: 20px;
}

.services-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #69686E;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    background: rgba(0, 0, 0, 0.05);
    padding: 6px 12px;
    border-radius: 4px;
}

.services-headline {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    color: #060612;
    margin-bottom: 32px;
    letter-spacing: -1.5px;
}

.services-cta-wrapper {
    position: relative;
    display: inline-block;
}

.btn-services {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #FF6321;
    color: white;
    font-weight: 500;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-services:hover {
    background: #E85A1D;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 99, 33, 0.2);
    color: white;
}

/* Handwritten Annotation */
.services-annotation {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.annotation-arrow {
    width: 40px;
    height: auto;
}

.annotation-text {
    font-family: 'Indie Flower', cursive, sans-serif;
    /* Setup generic cursive fallback */
    font-size: 18px;
    color: #060612;
    transform: rotate(-5deg);
}

/* ===== Right Column (Scrolling List) ===== */
.services-list-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.02);
}

/* Card Header */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.service-icon-box {
    width: 48px;
    height: 48px;
    background: #F5F5F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6321;
}

.service-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #060612;
    transition: all 0.2s ease;
}

.service-card:hover .service-arrow {
    background: #060612;
    color: white;
    border-color: #060612;
}

/* Card Content */
.service-title {
    font-size: 24px;
    font-weight: 500;
    color: #060612;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #69686E;
    margin-bottom: 24px;
}

/* Tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.service-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #69686E;
    background: #F5F5F6;
    padding: 6px 12px;
    border-radius: 4px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .services-container {
        flex-direction: column;
        gap: 40px;
    }

    .services-sticky-col {
        position: static;
        flex: auto;
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .services-annotation {
        display: none;
        /* Hide annotation on mobile */
    }

    .services-headline {
        font-size: 36px;
    }
}