/* =====================================
   VIBEMERGER SERVICE CARD SYSTEM FIX
   ===================================== */

.services-section .service-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 45px 28px 32px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 
        transform 0.35s cubic-bezier(.4,0,.2,1),
        box-shadow 0.35s cubic-bezier(.4,0,.2,1),
        border-color 0.35s ease;
}

/* Hover */
.services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.08);
}

/* =====================================
   ICON CENTERED CIRCLE
   ===================================== */

.services-section .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c4dff, #5e35b1);
    box-shadow: 0 12px 30px rgba(94, 53, 177, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Icon inside */
.services-section .service-icon i {
    font-size: 28px;
    color: #ffffff;
}

/* Icon Hover Effect */
.services-section .service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 18px 40px rgba(94, 53, 177, 0.45);
}

/* =====================================
   TEXT STYLING
   ===================================== */

.services-section .service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.services-section .service-card .service-tagline {
    font-size: 14px;
    font-weight: 500;
    color: #7c4dff;
    margin-bottom: 8px;
}

.services-section .service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* =====================================
   REMOVE SCRAPBOOK VISUAL CONFLICT
   ===================================== */

.services-section .service-card.scrapbook-item {
    transform: none !important;
    rotate: 0deg !important;
}
/* =====================================
   PROCESS CARD SYSTEM
   Matches Service Card Design
   ===================================== */

.process .process-step {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 45px 28px 32px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition:
        transform 0.35s cubic-bezier(.4,0,.2,1),
        box-shadow 0.35s cubic-bezier(.4,0,.2,1),
        border-color 0.35s ease;
}

/* Hover */
.process .process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.08);
}

/* =====================================
   CENTERED ICON STYLE
   ===================================== */

.process .step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c4dff, #5e35b1);
    box-shadow: 0 12px 30px rgba(94, 53, 177, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.process .step-icon i {
    font-size: 28px;
    color: #ffffff;
}

/* Icon Hover Animation */
.process .process-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 18px 40px rgba(94, 53, 177, 0.45);
}

/* =====================================
   TEXT HIERARCHY
   ===================================== */

.process .process-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.process .process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}
