/* Evyap Kariyer Sitesi - Sayfalara Özel CSS */

/* ================================================
   INDEX PAGE - KARIYER
   ================================================ */

/* Life Section */
.life-section {
    background-color: var(--background-light);
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
    position: relative;
    z-index: var(--z-content);
    padding: calc(var(--section-padding) + 40px) 0 calc(var(--section-padding) + 60px) 0;
}

/* Image Slider */
.image-slider-container {
    margin-top: 80px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
    cursor: grab;
    user-select: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.image-slider-container:active {
    cursor: grabbing;
}

.image-slider {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 24px;
    animation: slideContinuous 30s linear infinite;
    will-change: transform;
    align-items: center;
    padding: 0 20px;
}

.slider-track.paused {
    animation-play-state: paused;
}

.slider-item {
    flex: 0 0 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slider-item:nth-child(odd) {
    height: 280px;
}

.slider-item:nth-child(even) {
    height: 200px;
}

.slider-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.slider-item:hover .slider-image {
    transform: scale(1.1);
}

@keyframes slideContinuous {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Slider Hover Effects */
.image-slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(240, 240, 245, 0.8) 0%, 
        transparent 10%, 
        transparent 90%, 
        rgba(240, 240, 245, 0.8) 100%);
    pointer-events: none;
    z-index: 5;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .slider-item {
        flex: 0 0 320px;
    }
    
    .slider-item:nth-child(odd) {
        height: 220px;
    }
    
    .slider-item:nth-child(even) {
        height: 160px;
    }
    
    .slider-track {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .slider-item {
        flex: 0 0 280px;
    }
    
    .slider-item:nth-child(odd) {
        height: 180px;
    }
    
    .slider-item:nth-child(even) {
        height: 130px;
    }
    
    .slider-track {
        gap: 16px;
    }
    
    .image-slider-container {
        margin-top: 60px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .slider-item {
        flex: 0 0 240px;
    }
    
    .slider-item:nth-child(odd) {
        height: 150px;
    }
    
    .slider-item:nth-child(even) {
        height: 110px;
    }
    
    .slider-track {
        gap: 12px;
    }
}

/* Career Carousel */
.career-carousel {
    background-color: var(--background-light);
    padding: 60px 0;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    gap: 16px;
    transition: transform var(--transition-normal);
    padding-left: 64px;
}

.carousel-item {
    flex: 0 0 472px;
    height: 474px;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    position: relative;
}

.carousel-item:nth-child(2),
.carousel-item:nth-child(4) {
    height: 354px;
    margin-top: 60px;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-large);
}

.carousel-controls {
    position: absolute;
    right: 168px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 15px;
}

/* Positions Section */
.positions-section {
    background-color: var(--background-white);
    padding: var(--section-padding) 0;
}

.positions-section .section-title {
    text-align: left;
    margin-bottom: 0;
}

/* Numbers Section */
.numbers-section {
    background-color: var(--background-light);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.numbers-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 35, 144, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.numbers-section::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(227, 124, 131, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.numbers-title {
    font-family: var(--font-lexend);
    font-weight: 300;
    font-size: 48px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: -1.44px;
}

.numbers-description {
    font-family: var(--font-lexend);
    font-weight: 300;
    font-size: 20px;
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.numbers-sub-description {
    font-family: var(--font-lexend);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.numbers-link {
    font-family: var(--font-lexend);
    font-weight: 300;
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.numbers-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.numbers-link i {
    font-size: 14px;
}

.numbers-stats {
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-number {
    display: flex;
    align-items: baseline;
    gap: 8px;
    width: 180px;
    flex-shrink: 0;
    justify-content: flex-end;
}

.count {
    font-family: var(--font-space-grotesk);
    font-weight: 700;
    font-size: 72px;
    line-height: 1;
    color: var(--secondary-color);
    display: inline-block;
}

.stat-suffix {
    font-family: var(--font-space-grotesk);
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: var(--secondary-color);
    display: inline-block;
}

.stat-description {
    font-family: var(--font-lexend);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.7;
    color: var(--primary-color);
    text-align: right;
    max-width: 200px;
    padding-top: 10px;
    flex-shrink: 0;
}

.stat-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gray-light) 50%, transparent 100%);
    margin: 20px 0;
}

/* Countdown Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.count.animate {
    animation: countUp 0.6s ease-out;
}

/* Events Section */
.events-section {
    background-color: var(--background-white);
    padding: var(--section-padding) 0;
    position: relative;
}


.events-section .container {
    position: relative;
    z-index: var(--z-content);
}

.event-card {
    background: var(--text-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.event-image {
    position: relative;
    height: 413px;
    overflow: hidden;
}

.event-image img,
.event-image .placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(16, 35, 144, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    width: 56px;
    height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.date-day {
    font-family: var(--font-space-grotesk);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
}

.date-month {
    font-family: var(--font-space-grotesk);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}

.event-content {
    padding: 32px 24px;
}

.event-tag {
    font-family: var(--font-lexend);
    font-weight: 300;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.event-title {
    font-family: var(--font-lexend);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    color: var(--dark-color);
    letter-spacing: -0.72px;
}

/* Brands Section */
.brands-section {
    background-color: var(--background-light);
    padding: var(--section-padding) 0;
}

.brands-section .section-title {
    font-size: 32px;
    letter-spacing: -0.96px;
    margin-bottom: 40px;
}

.brands-carousel {
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.brands-wrapper {
    display: flex;
    gap: 30px;
    animation: brandScroll 30s linear infinite;
    padding: 0 20px;
}

.brand-item {
    flex: 0 0 249px;
    height: 245px;
    background: transparent;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.brand-item:hover {
    opacity: 1;
}

.brand-logo {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(20%) opacity(0.8);
    transition: var(--transition-fast);
}

.brand-item:hover .brand-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@keyframes brandScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ================================================
   EVYAP'TA YAŞAM PAGE
   ================================================ */

/* Join Evyap Section */
.join-evyap-section {
    background-color: var(--background-light);
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
    position: relative;
    z-index: var(--z-content);
    padding: var(--section-padding) 0;
}

/* Team Photos Grid */
.team-photos {
    position: relative;
    padding: 40px;
    overflow: hidden;
    height: 600px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
    position: relative;
}

.photo-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-fast);
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.photo-item:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* Grid positioning with offset heights */
.photo-1 { 
    grid-column: 1; 
    grid-row: 1; 
    align-self: start;
    margin-top: -20px;
}
.photo-2 { 
    grid-column: 2; 
    grid-row: 1; 
    align-self: center;
}
.photo-3 { 
    grid-column: 3; 
    grid-row: 1; 
    align-self: end;
    margin-top: 20px;
}
.photo-4 { 
    grid-column: 1; 
    grid-row: 2; 
    align-self: start;
    margin-top: -20px;
}
.photo-5 { 
    grid-column: 2; 
    grid-row: 2; 
    align-self: center;
}
.photo-6 { 
    grid-column: 3; 
    grid-row: 2; 
    align-self: end;
    margin-top: 20px;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: var(--transition-fast);
}

/* Photo Overlay */
.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 20px;
    border-radius: 0 0 24px 24px;
    opacity: 1;
    transition: var(--transition-fast);
}

.photo-item:hover .photo-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
}

.photo-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--text-white);
}

.country-code {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 2px;
}

.member-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    color: var(--text-white);
}

.member-role {
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    opacity: 0.85;
    line-height: 1.2;
    color: var(--text-white);
}

/* Work Benefits Section */
.work-benefits-section {
    background-color: var(--background-light);
    padding: var(--section-padding) 0;
}

.benefits-content {
    margin-left: auto;
}

.benefits-diagram {
    position: relative;
    width: 575px;
    height: 575px;
    margin: 0 auto;
}

.benefit-circle-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        var(--yellow-color) 0deg 60deg,
        #1a2a7a 60deg 120deg,
        var(--primary-color) 120deg 180deg,
        #1a2a7a 180deg 240deg,
        var(--primary-color) 240deg 300deg,
        #1a2a7a 300deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-logo {
    position: absolute;
    z-index: var(--z-overlay);
    background: var(--text-white);
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* İç beyaz daire */
.central-logo::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: var(--text-white);
    border-radius: 50%;
    z-index: -1;
}

/* Dış opak daire */
.central-logo::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: -2;
}

.benefit-point {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 3px solid var(--primary-color);
}

.benefit-point:hover {
    transform: scale(1.05);
    background: #e8f0ff;
    border-color: var(--primary-color);
}

.benefit-point.active {
    transform: scale(1.1);
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(16, 35, 144, 0.3);
}

.benefit-point img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(13%) sepia(58%) saturate(4557%) hue-rotate(225deg) brightness(93%) contrast(93%);
    transition: var(--transition-fast);
}

.benefit-point:hover img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(58%) saturate(4557%) hue-rotate(225deg) brightness(93%) contrast(93%);
}

.benefit-point.active img {
    filter: brightness(0) saturate(100%) invert(87%) sepia(33%) saturate(933%) hue-rotate(348deg) brightness(104%) contrast(98%);
}

.benefit-text {
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-lexend);
    font-weight: 300;
    font-size: 13px;
    color: var(--text-white);
    text-align: center;
    line-height: 1.4;
    width: 100px;
}

