/* Genel ayarlar */
body {
    margin: 0;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: #f7f9fa;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header düzenleme */
.site-header {
    background: linear-gradient(90deg, #e6f2e6 0%, #e6f0fa 100%);
    padding: 32px 0 24px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border-bottom: 2px solid #e0e0e0;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2vw;
}
.logo {
    width: 12vw;
    min-width: 60px;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-left: 0;
}
.header-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
}
.site-header h1 {
    text-align: center;
    margin: 0;
    font-size: 2.1rem;
    color: #17803c;
    letter-spacing: 1px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.header-contact {
    font-size: 1.1rem;
    color: #17803c;
    font-weight: 500;
    text-align: right;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
.phone-label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e6f2e6;
    padding: 7px 16px 7px 12px;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(23,128,60,0.07);
    font-size: 1.08rem;
    font-weight: 500;
    transition: box-shadow 0.2s;
}
.phone-label:hover {
    box-shadow: 0 4px 16px rgba(23,128,60,0.13);
}
.phone-icon {
    width: 22px;
    height: 22px;
    stroke: #17803c;
    flex-shrink: 0;
}
.phone-text {
    color: #17803c;
    font-weight: 500;
    font-size: 1.08rem;
}
.phone-text a {
    color: #17803c;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
}
.phone-text a:hover {
    text-decoration: underline;
}
.header-contact a {
    color: #17803c;
    text-decoration: none;
    font-weight: bold;
}
.phone-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: inline-block;
    margin-right: 6px;
}

/* Ana içerik */
.main-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    min-height: 600px;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}
.main-left, .main-right {
    width: 50%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}
.main-left {
    background: #fff;
    border-radius: 16px 0 0 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 32px 28px;
}
.main-right {
    background: #f7e6ec;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 0;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.main-visual {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    background: none;
    padding: 0;
    display: block;
    position: absolute;
    top: 5%;
    left: 5%;
}
.main-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    background: none;
    display: block;
}

