.contact-page-wrapper {
    position: relative;
    z-index: 1;
    margin-top: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 40px;
    background: url('../images/Country.png') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
}

.contact-page-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    z-index: 1;
}

.contact-info-boxes {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-box {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.country-flag {
    margin-bottom: 25px;
}

.country-flag img {
    width: 60px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.office-details h3 {
    color: #0B2242;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.company-name {
    font-weight: 500;
    margin-bottom: 20px;
    color: #0088CC;
    font-size: 16px;
}

.address, .phone {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.address i, .phone i {
    color: #0088CC;
    font-size: 18px;
    margin-top: 3px;
}

.phone a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone a:hover {
    color: #0088CC;
}

/* İletişim Formu Stilleri */
.contact-form-section {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 50px;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 35px;
    color: #0B2242;
    font-size: 32px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #0088CC;
}

/* Contact Form 7 Özel Stilleri */
.wpcf7-form {
    max-width: 800px;
    margin: 0 auto;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 8px;
    color: #0B2242;
    font-weight: 500;
    font-size: 15px;
}

.wpcf7-form .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 25px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e1e8ef;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    border-color: #0088CC;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,136,204,0.1);
    outline: none;
}

.wpcf7-form textarea {
    height: 150px;
    resize: vertical;
}

.wpcf7-form input[type="submit"] {
    background: #0088CC;
    color: #fff;
    padding: 16px 35px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 35px auto 0;
}

.wpcf7-form input[type="submit"]:hover {
    background: #006da3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,136,204,0.2);
}

/* Form Hata ve Başarı Mesajları */
.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
}

.wpcf7 form .wpcf7-response-output {
    margin: 30px 0 0;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

.wpcf7 form.invalid .wpcf7-response-output {
    border-color: #dc3545;
    background: #fff5f5;
    color: #dc3545;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #28a745;
    background: #f4fff6;
    color: #28a745;
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .contact-page-wrapper {
        padding: 40px 0;
    }

    .contact-box {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .contact-page-wrapper {
        padding: 30px 0;
    }

    .contact-box {
        flex: 100%;
        min-width: 100%;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }

    .contact-form-section h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .wpcf7-form {
        padding: 0;
    }

    .wpcf7-form input[type="submit"] {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-page-wrapper {
        padding: 20px 0;
    }

    .contact-box {
        padding: 25px;
    }

    .office-details h3 {
        font-size: 20px;
    }

    .contact-form-section h2 {
        font-size: 24px;
    }
}

.map-section {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
} 