/* Evden Eve Nakliyat Widget — e6ad211b */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.een-e6ad-wrapper {
    font-family: 'Inter', sans-serif;
    padding: 60px 0;
    overflow: hidden;
}

.een-e6ad-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Hero Row ── */
.een-e6ad-hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.een-e6ad-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.een-e6ad-accent-bar {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.een-e6ad-heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.een-e6ad-description {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 32px 0;
}

/* ── CTA Buttons ── */
.een-e6ad-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.een-e6ad-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(27, 77, 62, 0.3);
}

.een-e6ad-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 77, 62, 0.4);
    color: #fff;
}

.een-e6ad-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.een-e6ad-cta-secondary:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* ── Hero Image ── */
.een-e6ad-hero-image {
    position: relative;
}

.een-e6ad-hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* ── Stats Bar ── */
.een-e6ad-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    background: #fff;
    border-radius: 16px;
    padding: 32px 48px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.een-e6ad-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.een-e6ad-stat-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.een-e6ad-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.een-e6ad-stat-divider {
    width: 1px;
    height: 50px;
    background: #E0E0E0;
}

/* ── Features Grid ── */
.een-e6ad-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.een-e6ad-feature-card {
    padding: 32px 28px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #EBEBEB;
    position: relative;
    overflow: hidden;
}

.een-e6ad-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1B4D3E, #E8A838);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.een-e6ad-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.een-e6ad-feature-card:hover::before {
    transform: scaleX(1);
}

.een-e6ad-feature-icon {
    margin-bottom: 18px;
    line-height: 1;
}

.een-e6ad-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0 0 10px 0;
}

.een-e6ad-feature-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #666;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .een-e6ad-hero-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .een-e6ad-heading {
        font-size: 34px;
    }

    .een-e6ad-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .een-e6ad-stats-bar {
        gap: 32px;
        padding: 24px 32px;
    }

    .een-e6ad-stat-number {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .een-e6ad-wrapper {
        padding: 40px 0;
    }

    .een-e6ad-hero-row {
        gap: 30px;
    }

    .een-e6ad-heading {
        font-size: 28px;
    }

    .een-e6ad-description {
        font-size: 15px;
    }

    .een-e6ad-hero-image img {
        height: 280px;
    }

    .een-e6ad-features-grid {
        grid-template-columns: 1fr;
    }

    .een-e6ad-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .een-e6ad-cta-primary,
    .een-e6ad-cta-secondary {
        text-align: center;
        justify-content: center;
    }

    .een-e6ad-stats-bar {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .een-e6ad-stat-divider {
        width: 60px;
        height: 1px;
    }

    .een-e6ad-stat-number {
        font-size: 26px;
    }
}
