/* =========================================
   FOOTER CSS (index.html için)
   ========================================= */

.site-footer {
    background-color: #1e2229;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 60px 0 20px;
    font-size: 14px;
    margin-top: auto;
    font-family: 'Urbanist', sans-serif;
}

.site-footer .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.site-footer .footer-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 28%;
    height: 100%;
    background: #3e2b2f;
    border-bottom-right-radius: 100% 70%;
    z-index: 1;
    pointer-events: none;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.site-footer .brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer .logo-text {
    color: #d65a49;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    font-family: 'Signika', sans-serif;
}

.site-footer .time-badge {
    background-color: #cd5c51;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 35px;
    position: relative;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    margin-left: 10px;
}

.site-footer .badge-tail {
    position: absolute;
    bottom: 12px;
    right: -6px;
    width: 24px;
    height: 24px;
    background-color: #cd5c51;
    transform: rotate(45deg);
    z-index: -1;
}

.site-footer .social-links {
    display: flex;
    gap: 12px;
    margin-left: 10px;
}

.site-footer .social-links a {
    color: #a0a0a0;
    font-size: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: transparent;
}

.site-footer .social-links a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.site-footer .footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.site-footer .footer-menu a {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.site-footer .primary-link {
    color: #cd5c51;
    text-transform: uppercase;
}

.site-footer .primary-link-white {
    color: #e0e0e0;
    text-transform: uppercase;
}

.site-footer .footer-menu a:hover {
    opacity: 0.8;
}

.site-footer .col-title {
    font-weight: 400;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: 'Signika', sans-serif;
}

.site-footer .legal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer .legal-list a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    transition: color 0.2s;
}

.site-footer .legal-list a:hover {
    color: #cd5c51;
}

.site-footer .contact-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.site-footer .big-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    color: white;
    font-weight: 400;
}

.site-footer .big-phone i {
    transform: rotate(-15deg);
    font-size: 22px;
}

.site-footer .contact-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-footer .contact-group .label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-footer .contact-group .wp-line {
    font-size: 15px;
    color: white;
}

.site-footer .email-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.site-footer .address-group {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.4;
    color: #e0e0e0;
}

.site-footer .footer-bottom {
    margin-top: 40px;
    color: #909090;
    font-size: 12px;
    line-height: 1.6;
}

.site-footer .divider {
    height: 1px;
    background-color: #383c45;
    width: 100%;
    margin-bottom: 20px;
}

.site-footer .disclaimer {
    margin-bottom: 15px;
}

.site-footer .copyright {
    color: #cd5c51;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .site-footer .footer-bg-shape,
    .site-footer .time-badge,
    .site-footer .social-links {
        display: none;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .site-footer .brand-col {
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
    }
    
    .site-footer .logo-text {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .site-footer .brand-col {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .site-footer {
        padding-top: 40px;
    }
}

