/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-dark-theme {
    margin: 60px 0;
    font-family: 'Poppins', sans-serif; /* Modern bir font */
}

.footer-dark-theme .footer-title {
    color: #4cc6ff; /* Başlık rengi register.cshtml'den */
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 25px;
}

.footer-dark-theme .contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-dark-theme .contact-info-item .icon {
    background-color: rgba(76, 198, 255, 0.1);
    border: 1px solid #4cc6ff;
    color: #4cc6ff;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.footer-dark-theme .contact-info-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #fff;
}

.footer-dark-theme .contact-info-item p {
    margin: 0;
    color: #a0a0b8;
    font-size: 0.95rem;
}

.footer-dark-theme .social-links a {
    color: #a0a0b8;
    margin-right: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-dark-theme .social-links a:hover {
    color: #4cc6ff;
}

.footer-dark-theme .footer-form-label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.footer-dark-theme .footer-form-input {
    width: 100%;
    border-radius: 24px;
    border: 1px solid #30305a;
    padding: 14px 20px;
    margin-bottom: 15px;
    font-size: 1rem;
    background: #1a1a3a;
    color: #fff;
}

.footer-dark-theme .footer-form-input:focus {
    background: #1a1a3a;
    border-color: #4cc6ff;
    outline: none;
    box-shadow: none;
}

.footer-dark-theme .footer-form-button {
    background: #4cc6ff;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 24px;
    padding: 12px 40px;
    font-size: 1.1rem;
    margin-top: 10px;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;
}

.footer-dark-theme .footer-form-button:hover {
    background: #259ecb;
    color: #fff;
}

.footer-dark-theme .footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #30305a;
    color: #808098;
} 