/* ──────────────────────────────────────────────────────────────────────────
   Greece Golden Visa "Reels" homepage section
   Right side = text + key advantages · Left side = vertical 9:16 reels video.
   RTL: text column starts at the right, video column ends at the left.
   ────────────────────────────────────────────────────────────────────────── */

.fa-reels-section {
    position: relative;
    background: linear-gradient(180deg, #061026 0%, #0B1F3A 100%);
    color: #EAF2FF;
    padding: 88px 20px;
    overflow: hidden;
}

.fa-reels-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 28px;
}

/* ── Text column (right in RTL) ── */
.fa-reels-text {
    text-align: right;
    max-width: 100%;
}

.fa-reels-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #D4B057;
    background: rgba(212, 176, 87, 0.12);
    border: 1px solid rgba(212, 176, 87, 0.35);
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 18px;
}

.fa-reels-title {
    font-size: 36px;
    line-height: 1.4;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 16px;
}

.fa-reels-intro {
    font-size: 17px;
    line-height: 2;
    color: #C8D8F0;
    margin: 0 0 26px;
    max-width: 680px;
}

.fa-reels-advantages {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: grid;
    gap: 16px;
}

.fa-reels-advantage {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.fa-reels-advantage-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #0B1F3A;
    background: linear-gradient(135deg, #E7C977 0%, #D4B057 100%);
    box-shadow: 0 6px 16px rgba(212, 176, 87, 0.35);
    margin-top: 2px;
}

.fa-reels-advantage-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fa-reels-advantage-title {
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
}

.fa-reels-advantage-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: #A9BEDC;
}

.fa-reels-cta-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.fa-reels-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: min(100%, 320px);
    min-height: 52px;
    padding: 13px 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fa-reels-cta--consult {
    color: #F5F9FF;
    background: linear-gradient(135deg, #1E5AA8 0%, #174888 100%);
    box-shadow: 0 12px 28px rgba(23, 72, 136, 0.34);
}

.fa-reels-cta--consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(23, 72, 136, 0.46);
}

.fa-reels-cta--whatsapp {
    color: #05351B;
    background: linear-gradient(135deg, #34D977 0%, #25D366 100%);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.34);
}

.fa-reels-cta--whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.46);
}

.fa-reels-cta:hover {
    transform: translateY(-2px);
}

/* ── Media column (left in RTL): 9:16 reels frame ── */
.fa-reels-media {
    display: flex;
    justify-content: center;
    align-self: stretch;
    width: 100%;
}

.fa-reels-phone {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9 / 16;
    border-radius: 28px;
    overflow: hidden;
    background: #02060f;
    border: 1px solid rgba(212, 176, 87, 0.25);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.fa-reels-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* contain keeps burned-in subtitles inside the frame (cover was cropping them). */
    object-fit: contain;
    object-position: center center;
    display: block;
    background: #02060f;
}

/* Red play badge over the reels video so users instantly identify it as video. */
.fa-reels-play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    z-index: 2;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
    opacity: 0.92;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.fa-reels-play-badge:hover {
    transform: translate(-50%, -50%) scale(1.06);
}

.fa-reels-play-badge:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

/* Hide the overlay play button only while the video is actually playing. */
.fa-reels-phone.is-playing .fa-reels-play-badge {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.fa-reels-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    padding: 24px;
    color: rgba(212, 176, 87, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .fa-reels-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .fa-reels-section {
        padding-bottom: 48px;
    }

    .fa-reels-text {
        text-align: center;
        order: 1;
    }

    .fa-reels-cta-stack {
        align-items: center;
    }

    .fa-reels-intro {
        margin-right: auto;
        margin-left: auto;
        max-width: 100%;
    }

    .fa-reels-advantage {
        text-align: right;
    }

    .fa-reels-media {
        order: 2;
        width: 100%;
    }

    .fa-reels-phone {
        max-width: min(360px, 88vw);
        width: 100%;
    }
}

@media (max-width: 520px) {
    .fa-reels-section {
        padding: 60px 16px;
    }

    .fa-reels-title {
        font-size: 27px;
    }

    .fa-reels-phone {
        max-width: min(340px, 92vw);
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   Customer testimonial reels section (under 4 benefits cards)
   Horizontal row of 4-6 vertical videos with red play buttons.
   ────────────────────────────────────────────────────────────────────────── */

.fa-testimonial-reels-section {
    position: relative;
    padding: 84px 20px;
    background: linear-gradient(180deg, #f6f9ff 0%, #e8eef9 100%);
    overflow: hidden;
}

.fa-testimonial-reels-container {
    max-width: 1240px;
    margin: 0 auto;
}

.fa-testimonial-reels-head {
    text-align: center;
    margin-bottom: 28px;
}

.fa-testimonial-reels-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #1e5aa8;
    background: rgba(30, 90, 168, 0.1);
    border: 1px solid rgba(30, 90, 168, 0.24);
}

.fa-testimonial-reels-title {
    margin: 0 0 12px;
    color: #0b1f3a;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.4;
    font-weight: 800;
}

.fa-testimonial-reels-subtitle {
    margin: 0 auto;
    max-width: 760px;
    color: #435874;
    font-size: 16px;
    line-height: 1.95;
}

.fa-testimonial-reels-track-wrap {
    position: relative;
}

.fa-testimonial-reels-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 8px 4px 12px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(11, 31, 58, 0.3) transparent;
}

.fa-testimonial-reels-track::-webkit-scrollbar {
    height: 7px;
}

.fa-testimonial-reels-track::-webkit-scrollbar-thumb {
    background: rgba(11, 31, 58, 0.28);
    border-radius: 999px;
}

.fa-testimonial-reels-card {
    flex: 0 0 clamp(200px, 23vw, 260px);
}

.fa-testimonial-reels-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 22px;
    overflow: hidden;
    background: #050b18;
    border: 1px solid rgba(11, 31, 58, 0.12);
    box-shadow: 0 18px 38px rgba(11, 31, 58, 0.18);
}

.fa-testimonial-reels-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #050b18;
}

.fa-testimonial-reels-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    z-index: 2;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.42));
}

.fa-testimonial-reels-play:hover {
    transform: translate(-50%, -50%) scale(1.06);
}

.fa-testimonial-reels-play:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.fa-testimonial-reels-card.is-playing .fa-testimonial-reels-play {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.fa-testimonial-reels-name {
    margin: 12px 2px 0;
    text-align: center;
    color: #102744;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
}

.fa-testimonial-reels-nav {
    position: absolute;
    top: calc(50% - 26px);
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(11, 31, 58, 0.14);
    background: #ffffff;
    color: #0b1f3a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(11, 31, 58, 0.16);
}

.fa-testimonial-reels-nav--prev {
    right: -10px;
}

.fa-testimonial-reels-nav--next {
    left: -10px;
}

.fa-testimonial-reels-cta {
    margin-top: 26px;
    text-align: center;
}

.fa-testimonial-reels-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #e02020 0%, #bb1717 100%);
    box-shadow: 0 14px 28px rgba(224, 32, 32, 0.26);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fa-testimonial-reels-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(224, 32, 32, 0.34);
}

@media (max-width: 900px) {
    .fa-testimonial-reels-section {
        padding: 66px 16px;
    }

    .fa-testimonial-reels-nav {
        display: none;
    }

    .fa-testimonial-reels-card {
        flex-basis: min(56vw, 240px);
    }
}
