/* ==========================================================================
   HERO SLIDER STYLES
   ========================================================================== */

.mepa-hero-slider {
    position: relative;
    width: 100%;
    height: 750px;
    overflow: hidden;
}

.mepa-hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   WINDOWS DPI ÖLÇEKLEME DÜZELTMESİ - Sadece Hero Slider
   %125 ve %150 ölçeklendirme kullanan masaüstü kullanıcılar için
   ========================================================================== */

/* %125 Windows ölçeklendirmesi (DPR 1.25) */
@media (-webkit-min-device-pixel-ratio: 1.25) and (max-device-pixel-ratio: 1.49),
       (min-resolution: 120dpi) and (max-resolution: 143dpi) {
    .mepa-hero-slider {
        height: 600px;
    }
}

/* %150 Windows ölçeklendirmesi (DPR 1.5) */
@media (-webkit-min-device-pixel-ratio: 1.5),
       (min-resolution: 144dpi) {
    .mepa-hero-slider {
        height: 450px;
    }
}

/* Tablet ve mobilde resmi soldan göster (içerik solda) */
@media (max-width: 1024px) {
    .mepa-hero-slide {
        background-position: left center;
    }
    
    .mepa-hero-slider {
        height: 600px;
    }
}

.mepa-hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.mepa-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.mepa-hero-description {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.mepa-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    background: rgba(0, 0, 0, 0.3) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    margin-top: -25px !important;
    transition: all 0.2s ease !important;
    opacity: 0.8;
}

.swiper-button-next {
    right: 20px !important;
}

.swiper-button-prev {
    left: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold !important;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    border: none !important;
    width: 10px !important;
    height: 10px !important;
    margin: 0 4px !important;
    transition: all 0.2s ease !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #fff !important;
    transform: scale(1.2) !important;
}

/* Swiper Container */
.swiper-container {
    overflow: hidden !important;
}

.swiper-slide {
    transition-timing-function: ease-out !important;
}

/* ==========================================================================
   MODERN BUTTON STYLES
   ========================================================================== */

.mepa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.mepa-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.mepa-btn:hover:before {
    left: 100%;
}

/* Primary Button */
.mepa-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.mepa-btn-primary:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.mepa-btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

/* Secondary Outline Button */
.mepa-btn-secondary-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.mepa-btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.mepa-btn-secondary-outline:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

/* Secondary Solid Button */
.mepa-btn-secondary {
    background-color: #6c757d;
    color: #fff;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.mepa-btn-secondary:hover {
    background-color: #5a6268;
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Button Sizes */
.mepa-btn-sm {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 120px;
}

.mepa-btn-lg {
    padding: 18px 36px;
    font-size: 18px;
    min-width: 180px;
}

/* Responsive Button Styles */
@media (max-width: 768px) {
    .mepa-hero-slider {
        height: 420px;
    }
    
    .mepa-hero-slide {
        background-position: left center;
    }
    
    .mepa-hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .mepa-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 15px;
    }

    .mepa-hero-title {
        font-size: 2.8rem;
    }

    .mepa-hero-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .mepa-hero-section,
    .mepa-hero-slider,
    .mepa-hero-default {
        height: 360px;
    }
    
    .mepa-hero-slide {
        background-position: left center;
    }
    
    .mepa-hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .mepa-hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .mepa-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ==========================================================================
   BLUE SEPARATOR STYLES
   ========================================================================== */

.mepa-blue-separator {
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mepa-separator-text {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 26px !important;
    line-height: 34px !important;
    margin: 0 !important;
    padding: 0 20px !important;
    text-align: center !important;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mepa-blue-separator {
        height: 100px;
        padding: 0 20px;
    }

    .mepa-separator-text {
        font-size: 20px !important;
        line-height: 26px !important;
    }
}

@media (max-width: 480px) {
    .mepa-blue-separator {
        height: 80px;
    }

    .mepa-separator-text {
        font-size: 16px !important;
        line-height: 22px !important;
    }
}


/* ==========================================================================
   CORPORATE SECTION STYLES
   ========================================================================== */

.mepa-corporate-section {
    width: 100%;
    min-height: 700px;
    height: auto;
    padding: 0;
    margin: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
}

.mepa-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.mepa-corporate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    height: 100%;
}

.mepa-corporate-text {
    padding: 40px 0;
}

.mepa-corporate-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.mepa-corporate-description-1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: rgb(119, 119, 119);
    line-height: 30px;
    margin: 0 0 20px 0;
}

.mepa-corporate-description-2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgb(0, 0, 0);
    line-height: 30px;
    margin: 0 0 35px 0;
}

/* ==========================================================================
   SOCIAL MEDIA SECTION
   ========================================================================== */

.mepa-social-section {
    width: 100%;
    height: 290px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a2e;
    overflow: visible;
    margin-top: 80px;
}

.mepa-social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.mepa-social-section .mepa-container {
    height: 100%;
    position: relative;
    z-index: 2;
}

.mepa-social-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.mepa-social-phone {
    position: relative;
    flex: 0 0 auto;
    z-index: 10;
    margin-left: -30px;
}

