/**
 * İletişim Sayfası için özel stiller
 */

/* Form Stil Tanımları */
.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-selected {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select-items {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid #e5e7eb;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.select-item {
    padding: 10px 16px;
    cursor: pointer;
}

.select-item:hover {
    background-color: #f3f4f6;
}

.select-hide {
    display: none;
}

.select-show {
    display: block;
}

/* Animasyon tanımları */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Sosyal medya ikonları için stiller */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* İletişim bilgileri ikonları için stiller */
.contact-icon {
    color: #8B5A2B;
}

/* Form input stillerini geliştirme */
.form-input:focus {
    border-color: #8B5A2B;
    box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.2);
}

/* İletişim kartlarına hover efekti */
.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Harita konteyner stilini geliştirme */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Form gönderme butonu için hover efekti */
.submit-button:hover {
    background-color: #6d4522;
    transform: translateY(-2px);
}
