﻿/* ============================================================
 
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

/* ---- Variabile locale ---- */
.fe-page {
    --fe-gold-50: #FAEEDA;
    --fe-gold-100: #FAC775;
    --fe-gold-200: #EF9F27;
    --fe-gold-400: #BA7517;
    --fe-gold-600: #854F0B;
    --fe-gold-800: #633806;
    --fe-gold-900: #412402;
    font-family: 'DM Sans', sans-serif;
    background: #f8f7f5;
}

/* ---- Breadcrumb ---- */
.fe-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #888780;
    margin-bottom: 20px;
}

    .fe-breadcrumb a {
        color: #888780;
        text-decoration: none;
        transition: color 0.2s;
    }

        .fe-breadcrumb a:hover {
            color: var(--fe-gold-600);
        }

.fe-breadcrumb__current {
    color: var(--fe-gold-600);
}

/* ---- Tag pill ---- */
.fe-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fe-gold-800);
    background: var(--fe-gold-50);
    border: 0.5px solid var(--fe-gold-100);
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 20px;
}

.fe-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--fe-gold-400);
    animation: fe-blink 2.5s infinite;
}

@keyframes fe-blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ---- HERO ---- */
.fe-hero {
    background: #ffffff;
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
    padding: 64px 0 56px;
}

.fe-hero-inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 64px;
    align-items: center;
}

.fe-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 20px;
}

    

.fe-subtitle {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #5F5E5A;
    font-weight: 300;
    max-width: 440px;
}

/* Stats col */
.fe-stats-col {
    display: flex;
    flex-direction: column;
    border: 0.5px solid var(--fe-gold-100);
    border-radius: 14px;
    overflow: hidden;
    background: var(--fe-gold-50);
}

.fe-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 0.5px solid var(--fe-gold-100);
}

    .fe-stat:last-child {
        border-bottom: none;
    }

.fe-stat__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--fe-gold-600);
}

.fe-stat__val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fe-gold-900);
}

/* ---- Section header (shared pattern, prefixed) ---- */
.fe-sec-hdr {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.fe-sec-hdr__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888780;
    white-space: nowrap;
}

.fe-sec-hdr__line {
    flex: 1;
    height: 0.5px;
    background: rgba(0,0,0,0.1);
}

.fe-sec-hdr__count {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888780;
}

/* ---- PROGRAME ---- */
.fe-programs {
    padding: 56px 0;
}

.fe-prog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 0.5px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}

.fe-prog {
    padding: 28px 24px;
    border-right: 0.5px solid rgba(0,0,0,0.08);
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
    transition: background 0.2s;
}

    .fe-prog:hover {
        background: #f8f7f5;
    }

    .fe-prog:nth-child(3n) {
        border-right: none;
    }

    .fe-prog:nth-child(n+4) {
        border-bottom: none;
    }

.fe-prog__idx {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888780;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fe-prog__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fe-gold-400);
    display: inline-block;
    flex-shrink: 0;
}

.fe-prog h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.fe-prog p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: #5F5E5A;
    font-weight: 300;
}

.fe-prog__budget {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--fe-gold-800);
    background: var(--fe-gold-50);
    border: 0.5px solid var(--fe-gold-100);
    border-radius: 20px;
    padding: 3px 10px;
}

/* ---- ETAPE PROCES ---- */
.fe-process {
    background: #ffffff;
    border-top: 0.5px solid rgba(0,0,0,0.08);
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
    padding: 48px 0;
}

.fe-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.fe-step {
    padding: 20px 16px;
    border-right: 0.5px solid rgba(0,0,0,0.08);
}

    .fe-step:last-child {
        border-right: none;
    }



.fe-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.fe-step p {
    font-size: 0.78rem;
    line-height: 1.6;
    color: #5F5E5A;
    font-weight: 300;
}

/* ---- CTA ---- */
.fe-cta {
    padding: 56px 0;
}

.fe-cta__box {
    background: var(--fe-gold-900);
    border-radius: 16px;
    padding: 44px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.fe-cta__text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fe-gold-50);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.fe-cta__text p {
    font-size: 0.85rem;
    color: var(--fe-gold-200);
    line-height: 1.6;
    font-weight: 300;
    max-width: 420px;
}

.fe-cta__btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--fe-gold-900);
    background: var(--fe-gold-100);
    border: none;
    border-radius: 8px;
    padding: 13px 28px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
}

    .fe-cta__btn:hover {
        background: var(--fe-gold-200);
        transform: translateY(-1px);
    }

    .fe-cta__btn:active {
        transform: scale(0.98);
    }

/* ---- Animații page-load ---- */
.fe-hero {
    animation: fe-up 0.5s ease both;
}

.fe-programs {
    animation: fe-up 0.5s 0.1s ease both;
}

.fe-process {
    animation: fe-up 0.5s 0.2s ease both;
}

.fe-cta {
    animation: fe-up 0.5s 0.3s ease both;
}

@keyframes fe-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .fe-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .fe-prog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fe-prog:nth-child(3n) {
        border-right: 0.5px solid rgba(0,0,0,0.08);
    }

    .fe-prog:nth-child(2n) {
        border-right: none;
    }

    .fe-prog:nth-child(n+5) {
        border-bottom: none;
    }

    .fe-prog:nth-child(n+3):nth-child(-n+4) {
        border-bottom: 0.5px solid rgba(0,0,0,0.08);
    }

    .fe-steps {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .fe-step {
        border-bottom: 0.5px solid rgba(0,0,0,0.08);
    }

        .fe-step:nth-child(2n) {
            border-right: none;
        }

        .fe-step:last-child {
            border-bottom: none;
        }
}

@media (max-width: 600px) {
    .fe-prog-grid {
        grid-template-columns: 1fr;
    }

    .fe-prog {
        border-right: none !important;
    }

        .fe-prog:last-child {
            border-bottom: none;
        }

    .fe-steps {
        grid-template-columns: 1fr;
    }

    .fe-step {
        border-right: none;
    }

    .fe-cta__box {
        flex-direction: column;
        align-items: flex-start;
    }

    .fe-title {
        font-size: 2rem;
    }
}
