/*=============================
      WHY ELIAD
=============================*/

.why-eliad {
    background: #fff;
    padding: clamp(70px, 10vw, 130px) 0;
    position: relative;
    overflow: hidden;
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

/* Subtitle Luxury Styling */
.subtitle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.subtitle-line {
    width: 30px;
    height: 1px;
    background: var(--primary, #b08d57);
    opacity: 0.5;
}

.section-subtitle {
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary, #b08d57);
    text-transform: uppercase;
}

.why-content .section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 15px;
    color: #111;
}

.why-content .section-title .gold {
    color: var(--primary, #b08d57);
    font-style: italic;
}

.why-content .text {
    color: var(--text-light, #666);
    line-height: 1.85;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    margin-bottom: 10px;
}

/* IMAGE SIDE */
.why-images {
    position: relative;
    width: 100%;
}

.image-wrapper {
    position: relative;
    border-radius: clamp(20px, 4vw, 30px);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(176, 141, 87, 0.15);
}

.why-images img {
    width: 100%;
    height: clamp(380px, 45vw, 540px);
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

/* Experience Badge Card */
.experience-card {
    position: absolute;
    right: -25px;
    bottom: 40px;
    background: #fff;
    border-radius: clamp(16px, 3vw, 22px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(176, 141, 87, 0.2);
    z-index: 2;
    transition: transform .4s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-card-inner {
    padding: clamp(20px, 3vw, 28px) clamp(22px, 3.5vw, 32px);
}

.experience-card h2 {
    color: var(--primary, #b08d57);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    margin-bottom: 4px;
}

.experience-card p {
    color: var(--text-light, #666);
    font-size: 0.88rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

/* CONTENT SIDE */
.why-content {
    display: flex;
    flex-direction: column;
}

.reasons {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reason {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: clamp(16px, 2.5vw, 20px);
    border-radius: 18px;
    background: var(--cream, #f8f6f2);
    border: 1px solid rgba(176, 141, 87, 0.1);
    transition: all .4s cubic-bezier(.22, 1, .36, 1);
}

.reason:hover {
    background: #fff;
    transform: translateX(6px);
    box-shadow: 0 12px 30px rgba(176, 141, 87, 0.1);
    border-color: rgba(176, 141, 87, 0.3);
}

.reason-icon {
    width: clamp(48px, 6vw, 54px);
    height: clamp(48px, 6vw, 54px);
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(176, 141, 87, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #b08d57);
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
    transition: all .4s ease;
}

.reason:hover .reason-icon {
    background: var(--primary, #b08d57);
    color: #fff;
    border-color: var(--primary, #b08d57);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(176, 141, 87, 0.3);
}

.reason h3 {
    margin-bottom: 5px;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: #111;
}

.reason p {
    color: var(--text-light, #666);
    line-height: 1.75;
    font-size: clamp(0.88rem, 1.6vw, 0.95rem);
    margin: 0;
}

/* =========================
   WHY ELIAD RESPONSIVE
========================= */

@media (max-width: 992px) {
    .why-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-images {
        max-width: 600px;
        margin: 0 auto;
    }

    .why-images img {
        height: clamp(320px, 50vw, 420px);
    }
}

@media (max-width: 650px) {
    .why-container {
        gap: 40px;
    }

    .experience-card {
        bottom: 20px;
        right: 15px;
    }

    .experience-card-inner {
        padding: 16px 20px;
    }

    .reason {
        padding: 15px;
        gap: 15px;
    }

    .reason-icon {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }
}