﻿/* ==============================================
   garantia-calitatii.css
   Pagina: Garanția calității — epilare laser
   ============================================== */

/* ========== PAGE VARIABLES ========== */
.sf-page {
    --accent: #6b0572;
    --accent-light: #9b3fa2;
    --accent-bright: #c06ec6;
    --accent-pale: #f3e4f4;
    --accent-glow: #8a2090;
    --dark: #0e0e0e;
    --charcoal: #1a1a1a;
    --bg: #fff;
    --white: #ffffff;
    --muted: #777;
    --text: #444;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
}

.sf-page {
    font-family: var(--font-body);
    color: var(--text);
    overflow-x: hidden;
    background: #fff;
}

/* ========== ANIMATIONS ========== */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    [data-animate].sf-visible {
        opacity: 1;
        transform: none !important;
    }

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(-50px);
}

[data-animate="fade-right"] {
    transform: translateX(50px);
}

[data-animate="fade-in"] {
    transform: scale(0.95);
}

[data-animate="zoom-in"] {
    transform: scale(0.85);
}

.sf-delay-1 {
    transition-delay: 0.1s;
}

.sf-delay-2 {
    transition-delay: 0.2s;
}

.sf-delay-3 {
    transition-delay: 0.3s;
}

.sf-delay-4 {
    transition-delay: 0.4s;
}

.sf-delay-5 {
    transition-delay: 0.5s;
}

/* ========== HERO ========== */
.sf-hero-garantie {
    position: relative;
    background: linear-gradient(160deg, #0e0e0e 0%, #1a0518 40%, #2d0828 70%, #0e0e0e 100%);
    padding: 80px 0 60px;
    overflow: hidden;
    text-align: center;
}

    .sf-hero-garantie::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 70%;
        height: 200%;
        background: radial-gradient(ellipse, rgba(196,0,140,0.15) 0%, transparent 70%);
        pointer-events: none;
    }

    .sf-hero-garantie::after {
        content: '';
        position: absolute;
        bottom: -50%;
        right: -20%;
        width: 60%;
        height: 200%;
        background: radial-gradient(ellipse, rgba(255,94,253,0.1) 0%, transparent 70%);
        pointer-events: none;
    }

.sf-hero-badge {
    display: inline-block;
    background: rgba(196,0,140,0.25);
    border: 1px solid rgba(255,94,253,0.3);
    color: var(--accent-bright);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sf-hero-garantie h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .sf-hero-garantie h1 span {
        background: linear-gradient(135deg, var(--accent-bright), var(--accent-pale));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.sf-hero-garantie p.lead {
    color: rgba(255,255,255,0.55);
    font-size: 1.1rem;
    max-width: 660px;
    margin: 0 auto 30px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.sf-hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
}

    .sf-hero-scroll:hover {
        color: var(--accent-bright);
    }

    .sf-hero-scroll i {
        animation: sf-bounce-down 2s infinite;
    }

@keyframes sf-bounce-down {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ========== GUARANTEE SHIELD ========== */
.sf-shield-badge {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 30px rgba(196,0,140,0.3);
    font-size: 2.2rem;
    color: #fff;
}

/* ========== SECTIONS ========== */
.sf-section {
    padding: 70px 0;
}

    .sf-section.sf-bg-white {
        background: #fff;
    }

    .sf-section.sf-bg-soft {
        background: #fdf5fc;
    }

    .sf-section.sf-bg-dark {
        background: var(--dark);
        color: #fff;
    }

    .sf-section.sf-bg-gradient {
        background: linear-gradient(180deg, #0e0e0e, #1a0518, #0e0e0e);
        color: #fff;
    }

.sf-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sf-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

    .sf-section-label::before,
    .sf-section-label::after {
        content: '';
        width: 30px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent));
    }

    .sf-section-label::after {
        background: linear-gradient(90deg, var(--accent), transparent);
    }

.sf-section-header h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.sf-section-header p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.sf-bg-dark .sf-section-label {
    color: var(--accent-bright);
}

    .sf-bg-dark .sf-section-label::before {
        background: linear-gradient(90deg, transparent, var(--accent-bright));
    }

    .sf-bg-dark .sf-section-label::after {
        background: linear-gradient(90deg, var(--accent-bright), transparent);
    }

.sf-bg-dark .sf-section-header h2 {
    color: #fff;
}

.sf-bg-dark .sf-section-header p {
    color: rgba(255,255,255,0.5);
}

/* ========== ALT ROWS ========== */
.sf-alt-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

    .sf-alt-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s;
    }

    .sf-alt-img:hover img {
        transform: scale(1.03);
    }

.sf-alt-text h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.25;
    color: var(--dark);
}

    .sf-alt-text h3 span {
        color: var(--accent);
    }

.sf-alt-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text);
}

/* ========== STAT BADGE ========== */
.sf-stat-highlight {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(196,0,140,0.08), rgba(255,94,253,0.05));
    border: 1px solid rgba(196,0,140,0.12);
    border-radius: 14px;
    padding: 16px 24px;
    margin: 8px 0 18px;
}

.sf-stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sf-stat-label {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.4;
}

/* ========== STEP CARDS ========== */
.sf-step-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(196,0,140,0.08);
    transition: all 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .sf-step-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--accent), var(--accent-light), transparent);
    }

    .sf-step-card:hover {
        box-shadow: 0 8px 35px rgba(196,0,140,0.12);
        transform: translateY(-4px);
    }

