/*
 * İLETİŞİM STİLLERİ (page-iletisim.css)
 * Sadece iletisim.php için geçerli kodlar.
*/

.hero-section {
    margin-top: 80px;
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: #FBFAF8;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(29, 32, 31, 0.6);
    max-width: 700px;
    margin: 0 auto;
}

.contact-section {
    padding: 4rem 2rem 8rem;
    background-color: #FBFAF8;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(29, 32, 31, 0.08);
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    box-shadow: 0 4px 20px rgba(29, 32, 31, 0.12);
}

.contact-background-emblem {
    position: absolute;
    width: 75px;
    height: 75px;
    right: 10px;
    bottom: 10px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.contact-background-emblem svg {
    width: 100%;
    height: 100%;
}

.contact-icon-wrapper,
.contact-card-title,
.contact-card-info {
    position: relative;
    z-index: 1;
}

.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #1D201F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 32px;
    height: 32px;
    stroke: #FBFAF8;
    stroke-width: 2;
    fill: none;
}

.contact-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1D201F;
}

.contact-card-info {
    font-size: 1rem;
    color: rgba(29, 32, 31, 0.7);
    line-height: 1.6;
}

.contact-card-link {
    color: #1D201F;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.contact-card-link:hover {
    opacity: 0.6;
}

.form-map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.form-container {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 10px rgba(29, 32, 31, 0.08);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1D201F;
}

.form-subtitle {
    font-size: 0.95rem;
    color: rgba(29, 32, 31, 0.6);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1D201F;
}

.form-input,
.form-textarea,
.form-select {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(29, 32, 31, 0.2);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: #FBFAF8;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231D201F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

.form-select option {
    padding: 0.875rem 1rem;
    background: white;
    color: #1D201F;
    font-size: 0.95rem;
}

/* Özel Dropdown */
.custom-select-wrapper {
    position: relative;
}

.custom-select-trigger {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(29, 32, 31, 0.2);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: #FBFAF8;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    user-select: none;
}

.custom-select-trigger:hover {
    border-color: rgba(29, 32, 31, 0.4);
}

.custom-select-trigger.active {
    border-color: #1D201F;
    background: white;
}

.custom-select-trigger span {
    color: rgba(29, 32, 31, 0.5);
}

.custom-select-trigger.has-value span {
    color: #1D201F;
}

.custom-select-arrow {
    width: 20px;
    height: 20px;
    stroke: #1D201F;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s;
}

.custom-select-trigger.active .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid rgba(29, 32, 31, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(29, 32, 31, 0.15);
    max-height: 250px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 100;
}

.custom-select-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-option {
    padding: 0.875rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #1D201F;
    font-size: 0.95rem;
}

.custom-select-option:hover {
    background: rgba(29, 32, 31, 0.05);
}

.custom-select-option.selected {
    background: rgba(29, 32, 31, 0.08);
    font-weight: 500;
}

.custom-select-dropdown::-webkit-scrollbar {
    width: 8px;
}

.custom-select-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb {
    background: rgba(29, 32, 31, 0.3);
    border-radius: 4px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(29, 32, 31, 0.5);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #1D201F;
    background: white;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-button {
    background-color: #1D201F;
    color: #FBFAF8;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-button:hover {
    background-color: rgba(29, 32, 31, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 32, 31, 0.2);
}

.map-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(29, 32, 31, 0.08);
    height: 100%;
    min-height: 500px;
    position: relative;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 500px;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.directions-button {
    background-color: #1D201F;
    color: #FBFAF8;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(29, 32, 31, 0.3);
}

.directions-button:hover {
    background-color: rgba(29, 32, 31, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 32, 31, 0.4);
}

.directions-icon {
    width: 20px;
    height: 20px;
    stroke: #FBFAF8;
    stroke-width: 2;
    fill: none;
}

@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-map-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .footer-content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .footer-content-grid {
        grid-template-columns: 1fr;
    }
}