/* =========================
   SERVICES SECTION
========================= */

.services {
    background: var(--gray-50);
}

.services-grid {
    margin-top: 56px;
}

/* CARD SYSTEM */
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--blue-200);
    box-shadow: 0 14px 30px rgba(4,44,83,0.08);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--blue-700), var(--blue-500));
    transition: width 0.3s ease;
}

.service-card:hover::before {
    width: 100%;
}

/* ICON */
.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

/* TEXT */
.service-title {
    font-weight: 600;
    font-size: 18px;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 20px;
}

/* TAGS */
.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: var(--blue-50);
    color: var(--blue-800);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* PRICE */
.service-price {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
    font-size: 13px;
    color: var(--gray-400);
}

.service-price strong {
    color: var(--blue-800);
    font-size: 22px;
}

/* TOGGLE */
.hidden-service {
    display: none;
}

.services-grid.expanded .hidden-service {
    display: block;
}

/* BUTTON */
.section-footer {
    margin-top: 40px;
    text-align: center;
}

.see-more-btn {
    padding: 14px 30px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    background: var(--blue-700);
    color: white;
}

.see-more-btn:hover {
    transform: translateY(-2px);
    background: var(--blue-800);
}