/* İletişim sayfası için ek stiller */
img {
    border-radius: 28px;
}

.contact {
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

.contact.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.contact h1 {
    text-align: center;
    color: #FFD700;
    margin-bottom: 2rem;
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
    margin-bottom: 2rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

input, textarea {
    padding: 0.5rem;
    border: 1px solid #FFD700;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

input::placeholder, textarea::placeholder {
    color: #ccc;
}

button[type="submit"] {
    background-color: #FFD700;
    color: #001f3f;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #FFC107;
}

.contact .cta-button {
    display: block;
    margin: 1.5rem auto 0;
}

/* Genel stiller index.css'ten devralınır */

.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #FFD700;
    color: #001f3f;
    border: none;
    padding: 0.9rem 1.2rem;
    border-radius: 35px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.whatsapp-fixed:hover {
    transform: translateY(-3px);
    background-color: #FFC107;
}