:root {
    --ft-red: #d90429;
    --ft-red-hover: #ef233c;
    --ft-red-glow: rgba(217, 4, 41, 0.4);
    --ft-dark-bg: #0d1117;
    --ft-card-bg: #161b22;
    --ft-bottom-bg: #06090e;
    --ft-text: #9ca3af;
    --ft-text-light: #f3f4f6;
    --ft-border: rgba(255, 255, 255, 0.08);
}

.main-footer {
    position: relative;
    width: 100%;
    background-color: var(--ft-dark-bg);
    color: var(--ft-text);
    font-family: 'Poppins', sans-serif;
    border-top: 3px solid var(--ft-red);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* -------------------------------------------
   FOOTER TOP AREA & GRID
--------------------------------------------- */
.footer-top {
    padding: 80px 0 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr 0.8fr;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ft-text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-title .title-line {
    width: 4px;
    height: 18px;
    background-color: var(--ft-red);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--ft-red-glow);
}

/* 1. Kolon - Logo & Slogan */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 210px;
    height: auto;
    display: block;
}

.footer-slogan {
    font-size: 13.5px;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--ft-card-bg);
    border: 1px solid var(--ft-border);
    color: var(--ft-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.35s ease;
}

.social-icon:hover {
    background-color: var(--ft-red);
    color: #ffffff;
    border-color: var(--ft-red);
    transform: translateY(-4px);
    box-shadow: 0 0 15px var(--ft-red-glow);
}

/* 2. Kolon - Hızlı Menü */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--ft-text);
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 10px;
    color: var(--ft-red);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.footer-links a:hover i {
    transform: translateX(4px);
}

/* 3. Kolon - İletişim */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-icon {
    font-size: 16px;
    color: var(--ft-red);
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info strong {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #d1d5db;
    margin-bottom: 2px;
}

.contact-info a,
.contact-info span {
    font-size: 13.5px;
    color: #9ca3af;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--ft-red-hover);
}

/* 4. Kolon - Çalışma Saatleri */
.hours-box {
    background-color: var(--ft-card-bg);
    border: 1px solid var(--ft-border);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.hours-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--ft-red);
    box-shadow: 0 0 8px var(--ft-red-glow);
}

.hours-icon {
    font-size: 24px;
    color: var(--ft-red);
}

.hours-details {
    display: flex;
    flex-direction: column;
}

.hours-details .days {
    font-size: 12px;
    color: var(--ft-text-light);
    font-weight: 600;
}

.hours-details .time {
    font-size: 14px;
    font-weight: 700;
    color: var(--ft-red-hover);
    margin-top: 2px;
}

.hours-note {
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
}

/* -------------------------------------------
   FOOTER BOTTOM BAR (TELİF & İMZA)
--------------------------------------------- */
.footer-bottom {
    background-color: var(--ft-bottom-bg);
    padding: 20px 0;
    border-top: 1px solid var(--ft-border);
}

.bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    font-size: 13px;
    color: #9ca3af;
}

.designer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.design-by-text {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.designer-logo {
    height: 24px;
    width: auto;
    display: block;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.designer a:hover .designer-logo {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* -------------------------------------------
   RESPONSIVE UYUM (TABLET & MOBİL)
--------------------------------------------- */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 50px 0 40px 0;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}