.sf-step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 4px 15px rgba(196,0,140,0.3);
}

.sf-step-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.sf-step-card p {
    font-size: 0.93rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ========== CALLOUT ========== */
.sf-callout {
    background: linear-gradient(135deg, rgba(196,0,140,0.06), rgba(255,94,253,0.03));
    border-left: 4px solid var(--accent);
    border-radius: 0 14px 14px 0;
    padding: 20px 24px;
    margin: 20px 0;
}

    .sf-callout p {
        margin: 0;
        font-size: 1.0rem;
        line-height: 1.7;
        color: var(--text);
    }

    .sf-callout.sf-callout-warning {
        background: linear-gradient(135deg, rgba(231,76,60,0.06), rgba(231,76,60,0.02));
        border-left-color: #e74c3c;
    }

/* ========== COMPARISON CARDS ========== */
.sf-compare-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(196,0,140,0.08);
    transition: all 0.3s;
    height: 100%;
}

    .sf-compare-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(196,0,140,0.12);
    }

    .sf-compare-card img {
        width: 100%;
        display: block;
        aspect-ratio: 1.499;
        object-fit: cover;
    }

.sf-compare-label {
    padding: 16px 20px;
    text-align: center;
    border-top: 2px solid rgba(196,0,140,0.1);
}

    .sf-compare-label h5 {
        font-family: var(--font-display);
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--accent);
        margin-bottom: 2px;
    }

    .sf-compare-label span {
        font-size: 0.82rem;
        color: var(--muted);
    }

/* ========== BUTTONS ========== */
.sf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: none;
}

.sf-btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(196,0,140,0.3);
}

    .sf-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(196,0,140,0.4);
        color: #fff !important;
    }

.sf-btn-outline {
    background: transparent;
    color: var(--accent) !important;
    border: 2px solid rgba(196,0,140,0.25);
}

    .sf-btn-outline:hover {
        background: var(--accent);
        color: #fff !important;
        border-color: var(--accent);
    }

.sf-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.sf-btn-group--center {
    justify-content: center;
}

.sf-btn-white {
    background: #fff;
    color: var(--accent) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.sf-btn-ghost {
    background: rgba(255,255,255,0.15);
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.3);
}

/* ========== CONTENT CARDS ========== */
.sf-content-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    text-decoration: none !important;
}

    .sf-content-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(196,0,140,0.12);
    }

.sf-content-card-body {
    padding: 24px;
}

    .sf-content-card-body h3 {
        font-family: var(--font-display);
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--accent);
        margin-bottom: 10px;
    }

    .sf-content-card-body p {
        font-size: 0.88rem;
        line-height: 1.7;
        color: #555;
        margin-bottom: 0;
    }

.sf-content-card-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

/* ========== CTA BANNER ========== */
.sf-cta-banner {
    background: linear-gradient(135deg, #6b0572, #9b3fa2, #6b0572);
    background-size: 200% 100%;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .sf-cta-banner::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 160px;
        height: 160px;
        background: #fff;
        opacity: 0.06;
        border-radius: 50%;
    }

    .sf-cta-banner::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -30px;
        width: 200px;
        height: 200px;
        background: #fff;
        opacity: 0.04;
        border-radius: 50%;
    }

    .sf-cta-banner h3 {
        font-family: var(--font-display);
        font-size: 1.9rem;
        font-weight: 700;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
    }

    .sf-cta-banner p {
        font-size: 1.05rem;
        opacity: 0.7;
        margin-bottom: 24px;
        position: relative;
        z-index: 1;
    }

/* ========== PRICE SECTION ========== */
.sf-price-header {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    padding: 20px 0;
    text-align: center;
}

    .sf-price-header h2 {
        font-family: var(--font-display);
        color: #fff;
        font-size: 1.6rem;
        font-weight: 700;
        margin: 0;
    }

/* ========== DIVIDER ========== */
.sf-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 10px;
    margin: 0 auto 20px;
}

/* ========== UTILITY ========== */
.sf-icon-danger {
    color: #e74c3c;
    margin-right: 8px;
}

.sf-icon-gold {
    color: #d4a054;
    margin-right: 8px;
}

.sf-icon-mr {
    margin-right: 10px;
}

.sf-img-ar-16 {
    aspect-ratio: 1.6;
}

.sf-price-spacer {
    height: 16px !important;
    margin-top: 16px !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .sf-hero-garantie h1 {
        font-size: 2rem;
    }

    .sf-section-header h2 {
        font-size: 1.7rem;
    }

    .sf-alt-text h3 {
        font-size: 1.3rem;
    }

    .sf-section {
        padding: 50px 0;
    }

    .sf-cta-banner {
        padding: 36px 24px;
    }

        .sf-cta-banner h3 {
            font-size: 1.4rem;
        }
}

@media (max-width: 767px) {
    .sf-hero-garantie {
        padding: 50px 0 40px;
    }

        .sf-hero-garantie h1 {
            font-size: 1.65rem;
        }

    .sf-btn-group {
        flex-direction: column;
    }

        .sf-btn-group .sf-btn {
            justify-content: center;
        }

    .sf-stat-highlight {
        flex-direction: column;
        text-align: center;
    }
}
