/**
 * Partners Section - Basarilar & Etki Partnerleri
 * Modern, mobile-friendly design following CiftcidenEve brand guidelines
 */

/* ========================================
   Section Container
   ======================================== */
.partners-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
    padding: 60px 0;
    margin-top: 40px;
    border-top: 1px solid #e6e6e6;
}

.partners-container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Section Header
   ======================================== */
.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #1A6355;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.partners-subtitle {
    font-family: 'Fira Sans', sans-serif;
    font-size: 16px;
    color: #7d91a3;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   Section Subtitle (Achievements/Corporate)
   ======================================== */
.section-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1A6355;
    margin: 0 0 25px 0;
    text-align: center;
}

/* ========================================
   Achievements Timeline - Horizontal Zigzag
   ======================================== */
.achievements-section {
    margin-bottom: 60px;
}

/* Timeline Wrapper with Navigation */
.timeline-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Navigation Buttons */
.timeline-nav {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #1A6355;
    background: #ffffff;
    color: #1A6355;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.timeline-nav:hover {
    background: #1A6355;
    color: #ffffff;
    transform: scale(1.05);
}

.timeline-nav svg {
    width: 20px;
    height: 20px;
}

/* Timeline Container - Scrollable */
.timeline-container {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 20px 0;
}

.timeline-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Timeline Track */
.timeline-track {
    display: flex;
    align-items: center;
    position: relative;
    min-width: max-content;
    padding: 80px 40px;
    gap: 0;
}

/* Timeline Line */
.timeline-line {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 4px;
    background: linear-gradient(90deg, #1A6355 0%, #2a7a6a 50%, #1A6355 100%);
    border-radius: 2px;
    transform: translateY(-50%);
    z-index: 1;
}

/* Timeline Item */
.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 160px;
    z-index: 2;
}

/* Position Up - Content above line */
.timeline-item.position-up {
    flex-direction: column;
}

.timeline-item.position-up .timeline-content {
    order: 1;
    margin-bottom: 15px;
}

.timeline-item.position-up .timeline-dot {
    order: 2;
}

.timeline-item.position-up .timeline-year {
    order: 3;
    margin-top: 15px;
}

/* Position Down - Content below line */
.timeline-item.position-down {
    flex-direction: column;
}

.timeline-item.position-down .timeline-year {
    order: 1;
    margin-bottom: 15px;
}

.timeline-item.position-down .timeline-dot {
    order: 2;
}

.timeline-item.position-down .timeline-content {
    order: 3;
    margin-top: 15px;
}

/* Timeline Dot */
.timeline-dot {
    width: 18px;
    height: 18px;
    background: #ffffff;
    border: 4px solid #1A6355;
    border-radius: 50%;
    z-index: 3;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background: #1A6355;
    box-shadow: 0 0 0 6px rgba(26, 99, 85, 0.2);
}

.timeline-dot-start {
    width: 24px;
    height: 24px;
    background: #1A6355;
    border: 4px solid #bf833a;
}

/* Timeline Year */
.timeline-year {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A6355;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

/* Timeline Content */
.timeline-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    padding: 15px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-width: 140px;
    max-width: 180px;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 99, 85, 0.15);
}

