/* Mobil Footer Styles */
:root {
    --primary-color: #0053a6;
    --primary-light: #0066cc;
    --primary-dark: #003d7a;
    --secondary-color: #333;
    --light-color: #fff;
    --dark-color: #000;
    --gray-color: #f5f5f5;
    --text-color: #333;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --footer-bg: #002290;
    --footer-dark: #001a70;
    --accent-color: #ffe000;
}

/* Mobil Footer Container */
.mobile-footer-container {
    width: 100%;
    background: linear-gradient(135deg, var(--footer-bg) 0%, var(--footer-dark) 100%);
    color: var(--light-color);
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 100;
    margin-top: auto;
    overflow: hidden;
}

.mobile-footer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

/* Footer Content */
.mobile-footer-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px 30px;
    max-width: 100%;
}

/* Footer Sections */
.mobile-footer-section {
    margin-bottom: 35px;
    padding: 0;
}

.mobile-footer-section:last-child {
    margin-bottom: 0;
}

/* Logo ve Açıklama */
.mobile-footer-about {
    text-align: center;
    margin-bottom: 40px;
}

.mobile-footer-logo {
    margin-bottom: 20px;
}

.mobile-footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(1.1);
    transition: var(--transition);
}

.mobile-footer-logo img:hover {
    filter: brightness(1.3);
    transform: scale(1.05);
}

.mobile-footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    text-align: justify;
    margin: 0;
    padding: 0 10px;
}

/* Hızlı Linkler */
.mobile-footer-links h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.mobile-footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.mobile-footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mobile-footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-footer-links-column li {
    margin-bottom: 12px;
}

.mobile-footer-links-column li a {
    color: var(--light-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    transition: var(--transition);
    display: block;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.mobile-footer-links-column li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 224, 0, 0.1), transparent);
    transition: var(--transition);
}

.mobile-footer-links-column li a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.mobile-footer-links-column li a:hover::before {
    left: 100%;
}

/* İletişim Bilgileri */
.mobile-footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--accent-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.mobile-footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.mobile-contact-office {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-contact-office h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.6;
}

.mobile-contact-item:last-child {
    margin-bottom: 0;
}

.mobile-contact-item i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 14px;
    min-width: 18px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.mobile-contact-item a {
    color: var(--light-color);
    transition: var(--transition);
    flex: 1;
    text-decoration: none;
}

.mobile-contact-item a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.mobile-contact-item span {
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

/* Sosyal Medya */
.mobile-footer-social h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.mobile-footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mobile-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--light-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.mobile-social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transform: scale(0);
    transition: var(--transition);
    z-index: -1;
}

/* Sosyal medya renkleri */
.mobile-social-icon.facebook::before {
    background: #1877f2;
}

.mobile-social-icon.twitter::before {
    background: #1da1f2;
}

.mobile-social-icon.instagram::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.mobile-social-icon.linkedin::before {
    background: #0077b5;
}

.mobile-social-icon.youtube::before {
    background: #ff0000;
}

.mobile-social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.mobile-social-icon:hover::before {
    transform: scale(1);
}

/* Telif Hakkı */
.mobile-footer-copyright {
    background: var(--footer-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.mobile-footer-copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

.mobile-footer-copyright p {
    margin: 5px 0;
}

.mobile-footer-copyright a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-weight: 500;
    text-decoration: none;
}

.mobile-footer-copyright a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* Responsive Design */

/* Küçük Mobil Cihazlar */
@media (max-width: 375px) {
    .mobile-footer-content {
        padding: 30px 15px 25px;
    }
    
    .mobile-footer-logo img {
        height: 50px;
    }
    
    .mobile-footer-description {
        font-size: 13px;
        padding: 0 5px;
    }
    
    .mobile-footer-links h4,
    .mobile-footer-contact h4,
    .mobile-footer-social h4 {
        font-size: 16px;
        margin-bottom: 18px;
    }
    
    .mobile-footer-links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mobile-footer-links-column li a {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .mobile-contact-office {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .mobile-contact-item {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .mobile-contact-item i {
        font-size: 13px;
        min-width: 16px;
        margin-right: 10px;
    }
    
    .mobile-social-icons {
        gap: 12px;
    }
    
    .mobile-social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .mobile-footer-copyright {
        padding: 15px;
        font-size: 11px;
    }
}

/* Çok Küçük Mobil Cihazlar */
@media (max-width: 320px) {
    .mobile-footer-content {
        padding: 25px 10px 20px;
    }
    
    .mobile-footer-logo img {
        height: 45px;
    }
    
    .mobile-footer-description {
        font-size: 12px;
    }
    
    .mobile-footer-links h4,
    .mobile-footer-contact h4,
    .mobile-footer-social h4 {
        font-size: 15px;
    }
    
    .mobile-contact-office {
        padding: 12px;
    }
    
    .mobile-contact-item {
        font-size: 11px;
    }
    
    .mobile-social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .mobile-footer-copyright {
        padding: 12px;
        font-size: 10px;
    }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 1024px) {
    .mobile-footer-content {
        padding: 50px 40px 40px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .mobile-footer-section {
        margin-bottom: 40px;
    }
    
    .mobile-footer-logo img {
        height: 70px;
    }
    
    .mobile-footer-description {
        font-size: 15px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .mobile-footer-links-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .mobile-contact-office {
        max-width: 400px;
        margin: 0 auto 25px;
    }
    
    .mobile-social-icons {
        gap: 20px;
    }
    
    .mobile-social-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.mobile-footer-section:nth-child(1) { animation-delay: 0.1s; }
.mobile-footer-section:nth-child(2) { animation-delay: 0.2s; }
.mobile-footer-section:nth-child(3) { animation-delay: 0.3s; }
.mobile-footer-section:nth-child(4) { animation-delay: 0.4s; }

/* Hover Efektleri */
.mobile-footer-logo img,
.mobile-footer-links-column li a,
.mobile-contact-item a,
.mobile-social-icon {
    will-change: transform;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .mobile-footer-container {
        background: linear-gradient(135deg, #001a5c 0%, #001347 100%);
    }
    
    .mobile-contact-office {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .mobile-footer-section,
    .mobile-footer-logo img,
    .mobile-footer-links-column li a,
    .mobile-contact-item a,
    .mobile-social-icon {
        animation: none;
        transition: none;
    }
}
