/* İletişim Sayfası Stilleri */
.page-title {
    font-size: 3.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    font-family: 'Dancing Script', 'Pacifico', 'Lobster', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

.contact-section {
    padding: 2rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Dancing Script', 'Pacifico', 'Lobster', cursive;
}

.contact-info > p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
}

/* Mobil görünümde formun üstünde görünecek metin */
.contact-intro-mobile {
    display: none;
}

.contact-intro-mobile h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Dancing Script', 'Pacifico', 'Lobster', cursive;
}

.contact-intro-mobile p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #666;
    margin: 0.3rem 0;
}

.contact-text a {
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-submit:active {
    transform: translateY(0);
}

.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert ul {
    margin: 0.5rem 0 0 1.5rem;
    padding: 0;
}

.alert li {
    margin-bottom: 0.3rem;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Mobil görünümde metin göster, desktop metni gizle */
    .contact-intro-mobile {
        display: block;
        margin-bottom: 2rem;
    }
    
    .contact-intro-desktop {
        display: none;
    }
    
    /* Mobilde formu en üste al */
    .contact-form-wrapper {
        order: -1;
    }
    
    .contact-info {
        order: 1;
    }
    
    .contact-intro-mobile h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .contact-intro-mobile p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .contact-section {
        padding: 1.5rem 0;
    }

    .contact-content {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-info > p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        padding: 1.2rem;
        gap: 0.8rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-text h3 {
        font-size: 1.1rem;
    }

    .contact-text p {
        font-size: 0.9rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .alert {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-section {
        padding: 1rem 0;
    }

    .contact-content {
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .contact-icon {
        margin: 0 auto;
        width: 40px;
        height: 40px;
    }

    .contact-text h3 {
        font-size: 1rem;
    }

    .contact-text p {
        font-size: 0.85rem;
    }

    .contact-form-wrapper {
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 16px; /* iOS zoom önleme */
    }

    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px; /* Touch-friendly */
        width: 100%;
    }
}

/* Google Harita Stilleri */
.map-container {
    margin-top: 3rem;
    width: 100%;
}

.map-container h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Dancing Script', 'Pacifico', 'Lobster', cursive;
}

.google-map {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

@media (max-width: 768px) {
    .map-container {
        margin-top: 2rem;
    }

    .map-container h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .google-map {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-container h2 {
        font-size: 1.5rem;
    }

    .google-map {
        height: 300px;
    }
}