/* ===================================================
   YEŞİL DÖNÜŞÜM - PIXEL PERFECT STYLES
   =================================================== */

.yesil-page { 
    background: #FFFFFF; 
    overflow-x: hidden; 
}

/* Hero */
.yesil-hero-adjustment {
    height: 320px !important;
    position: relative;
    width: 100%;
}

.yesil-hero-bg {
    position: absolute;
    width: 1880px;
    height: 304px;
    left: calc(50% - 1880px/2);
    top: 70px;
    border-radius: 16px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0) 130.05%), 
                url('/images/hakkimizda-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
    pointer-events: none;
}

@media (max-width: 1880px) {
    .yesil-hero-bg {
        width: calc(100% - 40px);
        max-width: 1880px;
        left: 20px;
        right: 20px;
    }
}

.yesil-hero-title {
    font-family: 'Radio Canada Big', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 46px;
    line-height: 100%;
    letter-spacing: 0.5%;
    color: #FFFFFF;
    margin: 0;
    width: 1460px;
    max-width: calc(100% - 40px);
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 1880px) {
    .hero-container .hero-social-frame {
        left: auto;
        right: 20px;
    }
}

/* Social Media Icons */
.hero-container .hero-social-frame {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 15px;
    position: absolute;
    width: 270px;
    height: 42px;
    left: 1420px;
    top: 201px;
    z-index: 10;
    pointer-events: auto;
}

.hero-container .hero-social-circle {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 10px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 57px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
    position: relative;
    z-index: 11;
    pointer-events: auto;
}

.hero-container .hero-social-circle:hover {
    background: #658004;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-container .hero-social-circle img {
    width: 22px;
    height: 22px;
}

/* Grid Alanı */
.yesil-grid-section {
    padding-top: 150px;
    padding-bottom: 100px;
}