/* Position each benefit point */
.benefit-1 { top: 8%; right: 25%; }
.benefit-2 { top: 8%; left: 25%; }
.benefit-3 { top: 40%; left: 10%; }
.benefit-4 { top: 40%; right: 10%; }
.benefit-5 { bottom: 20%; left: 30%; }
.benefit-6 { bottom: 20%; right: 30%; }

.benefits-carousel-controls {
    display: flex;
    gap: 16px;
    margin-top: 2rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-btn img {
    filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(2000%) hue-rotate(220deg) brightness(0.6) contrast(1.2);
}

.carousel-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.carousel-btn:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

/* Departments Section */
.departments-section {
    background-color: var(--background-light);
    padding: var(--section-padding) 0;
}

.departments-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.departments-wrapper {
    display: flex;
    gap: 16px;
    transition: transform var(--transition-normal);
    padding-left: 64px;
}

.department-card {
    flex: 0 0 508px;
    height: 317px;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition-fast);
}

.department-card.tall {
    height: 354px;
    margin-top: 60px;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.department-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.department-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-large);
}
/* Persistent gradient overlay on department images */
.department-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 35, 144, 0.3) 0%, rgba(16, 35, 144, 0.1) 35%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
    transition: opacity var(--transition-fast);
    opacity: 1;
}

