/**
 * Diş Kliniği Web Sitesi
 * Alt Kısım Bileşeni CSS
 */

/* Footer Ana Stiller */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0 0;
    position: relative;
}

.footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #fff;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Footer Logo */
.footer-logo img {
    max-height: 110px;
    margin-bottom: 15px;
}

/* Sosyal Medya Linkleri */
.footer .social-links {
    margin-top: 20px;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Linkleri */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* İletişim Bilgileri */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
}

.footer-contact li i {
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    min-width: 20px;
    margin-top: 3px;
}

/* Bülten Aboneliği */
.newsletter {
    margin-top: 30px;
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-control {
    border: none;
    padding: 12px 20px;
    height: auto;
    font-size: 14px;
}

.newsletter-form .btn {
    padding: 12px 20px;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
}

/* Alt Footer */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.footer-bottom-links li {
    margin-left: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Hizmet Bölgeleri - Yerel SEO Bölümü */
.service-areas-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.service-areas-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-areas-title i {
    color: #FFE4B5;
}

.service-areas-description {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-areas-description strong {
    color: #fff;
}

.service-areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-tag {
    display: inline-block;
}

.area-tag a {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.area-tag a:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.service-areas-cta {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.service-areas-cta a {
    color: #FFE4B5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-areas-cta a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Stiller */
@media (max-width: 991.98px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer h5 {
        margin-top: 20px;
    }
    
    .service-areas-section {
        padding: 20px;
    }
    
    .service-areas-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .footer-bottom-links li {
        margin-left: 0;
        margin-right: 15px;
    }
    
    .service-areas-list {
        gap: 8px;
    }
    
    .area-tag a {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
} 