.fade-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 0.6s var(--ease-elegant) forwards;
}

.fade-in.delay-1 { animation-delay: 0.1s; }
.fade-in.delay-2 { animation-delay: 0.2s; }
.fade-in.delay-3 { animation-delay: 0.3s; }
.fade-in.delay-4 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.services-header {
    text-align: center;
    padding: clamp(3.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 2rem) clamp(2rem, 4vw, 3rem);
    max-width: 800px;
    margin: 0 auto;
}

.services-logo {
    height: clamp(35px, 6vw, 45px);
    width: auto;
    margin-bottom: 2rem;
}

.services-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-title span {
    color: var(--gold);
}

.services-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--muted-dark);
    font-weight: 300;
    line-height: 1.7;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 2rem auto;
    border-radius: 2px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 2.5rem);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s var(--ease-smooth);
}

.service-icon i {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--gold);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    transform: scale(1.05);
}

.service-card:hover .service-icon i {
    color: #000;
}

.service-name {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.service-desc {
    font-size: clamp(0.9rem, 2.5vw, 0.95rem);
    color: var(--muted-dark);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    font-size: clamp(0.8rem, 2.5vw, 0.85rem);
    color: var(--muted-dark);
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-features li i {
    color: var(--gold);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
    margin-top: auto;
}

.service-cta:hover {
    gap: 0.8rem;
    color: var(--gold-hover);
}

.service-cta i {
    transition: transform 0.3s var(--ease-smooth);
}

.service-cta:hover i {
    transform: translateX(4px);
}

.service-card.featured {
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    border: 1px solid rgba(212, 175, 55, 0.2);
    grid-column: span 2;
}

.service-card.featured .service-name {
    color: var(--white);
}

.service-card.featured .service-desc {
    color: var(--muted);
}

.service-card.featured .service-features li {
    color: var(--muted);
}

.service-card.featured .service-features li i {
    color: var(--gold);
}

.service-card.featured .service-icon {
    background: rgba(212, 175, 55, 0.15);
}

.service-card.featured .service-cta {
    color: var(--gold);
}

.service-card.featured:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.service-card.featured::before {
    opacity: 1;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.featured-badge i {
    font-size: 0.7rem;
}

.featured-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

.featured-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: clamp(1rem, 3vw, 1.5rem);
    text-align: center;
    transition: all 0.3s var(--ease-smooth);
}

.stat-box:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

.stat-box .stat-value {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.stat-box .stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cta-section {
    max-width: 800px;
    margin: clamp(3rem, 6vw, 4rem) auto;
    padding: 0 clamp(1.2rem, 4vw, 2rem);
    text-align: center;
}

.cta-box {
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    border-radius: 24px;
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.cta-box h3 {
    color: var(--white);
    font-size: clamp(1.4rem, 3vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--muted);
    margin-bottom: 2rem;
    font-size: clamp(0.95rem, 2.5vw, 1rem);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .service-card.featured {
        grid-column: span 1;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-header {
        padding: 4rem 1.5rem 2rem;
    }

    .cta-box {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        padding: 1rem;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .featured-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-box {
        padding: 1rem;
    }

    .stat-box .stat-value {
        font-size: 1.5rem;
    }
}