* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    height: 100vh;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* Sol Taraf - Beyaz */
.left-section {
    width: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.left-content {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.logo-container {
    margin-bottom: 40px;
    align-self: flex-start;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    animation: fadeInUp 1.2s ease-out 0.5s both;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #005f31;
    margin-bottom: 40px;
    letter-spacing: 2px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.main-title:hover {
    transform: scale(1.05);
    color: #004a26;
}

.description {
    text-align: center;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #005f31;
    margin-bottom: 30px;
    letter-spacing: 1px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.company-name:hover {
    transform: scale(1.05);
    color: #004a26;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #005f31;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.description-text:hover {
    opacity: 0.8;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 95, 49, 0.2);
    animation: fadeInUp 1.2s ease-out 0.7s both;
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-left {
    flex: 2;
}

.contact-right {
    flex: 1.2;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #005f31;
    font-size: 0.95rem;
    flex: initial;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.contact-item:hover {
    transform: translateX(5px);
    color: #004a26;
}

.contact-item i {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2);
}

.contact-item span {
    line-height: 1.6;
}

/* Sağ Taraf - Yeşil */
.right-section {
    width: 50%;
    background-color: #005f31;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.right-content {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.image-container {
    width: 80%;
    height: 80%;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out 0.4s both;
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: scale(1.05);
}

.zone-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zone-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.email-info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    animation: fadeInUp 1.2s ease-out 0.6s both;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.email-info:hover {
    transform: translateY(-5px);
    color: #e0e0e0;
}

.email-info i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.email-info:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .left-section,
    .right-section {
        padding: 40px 50px;
    }
    
    .main-title {
        font-size: 2.8rem;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .left-section,
    .right-section {
        width: 100%;
        height: 50vh;
        padding: 0;
    }
    
    .left-content {
        max-width: 100%;
    }
    
    .main-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .description-text {
        font-size: 0.95rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .image-container {
        width: 80%;
        height: 80%;
        margin-bottom: 0;
    }
    
    .email-info {
        font-size: 1.1rem;
    }
}