.mepa-phone-image {
    height: 350px;
    width: auto;
    object-fit: contain;
    position: relative;
    top: -26px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.mepa-social-title {
    flex: 1;
    text-align: left;
    padding: 0 30px;
}

.mepa-social-title h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 31px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mepa-social-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    margin-right: 20px;
}

.mepa-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mepa-social-icon:hover {
    background: var(--mepa-primary-color, #00a8e2);
    border-color: var(--mepa-primary-color, #00a8e2);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 168, 226, 0.4);
}

/* Social Section - 768px altında mobil uyumlu */
@media (max-width: 768px) {
    .mepa-social-section {
        height: auto !important;
        min-height: auto !important;
        margin-top: 40px;
        overflow: hidden !important;
    }

    .mepa-social-content {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
        padding: 30px 15px !important;
        gap: 20px !important;
    }

    /* Telefon görseli gizle */
    .mepa-social-phone {
        display: none !important;
    }

    /* Başlık */
    .mepa-social-title {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .mepa-social-title h2 {
        font-size: 18px;
        line-height: 1.4;
    }

    /* Sosyal ikonlar */
    .mepa-social-icons {
        justify-content: center;
        width: 100%;
        margin-right: 0;
        flex-wrap: wrap;
        gap: 10px;
    }

    .mepa-social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mepa-social-content {
        padding: 20px 10px !important;
        gap: 15px !important;
    }

    .mepa-social-title h2 {
        font-size: 16px;
    }

    .mepa-social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}


/* ==========================================================================
   CORPORATE BUTTON
   ========================================================================== */

.mepa-corporate-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--mepa-primary-color, #00a8e2);
    border: 2px solid var(--mepa-primary-color, #00a8e2);
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mepa-corporate-button:hover {
    background: var(--mepa-primary-color, #00a8e2);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 226, 0.3);
}

/* ==========================================================================
   CORPORATE IMAGE - PARALLAX CONTAINER
   ========================================================================== */

.mepa-corporate-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.mepa-corporate-image img {
    position: absolute;
    max-width: 50%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.1s ease-out;
    right: 0;
    bottom: 0;
}

.mepa-corporate-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 18px;
    font-weight: 500;
}

/* Responsive Corporate Section */
@media (max-width: 1200px) {
    .mepa-corporate-image {
        min-height: 350px;
    }
    
    .mepa-corporate-image img {
        position: relative !important;
        max-width: 100% !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        border-radius: 12px;
    }
}

@media (max-width: 1024px) {
    .mepa-corporate-content {
        gap: 40px;
    }

    .mepa-corporate-title {
        font-size: 2.4rem;
    }

    .mepa-corporate-description {
        font-size: 1.1rem;
    }
    
    .mepa-corporate-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .mepa-corporate-section {
        height: auto;
        padding: 60px 0;
    }

    .mepa-corporate-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mepa-corporate-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .mepa-corporate-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .mepa-corporate-button {
        padding: 12px 24px;
        font-size: 15px;
    }

    .mepa-corporate-image {
        order: -1;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .mepa-corporate-section {
        padding: 40px 0;
    }

    .mepa-corporate-title {
        font-size: 1.8rem;
    }

    .mepa-corporate-description {
        font-size: 0.95rem;
    }

    .mepa-corporate-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .mepa-corporate-image {
        min-height: 200px;
    }
}

/* ==========================================================================
   HIZMET (SERVICE) SINGLE PAGE STYLES
   ========================================================================== */

.mepa-hizmet-single {
    padding: 60px 0;
}

.mepa-hizmet-article {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.mepa-hizmet-content {
    line-height: 1.8;
    font-size: 1.6rem;
    color: #333;
}

.mepa-hizmet-content h2 {
    font-size: 2.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.mepa-hizmet-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #1a1a1a;
}

.mepa-hizmet-content p {
    margin-bottom: 1.5rem;
}

.mepa-hizmet-content ul,
.mepa-hizmet-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.mepa-hizmet-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .mepa-hizmet-single {
        padding: 40px 0;
    }

    .mepa-hizmet-content {
        font-size: 1.5rem;
    }

    .mepa-hizmet-content h2 {
        font-size: 2rem;
    }

    .mepa-hizmet-content h3 {
        font-size: 1.8rem;
    }
}


/* ==========================================================================
   REFERENCES/REFERANSLARIMIZ SECTION
   ========================================================================== */

.mepa-references-section {
    height: 470px;
    background-color: #f1f3f7;
    display: flex;
    align-items: center;
}

.mepa-references-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 50px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mepa-references-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.mepa-ref-nav {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.mepa-ref-nav:hover {
    color: #00a8e2;
}

.mepa-references-slider {
    flex: 1;
    overflow: hidden;
}

.mepa-references-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.mepa-reference-item {
    flex-shrink: 0;
    width: 262px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mepa-reference-item img {
    max-width: 262px;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.mepa-no-references {
    text-align: center;
    color: #666;
    width: 100%;
    padding: 50px 0;
}

/* References Section Responsive */
@media (max-width: 992px) {
    .mepa-references-section {
        height: auto;
        padding: 60px 0;
    }

    .mepa-reference-item {
        width: 200px;
        height: 115px;
    }

    .mepa-reference-item img {
        max-width: 200px;
        max-height: 115px;
    }
}

@media (max-width: 768px) {
    .mepa-references-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .mepa-reference-item {
        width: 180px;
        height: 100px;
    }

    .mepa-reference-item img {
        max-width: 180px;
        max-height: 100px;
    }

    .mepa-references-track {
        gap: 20px;
    }
}

/* ==========================================================================
   NEWS/HABERLER SECTION
   ========================================================================== */

.mepa-news-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.mepa-news-header {
    text-align: center;
    margin-bottom: 50px;
}

.mepa-news-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mepa-news-icon {
    color: var(--mepa-primary-color, #00a8e2);
    font-size: 20px;
}

.mepa-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.mepa-news-card {
    display: flex;
    flex-direction: column;
}

.mepa-news-date {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--mepa-primary-color, #00a8e2);
    margin-bottom: 3px;
}

.mepa-news-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.mepa-news-image {
    margin-bottom: 15px;
    overflow: hidden;
}

.mepa-news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mepa-news-image:hover img {
    transform: scale(1.05);
}

.mepa-news-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--mepa-primary-color, #00a8e2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.mepa-news-link:hover {
    color: var(--mepa-primary-color, #00a8e2);
    filter: brightness(0.85);
}

.mepa-news-link i {
    font-size: 10px;
}

.mepa-news-footer {
    text-align: center;
}

.mepa-news-all-btn {
    display: inline-block;
    padding: 15px 50px;
    border: 2px solid var(--mepa-primary-color, #00a8e2);
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--mepa-primary-color, #00a8e2);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mepa-news-all-btn:hover {
    background-color: var(--mepa-primary-color, #00a8e2);
    color: #ffffff;
}

.mepa-no-news {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    font-size: 16px;
}

/* News Section Responsive */
@media (max-width: 992px) {
    .mepa-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mepa-news-section {
        padding: 50px 0;
    }

    .mepa-news-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mepa-news-title {
        font-size: 26px;
    }

    .mepa-news-image img {
        height: 250px;
    }
}


/* =========================================
   Corporate Values Section Styles
   ========================================= */
.mepa-values-section {
    padding: 80px 0 10px 0;
    background-color: #fff;
    overflow: hidden;
}

.mepa-values-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mepa-values-left {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.mepa-values-img-container {
    width: 250px;
    height: 428px;
    overflow: hidden;
    position: relative;
}

.mepa-values-main-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.mepa-values-right {
    flex: 0 0 calc(60% - 60px);
    max-width: calc(60% - 60px);
}

.mepa-values-title {
    font-size: 36px;
    font-weight: 700;
    color: #2E3237;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.mepa-values-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 100%;
    max-height: 40px;
    background-color: var(--mepa-primary-color, #00a8e2);
    border-radius: 5px;
}

.mepa-values-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    padding-left: 20px;
}

.mepa-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.mepa-value-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.mepa-value-icon-box {
    flex-shrink: 0;
    width: 73px;
    height: 73px;
    background-color: color-mix(in srgb, var(--mepa-primary-color, #00a8e2) 10%, transparent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mepa-primary-color, #00a8e2);
    font-size: 28px;
    transition: all 0.3s ease;
}

.mepa-value-card:hover .mepa-value-icon-box {
    background-color: var(--mepa-primary-color, #00a8e2);
    color: #fff;
    transform: rotateY(180deg);
}

.mepa-value-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2E3237;
    margin-bottom: 8px;
}

.mepa-value-content p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.mepa-values-cta {
    position: relative;
    width: 100%;
    min-height: 120px;
    overflow: hidden;
    background-color: #2E3237;
    margin-top: 0;
}

/* Background Layer - Eğik Ayırıcı */
.mepa-values-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background-color: var(--mepa-primary-color, #00a8e2);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    z-index: 1;
}

.mepa-values-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}

.mepa-values-cta-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    width: 65%;
    padding-right: 40px;
    margin: 0;
}

.mepa-values-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: #fff;
    padding: 12px 30px;
    border: 2px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mepa-values-btn:hover {
    background-color: #fff;
    color: var(--mepa-primary-color, #00a8e2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .mepa-values-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .mepa-values-left,
    .mepa-values-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .mepa-values-img-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mepa-values-section {
        padding: 60px 0;
    }

    .mepa-values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mepa-values-cta {
        min-height: auto;
    }

    .mepa-values-cta::before {
        width: 100%;
        clip-path: none;
    }

    .mepa-values-cta-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px 0;
    }

    .mepa-values-cta-text {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .mepa-values-btn {
        margin: 0;
    }

    .mepa-values-title {
        font-size: 28px;
        text-align: center;
        padding-left: 0;
    }

    .mepa-values-title::before {
        display: none;
    }
}