/* Sol taraf (bilgi) stilleri */
.info-section {
    width: 100%;
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
}
.info-section h2 {
    color: #17903c;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    margin-top: 0;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    letter-spacing: 1px;
    padding-left: 12px;
}
.yeg-info {
    list-style: none;
    padding: 0 0 0 8px;
    margin: 0 0 18px 0;
}
.yeg-info li {
    margin-bottom: 10px;
    font-size: 1.13rem;
    color: #222;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.2s;
}
.yeg-info li strong {
    color: #17903c;
    font-weight: 700;
}
.yeg-persons {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.yeg-persons > div {
    background: #f0f8ff;
    border-left: 4px solid #17903c;
    padding: 14px 20px;
    border-radius: 10px;
    min-width: 220px;
    font-size: 1.05rem;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(23,144,60,0.06);
    transition: box-shadow 0.2s, border-color 0.2s;
}
.yeg-persons > div:hover {
    box-shadow: 0 4px 16px rgba(23,144,60,0.13);
    border-left: 4px solid #0e5c25;
}
.yeg-contact-box {
    background: #e6f7e6;
    border-left: 4px solid #17903c;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 1.05rem;
    margin-top: 10px;
    color: #222;
    box-shadow: 0 2px 8px rgba(23,144,60,0.06);
    font-weight: 500;
}
.yeg-contact-box strong {
    color: #17903c;
    font-weight: 700;
}

/* Footer */
.site-footer {
    background: #222;
    color: #fff;
    padding: 32px 0 18px 0;
    margin-top: 40px;
}
.footer-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
    justify-content: space-between;
}
.footer-logos {
    display: flex;
    gap: 12px;
    align-items: center;
}
.footer-logo {
    height: 38px;
    width: auto;
    background: #fff;
    border-radius: 8px;
    padding: 4px 8px;
}
.footer-contact, .footer-links {
    font-size: 1rem;
    margin-bottom: 10px;
}
.footer-links a {
    color: #e6f2e6;
    text-decoration: none;
    margin: 0 4px;
}
.footer-links a:hover {
    text-decoration: underline;
}
.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin-left: 32px;
}
.footer-social-icon {
    width: 48px;
    height: 48px;
    margin-right: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 6px;
    transition: box-shadow 0.2s, transform 0.2s;
    object-fit: contain;
    display: inline-block;
}
.footer-social-icon:hover {
    box-shadow: 0 4px 16px rgba(23,144,60,0.18);
    transform: scale(1.08);
}
.footer-contact {
    font-size: 1.08rem;
    margin-bottom: 0;
    text-align: right;
    margin-right: 32px;
}
.footer-contact strong {
    font-size: 1.15rem;
    letter-spacing: 1px;
    color: #fff;
}
.footer-social img {
    width: 28px;
    height: 28px;
    filter: grayscale(1) brightness(1.2);
    transition: filter 0.2s;
}
.footer-social img:hover {
    filter: none;
}
.footer-social-icon {
    width: 56px;
    height: 56px;
    margin-right: 32px;
    vertical-align: middle;
    object-fit: contain;
    display: inline-block;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    outline: none !important;
}
.footer-social a {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    outline: none !important;
    display: inline-block;
}
.footer-logo-footer {
    height: 56px;
    width: auto;
    max-width: 100%;
    min-height: 32px;
    vertical-align: middle;
    display: inline-block;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    outline: none !important;
}
.footer-social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 32px;
}
.footer-social-label {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 500;
    margin-top: 8px;
    letter-spacing: 0.5px;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0,0,0,0.18);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .site-header h1 {
        font-size: 1.5rem;
    }
    .logo {
        height: 90px;
        width: 90px;
        min-width: 70px;
        margin-left: -10px;
    }
}
@media (max-width: 900px) {
    .main-content {
        flex-direction: column;
        min-height: unset;
        max-width: 100%;
    }
    .main-left, .main-right {
        width: 100%;
        min-height: unset;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        padding: 18px 8px;
    }
    .main-visual {
        position: static;
        width: 100%;
        height: auto;
        border-radius: 16px;
        max-height: 220px;
        top: unset;
        left: unset;
    }
    .main-map {
        border-radius: 16px;
        min-height: 220px;
        height: 220px;
    }
    .header-flex {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .header-center {
        align-items: center;
    }
    .header-contact {
        text-align: center;
        min-width: unset;
    }
    .site-header h1 {
        text-align: center;
        font-size: 1.2rem;
        white-space: normal;
    }
    .logo {
        width: 16vw;
        min-width: 54px;
        max-width: 100px;
    }
    .visual-section {
        min-width: 0;
        margin: 0;
        padding: 18px 4px;
    }
    .main-visual {
        max-width: 100%;
        max-height: 220px;
        height: auto;
    }
    .info-section h2 {
        font-size: 1.2rem;
        padding-left: 6px;
        padding-bottom: 6px;
    }
    .yeg-info li {
        font-size: 1rem;
    }
    .yeg-persons > div, .yeg-contact-box {
        font-size: 0.98rem;
        padding: 10px 8px;
    }
    .footer-flex {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .footer-social {
        margin-left: 0;
        margin-bottom: 12px;
    }
    .footer-contact {
        text-align: center;
        margin-right: 0;
    }
    .footer-logo-footer {
        height: 40px;
        min-height: 24px;
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .container {
        width: 98%;
        padding: 0 2%;
    }
    .logo {
        width: 22vw;
        min-width: 48px;
        max-width: 90px;
    }
    .footer-logo-footer {
        height: 64px;
        min-height: 32px;
        max-width: 100%;
    }
    .main-visual {
        max-height: 180px;
    }
    .info-section, .visual-section {
        padding: 16px 8px;
    }
    .footer-logo {
        height: 28px;
    }
    .footer-contact, .footer-links {
        font-size: 0.95rem;
    }
    .footer-social-icon {
        width: 48px;
        height: 48px;
        margin-right: 18px;
    }
    .footer-social-item {
        margin-right: 18px;
    }
} 