/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE SERVICES SECTION
   ═══════════════════════════════════════════════════════════════ */

.homepage-services {
    background: var(--vuvita-cream, #f5f3ef);
    padding: 100px 0;
    position: relative;
}

.homepage-services__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.homepage-services__header {
    text-align: center;
    margin-bottom: 50px;
}

.homepage-services__subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--vuvita-gold, #c9a962);
    margin-bottom: 16px;
}

.homepage-services__title {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: var(--vuvita-charcoal, #1a1a1a);
    line-height: 1.2;
}

/* Tabs */
.homepage-services__tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.homepage-services__tab {
    padding: 14px 32px;
    background: transparent;
    border: 1px solid rgba(26, 26, 26, 0.15);
    color: var(--vuvita-charcoal, #1a1a1a);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.homepage-services__tab:hover {
    border-color: var(--vuvita-charcoal, #1a1a1a);
    background: rgba(26, 26, 26, 0.03);
}

.homepage-services__tab--active {
    background: var(--vuvita-charcoal, #1a1a1a);
    border-color: var(--vuvita-charcoal, #1a1a1a);
    color: var(--vuvita-white, #ffffff);
}

/* Grid */
.homepage-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.homepage-services__card {
    background: var(--vuvita-white, #ffffff);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.homepage-services__card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Card Media (Video) */
.homepage-services__card-media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.homepage-services__card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepage-services__card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0ddd8 0%, #d0cdc8 100%);
}

/* Icon Badge */
.homepage-services__card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: var(--vuvita-gold, #c9a962);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vuvita-white, #ffffff);
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(201, 169, 98, 0.4);
}

/* Card Content */
.homepage-services__card-content {
    padding: 28px 24px 24px;
}

.homepage-services__card-title {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--vuvita-charcoal, #1a1a1a);
    margin-bottom: 12px;
    line-height: 1.3;
}

.homepage-services__card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--vuvita-gray, #666666);
    margin-bottom: 20px;
}

/* Features */
.homepage-services__card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.homepage-services__card-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--vuvita-cream, #f5f3ef);
    font-size: 12px;
    color: var(--vuvita-charcoal, #1a1a1a);
    border-radius: 0;
}

.homepage-services__card-feature i {
    color: var(--vuvita-gold, #c9a962);
    font-size: 10px;
}

/* CTA */
.homepage-services__card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--vuvita-charcoal, #1a1a1a);
    text-decoration: none;
    transition: color 0.3s ease;
}

.homepage-services__card-cta:hover {
    color: var(--vuvita-gold, #c9a962);
}

.homepage-services__card-cta i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.homepage-services__card-cta:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .homepage-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .homepage-services {
        padding: 60px 0;
    }

    .homepage-services__container {
        padding: 0 20px;
    }

    .homepage-services__grid {
        grid-template-columns: 1fr;
    }

    .homepage-services__tabs {
        gap: 8px;
    }

    .homepage-services__tab {
        padding: 12px 20px;
        font-size: 13px;
    }
}