.department-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: white;
}
/* Hidden description; shown on hover */
.department-desc {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
    color: var(--text-white);
    opacity: 0;
    transition: var(--transition-fast);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
}

.department-desc p {
    font-family: var(--font-lexend);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    max-width: 280px;
}

/* Swap title with description on hover */
.department-card:hover .department-info { opacity: 0; }
.department-card:hover .department-desc { opacity: 1; }
.department-card:hover .placeholder-image { opacity: 0.15; }

.department-info h3 {
    font-family: var(--font-lexend);
    font-weight: 300;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -0.72px;
    margin: 0;
}

.department-info i {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.2);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.departments-carousel-controls {
    position: absolute;
    right: 168px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 15px;
}

/* E-Joy Club Section */
.ejoy-club-section {
    background-color: var(--background-light);
    padding: var(--section-padding) 0;
}

.ejoy-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.ejoy-logo {
    max-width: 200px;
    height: auto;
    transition: var(--transition-fast);
}

.ejoy-logo:hover {
    transform: scale(1.05);
}

.ejoy-card {
    background: var(--text-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
    height: 413px; /* Sadece görsel yüksekliği */
}

.ejoy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.ejoy-image {
    position: relative;
    height: 100%; /* Kartın tamamını kapla */
    overflow: hidden;
}

.ejoy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

.ejoy-title {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: white;
    z-index: 2;
}

.ejoy-title h3 {
    font-family: var(--font-lexend);
    font-weight: 300;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -0.72px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ejoy-title img {
    transition: var(--transition-fast);
}

.ejoy-card:hover .ejoy-title img {
    transform: translateX(5px);
}

.ejoy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 35, 144, 0.9) 0%, rgba(227, 124, 131, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 1;
}

.ejoy-card:hover .ejoy-overlay {
    opacity: 1;
}

.ejoy-content {
    color: white;
    text-align: center;
    max-width: 300px;
}

.ejoy-content p {
    font-family: var(--font-lexend);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.6;
    color: white;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ================================================
   RESPONSIVE ADJUSTMENTS FOR PAGES
   ================================================ */

@media (max-width: 1200px) {
    .team-photos {
        height: 500px;
    }
    
    .photo-grid {
        gap: 16px;
    }
    
    .numbers-title {
        font-size: 40px;
    }
    
    .numbers-description {
        font-size: 18px;
    }
    
    .numbers-sub-description {
        font-size: 13px;
    }
    
    .numbers-link {
        font-size: 13px;
    }
    
    .count {
        font-size: 60px;
    }
    
    .stat-suffix {
        font-size: 20px;
    }
    
    .stat-description {
        font-size: 13px;
    }
    
    .benefits-diagram {
        width: 450px;
        height: 450px;
    }
    
    .carousel-item {
        flex: 0 0 350px;
        height: 350px;
    }
    
    .carousel-item:nth-child(2),
    .carousel-item:nth-child(4) {
        height: 280px;
        margin-top: 35px;
    }
    
    .department-card {
        flex: 0 0 400px;
        height: 280px;
    }
    
    .department-card.tall {
        height: 320px;
        margin-top: 40px;
    }
    
    .departments-carousel-controls,
    .carousel-controls {
        right: 100px;
    }
}

@media (max-width: 768px) {
    .team-photos {
        height: auto;
        padding: 20px;
    }

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

    .photo-1, .photo-2, .photo-3,
    .photo-4, .photo-5, .photo-6 {
        margin-top: 0 !important;
        grid-column: auto;
        grid-row: auto;
        align-self: stretch;
    }

    .photo-item {
        height: 180px;
    }
    
    .photo-overlay {
        padding: 16px;
    }
    
    .country-code {
        font-size: 11px;
    }
    
    .member-name {
        font-size: 14px;
    }
    
    .member-role {
        font-size: 12px;
    }
    
    .numbers-title {
        font-size: 32px;
        text-align: center;
    }
    
    .numbers-description {
        font-size: 16px;
        text-align: center;
    }
    
    .numbers-sub-description {
        font-size: 13px;
        text-align: center;
    }
    
    .numbers-link {
        font-size: 13px;
        justify-content: center;
        width: 100%;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .stat-number {
        justify-content: center;
        width: auto;
        min-width: auto;
    }
    
    .count {
        font-size: 48px;
    }
    
    .stat-suffix {
        font-size: 18px;
    }
    
    .stat-description {
        font-size: 13px;
        text-align: center;
        padding-top: 0;
        max-width: 180px;
        margin: 0 auto;
    }
    
    .benefits-diagram {
        width: 350px;
        height: 350px;
    }
    
    .benefits-content {
        max-width: 100%;
        margin-left: 0;
        margin-top: 2rem;
        text-align: center;
    }
    
    .benefit-point {
        width: 50px;
        height: 50px;
    }
    
    .benefit-point img {
        width: 20px;
        height: 20px;
    }
    
    .benefit-text {
        font-size: 11px;
        width: 100px;
        top: 60px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-wrapper,
    .departments-wrapper {
        padding-left: 20px;
    }
    
    .carousel-item {
        flex: 0 0 280px;
        height: 280px;
    }
    
    .carousel-item:nth-child(2),
    .carousel-item:nth-child(4) {
        height: 220px;
        margin-top: 30px;
    }
    
    .department-card {
        flex: 0 0 260px;
        height: 240px;
    }

    .department-card .department-name {
        font-size: 16px;
        padding: 12px;
    }

    .department-card.tall {
        height: 280px;
        margin-top: 30px;
    }

    .departments-carousel-controls,
    .carousel-controls {
        right: 20px;
    }

    .join-evyap-section .row {
        flex-direction: column;
    }

    .join-evyap-section .col-lg-6:first-child {
        margin-bottom: 40px;
    }

    .join-evyap-section .btn {
        margin-bottom: 20px;
    }

    .event-image {
        height: 250px;
    }
    
    .ejoy-card {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .ejoy-title {
        bottom: 20px;
        left: 20px;
    }
    
    .ejoy-title h3 {
        font-size: 20px;
    }
    
    .ejoy-overlay {
        padding: 30px 20px;
    }
    
    .ejoy-content p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .team-photos {
        height: auto;
        padding: 15px;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .photo-item {
        height: 150px;
    }

    .photo-grid {
        gap: 10px;
    }
    
    .photo-overlay {
        padding: 12px;
    }
    
    .country-code {
        font-size: 10px;
    }
    
    .member-name {
        font-size: 13px;
    }
    
    .member-role {
        font-size: 11px;
    }
    
    .numbers-title {
        font-size: 28px;
    }
    
    .numbers-description {
        font-size: 14px;
    }
    
    .numbers-sub-description {
        font-size: 12px;
    }
    
    .numbers-link {
        font-size: 12px;
    }
    
    .count {
        font-size: 40px;
    }
    
    .stat-suffix {
        font-size: 16px;
    }
    
    .stat-description {
        font-size: 12px;
        max-width: 160px;
    }
    
    .benefits-diagram {
        width: 280px;
        height: 280px;
    }
    
    .benefit-point {
        width: 40px;
        height: 40px;
    }
    
    .benefit-point i {
        font-size: 16px;
    }
    
    .benefit-text {
        font-size: 10px;
        width: 80px;
        top: 50px;
    }
    
    .carousel-item {
        flex: 0 0 240px;
        height: 240px;
    }
    
    .carousel-item:nth-child(2),
    .carousel-item:nth-child(4) {
        height: 180px;
        margin-top: 30px;
    }
    
    .department-card {
        flex: 0 0 220px;
        height: 200px;
    }

    .department-card .department-name {
        font-size: 14px;
        padding: 10px;
    }

    .department-card.tall {
        height: 240px;
        margin-top: 20px;
    }
    
    .department-info,
    .ejoy-info {
        bottom: 20px;
        left: 20px;
    }
    
    .department-info h3,
    .ejoy-info h3 {
        font-size: 18px;
    }
    
    .ejoy-card {
        height: 250px;
    }
    
    .ejoy-title {
        bottom: 15px;
        left: 15px;
    }
    
    .ejoy-title h3 {
        font-size: 18px;
    }
    
    .ejoy-overlay {
        padding: 20px 15px;
    }
    
    .ejoy-content p {
        font-size: 12px;
    }
}

/* ================================================
   AÇIK POZİSYONLAR PAGE (acik-pozisyonlar.html)
   ================================================ */

/* FAQ Section */
.faq-section {
    background-color: var(--background-light);
    padding: var(--section-padding) 0;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--text-white);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.faq-item.expanded {
    border-color: rgba(16, 35, 144, 0.3);
    box-shadow: 0 8px 32px rgba(16, 35, 144, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 32px 24px;
    cursor: pointer;
    transition: var(--transition-fast);
    gap: 20px;
}

.faq-question:hover {
    background: rgba(16, 35, 144, 0.02);
}

.faq-number {
    font-family: var(--font-space-grotesk);
    font-weight: 300;
    font-size: 14px;
    color: var(--dark-color);
    min-width: 30px;
    text-align: left;
}

.faq-item.expanded .faq-number {
    color: var(--primary-color);
}

.faq-question h3 {
    font-family: var(--font-lexend);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
}

.faq-item.expanded .faq-question h3 {
    color: var(--primary-color);
}

.faq-toggle {
    background: none;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.faq-toggle:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.faq-toggle i {
    font-size: 16px;
    color: var(--dark-color);
    transition: var(--transition-fast);
}

.faq-toggle:hover i {
    color: var(--text-white);
}

.faq-item.expanded .faq-toggle {
    background: var(--primary-color);
}

.faq-item.expanded .faq-toggle i {
    color: var(--text-white);
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 0 74px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.expanded .faq-answer {
    max-height: 200px;
    padding-bottom: 32px;
}

.faq-answer p {
    font-family: var(--font-lexend);
    font-weight: 300;
    font-size: 13px;
    line-height: 1.8;
    color: var(--dark-color);
    margin: 0;
}

/* FAQ Animation Stagger */
.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }
.faq-item:nth-child(9) { animation-delay: 0.9s; }
.faq-item:nth-child(10) { animation-delay: 1.0s; }
.faq-item:nth-child(11) { animation-delay: 1.1s; }

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 24px 16px;
        gap: 16px;
    }
    
    .faq-question h3 {
        font-size: 13px;
    }
    
    .faq-answer {
        padding: 0 16px 24px 50px;
    }
    
    .faq-answer p {
        font-size: 12px;
    }
    
    .faq-toggle {
        width: 40px;
        height: 40px;
    }
    
    .faq-toggle i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: 20px 12px;
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .faq-number {
        min-width: auto;
        align-self: flex-start;
    }
    
    .faq-question h3 {
        font-size: 12px;
        width: 100%;
    }
    
    .faq-toggle {
        align-self: flex-end;
        margin-top: 10px;
        width: 36px;
        height: 36px;
    }
    
    .faq-answer {
        padding: 0 12px 20px 12px;
    }
    
    .faq-item.expanded .faq-answer {
        max-height: 300px;
    }
}

/* ================================================
   EVYAP'TA GELİŞİM PAGE (evyap-gelisim.html)
   ================================================ */

/* Campus Logo */
.campus-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.campus-logo {
    width: 224px;
    height: 148px;
    filter: drop-shadow(0 8px 32px rgba(255, 255, 255, 0.1));
    transition: var(--transition-fast);
}

.campus-logo:hover {
    transform: scale(1.05);
}

/* Development Journeys Section */
.development-journeys-section {
    background-color: var(--background-light);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.development-path {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

/* Path Line - Hidden for now */
.path-line {
    display: none;
}

/* Development Cards */
.development-card {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-slow);
}

.development-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.development-card.card-left {
    padding-right: 0;
}

.development-card.card-right {
    padding-left: 0;
}

.card-content {
    background: var(--text-white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
    display: flex;
    min-height: 364px;
}

/* Card content positioning */
.card-content { 
    position: relative; 
}

.development-card:hover .card-content {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.card-left .card-content {
    flex-direction: row;
}

.card-right .card-content {
    flex-direction: row-reverse;
}

.card-image {
    flex: 0 0 334px;
    position: relative;
    overflow: hidden;
}

.card-image .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-lexend);
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
}

.card-text {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-text h3 {
    font-family: var(--font-lexend);
    font-weight: 300;
    font-size: 32px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.96px;
}

.card-underline {
    width: 276px;
    height: 28px;
    margin-bottom: 30px;
}

.card-underline img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-text p {
    font-family: var(--font-lexend);
    font-weight: 300;
    font-size: 13px;
    line-height: 1.8;
    color: var(--dark-color);
    margin: 0;
}


/* Learning Culture Section */
.learning-culture-section {
    background-color: var(--background-light);
    padding: var(--section-padding) 0;
}

.learning-culture-section .section-description {
    font-size: 24px;
    line-height: 1.3;
    color: var(--primary-color);
    letter-spacing: -0.72px;
    font-weight: 300;
}

/* Development Card Animations */
.development-card[data-step="1"] {
    animation-delay: 0.2s;
}

.development-card[data-step="2"] {
    animation-delay: 0.4s;
}

.development-card[data-step="3"] {
    animation-delay: 0.6s;
}

.development-card[data-step="4"] {
    animation-delay: 0.8s;
}

/* Hover Effects - using different pseudo-element */
.development-card .card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(16, 35, 144, 0.02) 100%);
    border-radius: var(--border-radius-large);
    opacity: 0;
    transition: var(--transition-fast);
    pointer-events: none;
    z-index: 1;
}

.development-card:hover .card-content::before {
    opacity: 1;
}

/* Responsive Design for Development Path */
@media (max-width: 1200px) {
    .development-card.card-left {
        padding-right: 0;
    }
    
    .development-card.card-right {
        padding-left: 0;
    }
    
    .card-image {
        flex: 0 0 280px;
    }
    
    .card-text {
        padding: 30px;
    }
    
    .card-text h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .campus-logo {
        width: 180px;
        height: 120px;
    }
    
    .development-path {
        padding: 40px 20px;
    }
    
    .path-line {
        display: none;
    }
    
    .development-card.card-left,
    .development-card.card-right {
        padding: 0;
        margin-bottom: 60px;
    }
    
    .card-content {
        flex-direction: column !important;
        min-height: auto;
    }
    
    .card-image {
        flex: 0 0 200px;
        order: 1;
    }
    
    .card-text {
        order: 2;
        padding: 20px;
    }
    
    .card-text h3 {
        font-size: 24px;
        text-align: center;
    }
    
    .card-underline {
        margin: 20px auto;
    }
    
    .learning-culture-section .section-description {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .campus-logo {
        width: 150px;
        height: 100px;
    }
    
    .card-text h3 {
        font-size: 20px;
    }
    
    .card-text p {
        font-size: 12px;
    }
    
    .card-image {
        flex: 0 0 160px;
    }
    
    .card-text {
        padding: 16px;
    }
    
    .learning-culture-section .section-description {
        font-size: 16px;
    }
}

/* ================================================
   BİZDEN KARELER PAGE (bizden-kareler.html)
   ================================================ */

/* Gallery Section */
.gallery-section {
    background-color: var(--background-light);
    padding: var(--section-padding) 0;
    position: relative;
}

/* Filter Buttons */
.gallery-filters {
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--gray-light);
    border-radius: 100px;
    padding: 16px 32px;
    font-family: var(--font-lexend);
    font-weight: 400;
    font-size: 14px;
    color: var(--dark-color);
    transition: var(--transition-fast);
    cursor: pointer;
    min-width: 198px;
}

.filter-btn.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-white);
}

.filter-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Gallery Grid - Masonry Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    grid-auto-rows: 280px; /* Her satır 280px + 16px gap = 296px */
    grid-auto-flow: dense; /* Boşlukları otomatik doldur */
}

.gallery-item {
    transition: var(--transition-fast);
}

.gallery-item.fade-out {
    opacity: 0;
    transform: scale(0.9);
}

.gallery-item.fade-in {
    opacity: 1;
    transform: scale(1);
}

/* Gallery Cards - Standard Heights */
.gallery-card {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    height: 280px;
    transition: var(--transition-fast);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.gallery-card.tall {
    height: 576px; /* 2x280px + 16px gap */
}

/* Tall kart içeren gallery-item'lar 2 satır kaplasın */
.gallery-item:has(.gallery-card.tall) {
    grid-row: span 2;
}

/* Gallery Images */
.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

.gallery-image .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-lexend);
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    line-height: 1.4;
    padding: 20px;
}

/* Gallery Overlay - Removed for non-interactive gallery */

/* Text Cards */
.text-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    text-align: center;
}

.text-card.primary-bg {
    background: var(--primary-color);
}

.text-card.secondary-bg {
    background: var(--secondary-color);
}

.text-card.green-bg {
    background: var(--green-color);
}

.text-content h3 {
    color: var(--text-white);
    font-family: var(--font-lexend);
    font-weight: 300;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    margin: 0;
}

/* Lightbox - Removed for non-interactive gallery */

/* Gallery Grid Responsive Layout - Masonry */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        max-width: 900px;
        grid-auto-rows: 240px;
        grid-auto-flow: dense;
    }

    .gallery-card {
        height: 240px;
    }

    .gallery-card.tall {
        height: 494px; /* 2x240px + 14px gap */
    }

    .gallery-item:has(.gallery-card.tall) {
        grid-row: span 2;
    }
    
    .text-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 20px;
        grid-auto-rows: 200px;
        grid-auto-flow: dense;
    }

    .gallery-card {
        height: 200px;
    }

    .gallery-card.tall {
        height: 412px; /* 2x200px + 12px gap */
    }

    .gallery-item:has(.gallery-card.tall) {
        grid-row: span 2;
    }
    
    .text-content h3 {
        font-size: 20px;
    }
    
    .text-card {
        padding: 20px 16px;
    }
    
    .filter-btn {
        min-width: 160px;
        padding: 12px 24px;
        font-size: 12px;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
        gap: 12px !important;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        grid-auto-rows: 180px;
        grid-auto-flow: dense;
    }

    .gallery-card {
        height: 180px;
    }

    .gallery-card.tall {
        height: 370px; /* 2x180px + 10px gap */
    }

    .gallery-item:has(.gallery-card.tall) {
        grid-row: span 2;
    }
    
    .text-content h3 {
        font-size: 18px;
    }
    
    .filter-btn {
        min-width: 140px;
        padding: 10px 20px;
        font-size: 11px;
    }
}

