/* İletişim Sayfası Stilleri */

/* Hero Bölümü */
.contact-hero {
    background: linear-gradient(rgba(4, 51, 102, 0.85), rgba(4, 51, 102, 0.9)),
        url('../img/banner.webp') no-repeat center center / cover;
    color: #fff;
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    margin-bottom: 0;
}

.contact-hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs ol {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    font-size: 16px;
    position: relative;
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs li:not(:last-child):after {
    content: '/';
    position: absolute;
    right: 0;
    color: #FFC107;
}

.breadcrumbs a {
    color: #FFC107;
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumbs a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
}

.breadcrumbs .active {
    color: #fff;
    font-weight: 600;
}

/* İletişim Bilgileri Kartları */
.contact-info {
    padding: 80px 0;
    background-color: #fff;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: #043366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: #FFC107;
    color: #043366;
    transform: scale(1.1);
}

.contact-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #043366;
    margin-bottom: 5px;
}

.contact-card-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-card-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card-content a:hover {
    color: #043366;
}

/* Ofis Lokasyonları */
.office-locations {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #043366;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #FFC107;
}

.section-title p {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.offices-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.office-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.office-header {
    background: #043366;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
}

.office-header i {
    font-size: 24px;
    margin-right: 15px;
}

.office-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.office-details {
    padding: 25px;
}

.office-address,
.office-phone,
.office-email {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.office-address i,
.office-phone i,
.office-email i {
    color: #043366;
    font-size: 18px;
    width: 25px;
    margin-right: 15px;
    margin-top: 4px;
    flex-shrink: 0;
}

.office-address p,
.office-phone p,
.office-email p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.office-phone a,
.office-email a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.office-phone a:hover,
.office-email a:hover {
    color: #043366;
}

.map-link {
    display: inline-flex;
    align-items: center;
    color: #043366;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s;
}

.map-link i {
    margin-right: 8px;
}

.map-link:hover {
    color: #FFC107;
}

.office-map {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.office-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* İletişim Formu */
.contact-form-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.form-info {
    background: linear-gradient(135deg, #043366, #0a4d94);
    color: #fff;
    padding: 50px;
}

.form-info h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.form-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-channels {
    margin-top: 40px;
}

.contact-channel {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-channel i {
    font-size: 20px;
    color: #FFC107;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-channel h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
}

.contact-channel p {
    margin: 0 0 5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.contact-channel a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-channel a:hover {
    color: #FFC107;
}

.contact-form {
    padding: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #043366;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: #fff;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #043366;
    outline: none;
    box-shadow: 0 0 0 3px rgba(4, 51, 102, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-container label {
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
    font-size: 13px;
}

.submit-button {
    background: #043366;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.submit-button i {
    transition: transform 0.3s;
}

.submit-button:hover {
    background: #FFC107;
    color: #043366;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.submit-button:hover i {
    transform: translateX(5px);
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.form-result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-result.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-result.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-result .result-icon i {
    font-size: 20px;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

    .offices-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 50px;
    }

    .contact-hero-content h1 {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-card-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-info,
    .contact-form {
        padding: 30px;
    }

    .contact-info {
        padding: 60px 0;
    }

    .office-locations {
        padding: 60px 0;
    }

    .contact-form-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .offices-container {
        grid-template-columns: 1fr;
    }

    .contact-hero-content h1 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .breadcrumbs li {
        font-size: 14px;
        padding: 0 10px;
    }
}