.timeline-content img {
    height: 40px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: grayscale(20%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Timeline Icon (for non-partner milestones) */
.timeline-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1A6355 0%, #2a7a6a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #ffffff;
}

.timeline-icon svg {
    width: 24px;
    height: 24px;
}

.timeline-icon-start {
    background: linear-gradient(135deg, #bf833a 0%, #d4973f 100%);
    width: 50px;
    height: 50px;
}

.timeline-icon-start svg {
    width: 28px;
    height: 28px;
}

.timeline-title {
    font-family: 'Fira Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #4D4D4D;
    line-height: 1.4;
}

/* ========================================
   Timeline V2 - Clean Design (All content below line)
   Two colors: Green (milestones) and Gold (partners)
   ======================================== */

/* Timeline Track V2 */
.timeline-track-v2 {
    display: flex;
    align-items: flex-start;
    position: relative;
    min-width: max-content;
    padding: 30px 40px 120px 40px;
    gap: 10px;
}

/* Timeline Line V2 */
.timeline-line-v2 {
    position: absolute;
    top: 55px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: linear-gradient(90deg, #1A6355 0%, #bf833a 50%, #1A6355 100%);
    border-radius: 2px;
    z-index: 1;
}

/* Timeline Item V2 */
.timeline-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 140px;
    z-index: 2;
}

/* Timeline Year V2 - Always on top */
.timeline-year-v2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 15px;
    white-space: nowrap;
    margin-bottom: 12px;
}

/* Year colors by type */
.timeline-item-v2.type-milestone .timeline-year-v2 {
    background: #1A6355;
    color: #ffffff;
}

.timeline-item-v2.type-partner .timeline-year-v2 {
    background: #bf833a;
    color: #ffffff;
}

.timeline-item-v2.type-start .timeline-year-v2 {
    background: linear-gradient(135deg, #1A6355 0%, #bf833a 100%);
    color: #ffffff;
    font-size: 18px;
    padding: 5px 14px;
}

/* Timeline Dot V2 */
.timeline-dot-v2 {
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 3;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.timeline-item-v2.type-milestone .timeline-dot-v2 {
    border: 4px solid #1A6355;
}

.timeline-item-v2.type-partner .timeline-dot-v2 {
    border: 4px solid #bf833a;
}

.timeline-item-v2.type-start .timeline-dot-v2 {
    width: 20px;
    height: 20px;
    background: #1A6355;
    border: 4px solid #bf833a;
}

.timeline-item-v2:hover .timeline-dot-v2 {
    transform: scale(1.3);
    box-shadow: 0 0 0 5px rgba(26, 99, 85, 0.15);
}

.timeline-item-v2.type-partner:hover .timeline-dot-v2 {
    box-shadow: 0 0 0 5px rgba(191, 131, 58, 0.15);
}

/* Timeline Content V2 - Always below */
.timeline-content-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    padding: 14px 16px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    min-width: 130px;
    max-width: 160px;
    transition: all 0.3s ease;
}

/* Content border colors by type */
.timeline-item-v2.type-milestone .timeline-content-v2 {
    border-top: 3px solid #1A6355;
}

.timeline-item-v2.type-partner .timeline-content-v2 {
    border-top: 3px solid #bf833a;
}

.timeline-item-v2.type-start .timeline-content-v2 {
    border-top: 3px solid #1A6355;
    background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
}

.timeline-item-v2:hover .timeline-content-v2 {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.timeline-content-v2 img {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    margin-bottom: 8px;
    filter: grayscale(10%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.timeline-item-v2:hover .timeline-content-v2 img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Timeline Icon V2 */
.timeline-icon-v2 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: #ffffff;
}

.timeline-item-v2.type-milestone .timeline-icon-v2 {
    background: linear-gradient(135deg, #1A6355 0%, #2a7a6a 100%);
}

.timeline-item-v2.type-start .timeline-icon-v2 {
    background: linear-gradient(135deg, #bf833a 0%, #d4973f 100%);
    width: 45px;
    height: 45px;
}

.timeline-icon-v2 svg {
    width: 22px;
    height: 22px;
}

.timeline-item-v2.type-start .timeline-icon-v2 svg {
    width: 26px;
    height: 26px;
}

/* Timeline Title V2 */
.timeline-title-v2 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #4D4D4D;
    line-height: 1.35;
}

/* ========================================
   Timeline V2 Responsive
   ======================================== */

@media (max-width: 1200px) {
    .timeline-track-v2 {
        padding: 25px 30px 110px 30px;
    }

    .timeline-item-v2 {
        min-width: 130px;
    }
}

@media (max-width: 768px) {
    .timeline-track-v2 {
        padding: 20px 20px 100px 20px;
        gap: 8px;
    }

    .timeline-line-v2 {
        top: 48px;
        height: 3px;
    }

    .timeline-item-v2 {
        min-width: 110px;
    }

    .timeline-year-v2 {
        font-size: 14px;
        padding: 3px 10px;
        margin-bottom: 10px;
    }

    .timeline-dot-v2 {
        width: 14px;
        height: 14px;
        border-width: 3px;
        margin-bottom: 12px;
    }

    .timeline-content-v2 {
        padding: 12px 12px;
        min-width: 100px;
        max-width: 130px;
        border-top-width: 2px;
    }

    .timeline-content-v2 img {
        height: 40px;
        max-width: 100px;
    }

    .timeline-icon-v2 {
        width: 34px;
        height: 34px;
    }

    .timeline-icon-v2 svg {
        width: 18px;
        height: 18px;
    }

    .timeline-title-v2 {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .timeline-track-v2 {
        padding: 15px 15px 90px 15px;
        gap: 5px;
    }

    .timeline-item-v2 {
        min-width: 95px;
    }

    .timeline-year-v2 {
        font-size: 12px;
        padding: 2px 8px;
    }

    .timeline-content-v2 {
        padding: 10px 10px;
        min-width: 85px;
        max-width: 110px;
    }

    .timeline-content-v2 img {
        height: 32px;
        max-width: 80px;
    }

    .timeline-icon-v2 {
        width: 30px;
        height: 30px;
    }

    .timeline-icon-v2 svg {
        width: 16px;
        height: 16px;
    }

    .timeline-title-v2 {
        font-size: 10px;
    }
}

/* Legacy achievement styles (for backwards compatibility) */
.achievements-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    min-width: 280px;
    flex: 1 1 280px;
    max-width: 350px;
}

.achievement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 99, 85, 0.12);
}

.achievement-year-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #1A6355 0%, #2a7a6a 100%);
    padding: 8px 14px;
    border-radius: 8px;
    min-width: 60px;
    text-align: center;
}

.achievement-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.achievement-info img {
    height: 32px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.achievement-item:hover .achievement-info img {
    filter: grayscale(0%);
    opacity: 1;
}

.achievement-name {
    font-family: 'Fira Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #4D4D4D;
    line-height: 1.3;
}

/* ========================================
   Corporate References Section
   ======================================== */
.corporate-section {
    margin-bottom: 40px;
}

.corporate-desc {
    font-family: 'Fira Sans', sans-serif;
    font-size: 14px;
    color: #7d91a3;
    text-align: center;
    margin: -15px 0 30px 0;
}

/* ========================================
   Partners Grid
   ======================================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.corporate-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 0;
}

.partner-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.corporate-grid .partner-card {
    padding: 22px 18px;
    min-height: 120px;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(26, 99, 85, 0.12);
}

.partner-logo {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.corporate-grid .partner-logo {
    height: 55px;
    margin-bottom: 10px;
}

.partner-logo img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.corporate-grid .partner-logo img {
    max-height: 55px;
    max-width: 110px;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1A6355;
}

.corporate-grid .partner-logo span {
    font-size: 14px;
}

.partner-name {
    font-family: 'Fira Sans', sans-serif;
    font-size: 13px;
    color: #7d91a3;
    font-weight: 500;
}

.corporate-grid .partner-name {
    font-size: 11px;
}

/* Partner CTA Card - Davet Kutusu */
.partner-card-cta {
    background: linear-gradient(135deg, #f8faf9 0%, #e8f5f2 100%);
    border: 2px dashed #1A6355;
    cursor: pointer;
}

.partner-card-cta:hover {
    background: linear-gradient(135deg, #1A6355 0%, #2a7a6a 100%);
    border-style: solid;
}

.partner-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    height: 100%;
    gap: 10px;
}

.partner-cta-icon {
    width: 40px;
    height: 40px;
    color: #1A6355;
    transition: all 0.3s ease;
}

.partner-cta-icon svg {
    width: 100%;
    height: 100%;
}

.partner-card-cta:hover .partner-cta-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.partner-cta-text {
    font-family: 'Fira Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1A6355;
    text-align: center;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.partner-card-cta:hover .partner-cta-text {
    color: #ffffff;
}

/* ========================================
   CTA Button
   ======================================== */
.partners-cta {
    text-align: center;
    margin-top: 40px;
}

.partners-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #1A6355;
    border-radius: 8px;
    color: #1A6355;
    font-family: 'Fira Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partners-cta-btn:hover {
    background: #1A6355;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 99, 85, 0.25);
    text-decoration: none;
}

.partners-cta-btn svg {
    transition: transform 0.3s ease;
}

.partners-cta-btn:hover svg {
    transform: translateX(4px);
}

/* ========================================
   Responsive Styles
   ======================================== */

/* Large Desktop */
@media (max-width: 1200px) {
    .corporate-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .timeline-track {
        padding: 70px 30px;
    }

    .timeline-item {
        min-width: 140px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .partners-section {
        padding: 50px 0;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .corporate-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .partners-title {
        font-size: 32px;
    }

    .achievement-item {
        min-width: 250px;
        flex: 1 1 250px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .partners-section {
        padding: 40px 0;
        margin-top: 30px;
    }

    .partners-container {
        padding: 0 15px;
    }

    .partners-header {
        margin-bottom: 35px;
    }

    .partners-title {
        font-size: 28px;
    }

    .partners-subtitle {
        font-size: 14px;
    }

    .section-subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .achievements-section {
        margin-bottom: 40px;
    }

    /* Timeline Mobile */
    .timeline-wrapper {
        gap: 0;
        width: 100%;
    }

    /* Hide navigation arrows on mobile - swipe is enough */
    .timeline-nav {
        display: none !important;
    }

    .timeline-container {
        width: 100%;
        padding: 10px 0;
    }

    .timeline-track {
        padding: 40px 15px;
        gap: 12px;
    }

    .timeline-item {
        min-width: 100px;
    }

    .timeline-content {
        padding: 10px 12px;
        min-width: 95px;
        max-width: 120px;
    }

    .timeline-content img {
        height: 30px;
        max-width: 70px;
    }

    .timeline-icon {
        width: 38px;
        height: 38px;
    }

    .timeline-icon svg {
        width: 20px;
        height: 20px;
    }

    .timeline-year {
        font-size: 16px;
        padding: 5px 12px;
    }

    .timeline-title {
        font-size: 11px;
    }

    .timeline-dot {
        width: 14px;
        height: 14px;
        border-width: 3px;
    }

    /* Legacy */
    .achievements-timeline {
        gap: 10px;
    }

    .achievement-item {
        min-width: 100%;
        flex: 1 1 100%;
        max-width: 100%;
        padding: 14px 16px;
    }

    .achievement-year-badge {
        font-size: 16px;
        padding: 6px 12px;
        min-width: 55px;
    }

    .achievement-info img {
        height: 28px;
        max-width: 40px;
    }

    .achievement-name {
        font-size: 13px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 35px;
    }

    .corporate-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .corporate-desc {
        font-size: 13px;
        margin: -10px 0 25px 0;
    }

    .partner-card {
        padding: 20px 15px;
        min-height: 100px;
        border-radius: 10px;
    }

    .corporate-grid .partner-card {
        padding: 18px 12px;
        min-height: 90px;
    }

    .partner-logo {
        height: 40px;
        margin-bottom: 8px;
    }

    .partner-logo img {
        max-height: 40px;
        max-width: 100px;
    }

    .partner-logo span {
        font-size: 15px;
    }

    .partner-name {
        font-size: 11px;
    }

    .partners-cta {
        margin-top: 30px;
    }

    .partners-cta-btn {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .partners-section {
        padding: 30px 0;
    }

    .partners-title {
        font-size: 24px;
    }

    .partners-subtitle {
        font-size: 13px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .achievement-item {
        padding: 12px 14px;
        gap: 10px;
    }

    .achievement-year {
        font-size: 14px;
        padding: 5px 10px;
        min-width: 50px;
    }

    .achievement-info img {
        height: 24px;
        max-width: 35px;
    }

    .achievement-name {
        font-size: 12px;
    }

    .partners-grid {
        gap: 10px;
    }

    .corporate-grid {
        gap: 10px;
    }

    .partner-card {
        padding: 15px 10px;
        min-height: 90px;
    }

    .corporate-grid .partner-card {
        padding: 14px 10px;
        min-height: 85px;
    }

    .partner-logo {
        height: 35px;
    }

    .partner-logo img {
        max-height: 35px;
        max-width: 80px;
    }

    .partner-logo span {
        font-size: 13px;
    }

    .partner-name {
        font-size: 10px;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .partners-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .achievement-item {
        padding: 10px 12px;
        gap: 8px;
    }

    .achievement-year {
        font-size: 13px;
        padding: 4px 8px;
        min-width: 45px;
    }

    .achievement-name {
        font-size: 11px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .corporate-grid {
        gap: 8px;
    }

    .partner-card {
        padding: 12px 8px;
        min-height: 80px;
    }

    .partner-logo span {
        font-size: 12px;
    }
}


/* ========================================
   NEW: Accelerator Logos Grid (Başarılar)
   ======================================== */
.achievements-logos-section {
    margin-bottom: 50px;
}

.section-desc {
    font-family: 'Fira Sans', sans-serif;
    font-size: 14px;
    color: #7d91a3;
    text-align: center;
    margin: -15px 0 30px 0;
}

.accelerator-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.accelerator-logo-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.accelerator-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 99, 85, 0.12);
    border-color: #1A6355;
}

.accelerator-logo-card img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.accelerator-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.accelerator-name {
    font-family: 'Fira Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #4D4D4D;
    line-height: 1.3;
}

.accelerator-year {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    background: #1A6355;
    padding: 2px 10px;
    border-radius: 10px;
}

/* ========================================
   NEW: Stakeholder Logos Grid (Paydaşlar)
   ======================================== */
.stakeholders-section {
    margin-bottom: 50px;
}

.stakeholder-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.stakeholder-logo-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 80px;
}

.stakeholder-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 99, 85, 0.12);
    border-color: #1A6355;
}

.stakeholder-logo-card img {
    max-width: 100%;
    max-height: 45px;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.stakeholder-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========================================
   Responsive - Accelerator & Stakeholder
   ======================================== */
@media (max-width: 768px) {
    .accelerator-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .accelerator-logo-card {
        padding: 15px 10px;
    }

    .accelerator-logo-card img {
        max-height: 40px;
    }

    .accelerator-name {
        font-size: 11px;
    }

    .accelerator-year {
        font-size: 10px;
        padding: 2px 8px;
    }

    .stakeholder-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stakeholder-logo-card {
        padding: 20px 15px;
        min-height: 70px;
    }

    .stakeholder-logo-card img {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .accelerator-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .accelerator-logo-card {
        padding: 12px 8px;
    }

    .accelerator-logo-card img {
        max-height: 35px;
    }

    .accelerator-name {
        font-size: 10px;
    }

    .stakeholder-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stakeholder-logo-card {
        padding: 15px 12px;
        min-height: 60px;
    }

    .stakeholder-logo-card img {
        max-height: 35px;
    }

    .section-desc {
        font-size: 13px;
        margin: -10px 0 20px 0;
    }
}

@media (max-width: 360px) {
    .accelerator-logos-grid {
        gap: 10px;
    }

    .accelerator-logo-card {
        padding: 10px 6px;
        gap: 6px;
    }

    .accelerator-logo-card img {
        max-height: 30px;
    }

    .accelerator-name {
        font-size: 9px;
    }

    .accelerator-year {
        font-size: 9px;
        padding: 2px 6px;
    }
}