.container-1460 {
    width: 1460px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.yesil-pixel-grid {
    display: grid;
    grid-template-columns: repeat(2, 720px);
    gap: 20px;
    row-gap: 50px;
    justify-content: flex-start;
    width: 100%;
    max-width: 1460px;
    margin: 0;
    padding: 0;
}

.yesil-card {
    box-sizing: border-box;
    width: 720px;
    height: 247.66px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 72px 42px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.yesil-card:hover {
    border-color: #658004;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.yesil-card-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
}

.yesil-card-content h3 {
    width: 476px;
    font-family: 'Radio Canada Big';
    font-weight: 600;
    font-size: 32px;
    line-height: 46px;
    color: #000000;
    margin: 0;
}

.yesil-arrow-circle {
    width: 82.11px;
    height: 82.11px;
    background: #658004;
    border-radius: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.yesil-card:hover .yesil-arrow-circle {
    transform: scale(1.1);
}

.yesil-arrow-circle img {
    width: 46px;
    height: 46px;
    filter: brightness(0) invert(1);
}

/* Mobil */
@media (max-width: 1480px) {
    .yesil-pixel-grid { 
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
    
    .yesil-card { 
        width: 100%; 
        max-width: 720px;
        height: auto; 
        min-height: 247.66px;
        padding: 40px 30px; 
    }
    
    .yesil-card-content h3 { 
        width: auto; 
        font-size: 28px; 
        line-height: 1.2; 
    }
}

/* ===================================================
   1500px BREAKPOINT - Ana sayfa ile hizalama
   =================================================== */

@media (max-width: 1500px) and (min-width: 993px) {
    .container-1460 {
        width: 100% !important;
        max-width: 1460px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }

    .yesil-pixel-grid {
        width: 100% !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        row-gap: 50px !important;
    }

    .yesil-card {
        width: 100% !important;
        max-width: 100% !important;
    }

    .yesil-hero-bg {
        width: calc(100% - 40px) !important;
        left: 20px !important;
        right: 20px !important;
    }

    .hero-container .hero-social-frame {
        left: auto !important;
        right: 40px !important;
    }
}

@media (max-width: 992px) {
    .yesil-page .figma-header {
        top: 0 !important;
    }

    .hero-section.yesil-hero-adjustment {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        padding-top: 40px !important;
        padding-bottom: 0 !important;
        margin: 0 !important;
        margin-bottom: 0 !important;
    }

    .yesil-hero-bg { 
        position: relative !important;
        width: 100% !important;
        height: 200px !important;
        left: 0 !important;
        right: 0 !important;
        top: -50px !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding-left: 0 !important;
        padding-bottom: 0 !important;
        border-radius: 0 !important;
        transform: none !important;
    }
    
    .yesil-hero-title { 
        font-family: 'Radio Canada Big' !important;
        font-weight: 700 !important;
        font-size: 32px !important;
        text-align: center;
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        position: relative !important;
        z-index: 2;
        margin: 0 !important;
        padding: 0 20px !important;
        top: 0 !important;
    }

    .hero-container .hero-social-frame {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        top: 100px;
        width: auto;
        margin: 0;
        justify-content: center;
        gap: 12px;
        z-index: 10;
    }

    .hero-container .hero-social-circle {
        width: 40px;
        height: 40px;
    }

    .hero-container .hero-social-circle img {
        width: 20px;
        height: 20px;
    }

    .yesil-grid-section {
        padding-top: 0 !important;
        padding-bottom: 40px !important;
    }

    .container-1460 {
        margin: 0 auto;
        padding: 0 20px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .yesil-pixel-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .yesil-card {
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
        min-height: 200px;
        padding: 30px 20px;
        box-sizing: border-box;
    }

    .yesil-card-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100% !important;
    }

    .yesil-card-content h3 {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 24px;
        line-height: 1.3;
    }

    .yesil-arrow-circle { 
        width: 60px; 
        height: 60px; 
        align-self: flex-end;
    }

    .yesil-arrow-circle img {
        width: 30px;
        height: 30px;
    }

    .mobile-sidebar.active {
        transform: translateX(0) !important;
        visibility: visible !important;
        margin: 0 !important;
        padding: 0 !important;
        top: -10px !important;
        left: -10px !important;
    }
    
    .sidebar-overlay {
        top: -50px !important;
    }
}

@media (max-width: 480px) {
    .yesil-hero-title {
        font-family: 'Radio Canada Big' !important;
        font-weight: 700 !important;
        font-size: 26px !important;
    }

    .hero-container .hero-social-frame {
        top: 100px;
        gap: 10px;
    }

    .hero-container .hero-social-circle {
        width: 36px;
        height: 36px;
        padding: 8px;
    }

    .hero-container .hero-social-circle img {
        width: 18px;
        height: 18px;
    }

    .yesil-card-content h3 {
        font-size: 20px;
    }

    .yesil-arrow-circle {
        width: 50px;
        height: 50px;
    }

    .yesil-arrow-circle img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 320px) {
    .container-1460 {
        padding: 0 15px !important;
        margin: 40px auto !important;
    }

    .hero-container .hero-social-frame {
        top: 100px;
        gap: 8px;
    }

    .hero-container .hero-social-circle {
        width: 32px;
        height: 32px;
        padding: 6px;
    }

    .hero-container .hero-social-circle img {
        width: 14px;
        height: 14px;
    }

    .yesil-pixel-grid {
        gap: 15px !important;
    }

    .yesil-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 15px !important;
        min-height: auto !important;
    }

    .yesil-card-content {
        gap: 15px !important;
    }

    .yesil-card-content h3 {
        font-size: 18px !important;
        line-height: 1.2 !important;
    }

    .yesil-arrow-circle {
        width: 45px !important;
        height: 45px !important;
    }

    .yesil-arrow-circle img {
        width: 20px !important;
        height: 20px !important;
    }

    .mobile-sidebar.active {
        transform: translateX(0) !important;
        visibility: visible !important;
        margin: 0 !important;
        padding: 0 !important;
        top: -10px !important;
        left: -10px !important;
    }
    
    .sidebar-overlay {
        top: -50px !important;
    }
}

