/* ========================================
   CUSTOM APPS SERVICE PAGE STYLES
   Blue accent color theme
   ======================================== */

/* Theme colors */
.service-page--apps {
    --accent: #3B82F6;
    --accent-light: #DBEAFE;
    --accent-dark: #1D4ED8;
    --accent-gradient: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 50%, #93C5FD 100%);
}

/* Page background */
.service-page {
    background: var(--color-bg);
}

/* Back link */
.service-back {
    position: fixed;
    top: var(--space-md);
    left: var(--space-md);
    font-family: var(--font-hand);
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    z-index: 100;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.service-back:hover {
    color: var(--accent);
    transform: translateX(-3px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.service-hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
    background: var(--accent-gradient);
    text-align: center;
    position: relative;
}

.service-hero__icon {
    display: block;
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.service-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.service-hero__body {
    font-family: var(--font-body);
    font-size: 1.35rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
}

.service-hero__body strong {
    color: var(--color-text);
    font-weight: 700;
}

.service-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.service-hero__cta:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

/* ========================================
   THIS IS FOR YOU IF SECTION
   ======================================== */
.service-foryou {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-warm);
}

.service-foryou__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.service-card {
    padding: var(--space-lg);
    border-radius: 6px;
    text-align: center;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px) rotate(1deg);
}

.service-card--yellow {
    background: var(--sticky-yellow);
    transform: rotate(-1deg);
}

.service-card--pink {
    background: var(--sticky-pink);
    transform: rotate(1deg);
}

.service-card--blue {
    background: var(--sticky-blue);
    transform: rotate(-0.5deg);
}

.service-card--green {
    background: #BBF7D0;
    transform: rotate(0.5deg);
}

.service-card__icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-family: var(--font-hand);
    font-size: 1.2rem;
    color: var(--color-text);
    margin: 0;
    line-height: 1.4;
}

/* ========================================
   WHAT YOU GET SECTION
   ======================================== */
.service-whatyouget {
    padding: var(--space-3xl) 0;
    background: white;
}

.service-whatyouget__layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: start;
    margin-top: var(--space-xl);
}

.service-investment {
    background: var(--accent-gradient);
    border: 3px solid var(--accent);
    border-radius: 12px;
    padding: var(--space-xl);
    text-align: center;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.service-investment__price {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-dark);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.service-investment__note {
    font-family: var(--font-hand);
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.service-includes {
    background: #FAFAFA;
    border-radius: 8px;
    padding: var(--space-xl);
}

.service-includes__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.service-includes__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-includes__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text);
    border-bottom: 1px solid #eee;
}

.service-includes__list li:last-child {
    border-bottom: none;
}

.service-includes__list .check {
    color: #16a34a;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.service-howitworks {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-warm);
}

.service-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.service-step {
    background: white;
    border-radius: 12px;
    padding: var(--space-xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.service-step--highlight {
    background: var(--accent-gradient);
    border: 2px solid var(--accent);
    transform: scale(1.05);
}

.service-step__number {
    width: 60px;
    height: 60px;
    background: var(--sticky-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-hand);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 auto var(--space-md);
    box-shadow: 3px 3px 0 rgba(0,0,0,0.1);
}

.service-step__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.service-step__time {
    display: inline-block;
    font-family: var(--font-hand);
    font-size: 0.95rem;
    color: var(--accent-dark);
    background: rgba(59, 130, 246, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: var(--space-md);
}

.service-step__desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

.service-timeline {
    text-align: center;
    margin-top: var(--space-xl);
    font-family: var(--font-hand);
    font-size: 1.2rem;
    color: var(--color-text-secondary);
}

.service-timeline strong {
    color: var(--accent-dark);
}

/* ========================================
   WHAT MAKES US DIFFERENT SECTION
   ======================================== */
.service-different {
    padding: var(--space-3xl) 0;
    background: white;
}

.service-different__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.service-different__item {
    background: var(--accent-gradient);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: var(--space-xl);
    text-align: center;
    transition: transform 0.2s ease;
}

.service-different__item:hover {
    transform: translateY(-4px);
}

.service-different__icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.service-different__item h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.service-different__item p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.service-faq {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-warm);
}

.service-faq__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.service-faq__item {
    background: white;
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.service-faq__question {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.service-faq__answer {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.service-cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    text-align: center;
}

.service-cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-xl);
}

.service-cta__title .highlight--blue {
    background: rgba(255,255,255,0.25);
    color: white;
}

.service-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    background: white;
    color: var(--accent-dark);
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.service-cta__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ========================================
   FOOTER
   ======================================== */
.service-footer {
    padding: var(--space-xl) 0;
    background: var(--color-bg);
    text-align: center;
}

.service-footer__back {
    font-family: var(--font-hand);
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-footer__back:hover {
    color: var(--accent);
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 900px) {
    .service-foryou__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-whatyouget__layout {
        grid-template-columns: 1fr;
    }

    .service-steps {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .service-step--highlight {
        transform: none;
    }

    .service-different__grid {
        grid-template-columns: 1fr;
    }

    .service-faq__grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 600px) {
    .service-back {
        position: relative;
        top: 0;
        left: 0;
        display: block;
        text-align: center;
        margin-bottom: var(--space-md);
        background: transparent;
        box-shadow: none;
    }

    .service-hero {
        padding: var(--space-xl) 0;
    }

    .service-hero__icon {
        font-size: 3rem;
    }

    .service-hero__title {
        font-size: 2rem;
    }

    .service-hero__body {
        font-size: 1.1rem;
    }

    .service-hero__cta {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }

    .service-foryou__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        transform: none !important;
    }

    .service-investment__price {
        font-size: 2.5rem;
    }

    .service-cta__title {
        font-size: 1.75rem;
    }

    .service-cta__button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}