/* Gallery Animation Effects */
.gallery-item {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }
.gallery-item:nth-child(10) { animation-delay: 1.0s; }
.gallery-item:nth-child(11) { animation-delay: 1.1s; }
.gallery-item:nth-child(12) { animation-delay: 1.2s; }
.gallery-item:nth-child(13) { animation-delay: 1.3s; }
.gallery-item:nth-child(14) { animation-delay: 1.4s; }

/* Hover Effects - Removed for non-interactive gallery */

/* Color Variants */
:root {
    --green-color: #8CCABB;
}

/* ================================================
   ANIMATION ENHANCEMENTS
   ================================================ */

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.photo-item,
.benefit-point,
.department-card,
.ejoy-card,
.event-card,
.brand-item {
    animation: float-up 0.6s ease forwards;
}

/* Staggered animation delays */
.photo-1 { animation-delay: 0.1s; }
.photo-2 { animation-delay: 0.2s; }
.photo-3 { animation-delay: 0.3s; }
.photo-4 { animation-delay: 0.4s; }
.photo-5 { animation-delay: 0.5s; }
.photo-6 { animation-delay: 0.6s; }

.benefit-1 { animation-delay: 0.1s; }
.benefit-2 { animation-delay: 0.2s; }
.benefit-3 { animation-delay: 0.3s; }
.benefit-4 { animation-delay: 0.4s; }
.benefit-5 { animation-delay: 0.5s; }
.benefit-6 { animation-delay: 0.6s; }

/* Hover effects for interactive elements */
.department-card::before,
.ejoy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(16, 35, 144, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-fast);
}

.department-card:hover::before,
.ejoy-card:hover::before {
    opacity: 1;
}

