.elementor-156 .elementor-element.elementor-element-27d4713{--display:flex;}/* Start custom CSS for html, class: .elementor-element-34afc78f *//* Ana İletişim Sayfası Konteynerı */
.contact-page-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.08); /* Siyah ton gölge */
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
}

/* Sayfa Başlığı ve Giriş Açıklaması */
.contact-intro {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2b2b2b; /* koyu gri alt çizgi */
}

.contact-intro h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3em;
    color: #1a1a1a; /* koyu siyah */
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.contact-intro h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(to right, #ff7e00, #ff5100); /* turuncu degrade */
    border-radius: 3px;
}

.contact-intro p {
    font-size: 1.1em;
    color: #2b2b2b; /* koyu gri */
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* İletişim Bilgileri ve Formun Izgara Düzeni */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Form solda daha geniş, bilgiler sağda */
    gap: 40px;
    margin-bottom: 50px;
}

/* Form Bölümü */
.contact-form-section {
    padding-right: 20px;
    background: none;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
}

/* Başlık */
.contact-form-section h2 {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a; /* siyah */
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -0.5px;
}

.contact-form-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, #ff7e00, #ff5100);
    border-radius: 3px;
}

/* Mesaj Kutusu */
#iletisim-mesaj {
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 1.1em;
    text-align: center;
    font-weight: 700;
    line-height: 1.5;
    animation: fadeInScale 0.4s ease-out forwards;
}

#iletisim-mesaj.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.1);
}

#iletisim-mesaj.warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.1);
}

#iletisim-mesaj.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.1);
}

/* Form Etiketleri */
.contact-form label {
    display: block;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.05em;
}

/* Form Giriş Alanları */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: calc(100% - 24px);
    padding: 14px 12px;
    margin-bottom: 25px;
    border: 1px solid #2b2b2b;
    border-radius: 8px;
    font-size: 1.05em;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    color: #1a1a1a;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #ff7e00;
    box-shadow: 0 0 0 4px rgba(255, 126, 0, 0.25);
    background-color: #fff;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Gönder Butonu */
.contact-form button[type="submit"] {
    display: block;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(145deg, #ff7e00, #ff5100);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(255, 126, 0, 0.4);
}

.contact-form button[type="submit"]:hover {
    background: linear-gradient(145deg, #ff5100, #cc3f00);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 126, 0, 0.6);
}

.contact-form button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(255, 126, 0, 0.3);
}

/* Diğer İletişim Bilgileri Bölümü */
.contact-info-section {
    background-color: #2b2b2b; /* koyu gri/siyah ton */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(26, 26, 26, 0.2);
    color: #fff;
}

.contact-info-section h2 {
    font-family: 'Poppins', sans-serif;
    color: #ff7e00;
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ff7e00, #ff5100);
    border-radius: 2px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.8em;
    color: #ff7e00;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
}

.info-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    color: #fff;
    margin-top: 0;
    margin-bottom: 5px;
}

.info-item p {
    margin-bottom: 0;
    font-size: 0.95em;
    color: #ddd;
}

.info-item p a {
    color: #ff7e00;
    text-decoration: none;
    font-weight: 600;
}

.info-item p a:hover {
    text-decoration: underline;
}

/* Sosyal Medya Bağlantıları */
.social-media-links {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #444;
    padding-top: 30px;
}

.social-media-links h3 {
    font-family: 'Poppins', sans-serif;
    color: #ff7e00;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.social-media-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.5em;
    color: #1a1a1a;
    background-color: #ff7e00;
    border-radius: 50%;
    margin: 0 10px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 126, 0, 0.3);
}

.social-media-links a:hover {
    background-color: #ff5100;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 126, 0, 0.5);
}

/* Harita Bölümü */
.map-section {
    margin-top: 50px;
    text-align: center;
}

.map-section h2 {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    font-size: 2.2em;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.map-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ff7e00, #ff5100);
    border-radius: 2px;
}

.map-embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.15);
}

.map-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Animasyon */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobil Duyarlılık */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-section {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .contact-page-container {
        padding: 25px;
    }
    .contact-intro h1 {
        font-size: 1.5em;
    }
    .contact-intro h1::after {
        width: 100px;
    }
    .contact-intro p {
        font-size: 1em;
    }
    .contact-form-section h2,
    .contact-info-section h2,
    .map-section h2 {
        font-size: 1.3em;
    }
    .contact-form-section h2::after,
    .contact-info-section h2::after,
    .map-section h2::after {
        width: 80px;
    }
    .contact-form label {
        font-size: 0.95em;
    }
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        padding: 12px 10px;
        font-size: 1em;
        margin-bottom: 20px;
    }
    .contact-form textarea {
        min-height: 100px;
    }
    .contact-form button[type="submit"] {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    #iletisim-mesaj {
        font-size: 1em;
        padding: 10px 15px;
    }
    .info-item i {
        font-size: 1.5em;
        margin-right: 10px;
    }
    .info-item h3 {
        font-size: 1.2em;
    }
    .social-media-links h3 {
        font-size: 1.5em;
    }
    .social-media-links a {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 1.3em;
        margin: 0 8px;
    }
}/* End custom CSS */