.ozan-footer {
    background-color: var(--site-color);
    background-image: url('../footer-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 30px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.ozan-footer p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ozan-footer>* {
    position: relative;
    z-index: 1;
}

.ozan-footer-top {
    padding-bottom: 5px;
}

.ozan-footer-top .row {
    display: flex;
    align-items: stretch;
}

@media (min-width: 768px) {
    .ozan-footer-top .row>[class*="col-"]:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 767px) {
    .ozan-footer-top .row>[class*="col-"]:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}

.ozan-footer-box {
    margin-bottom: 15px;
}

.ozan-footer-heading {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
}

.ozan-footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #ffffff;
}

.ozan-footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 25px;
}

.ozan-footer-links-grid li {
    list-style: none;
    margin-bottom: 0;
}

.ozan-footer-links-grid li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.ozan-footer-links-grid li a:hover {
    color: #1A1A1A;
    padding-left: 5px;
    opacity: 1;
}


.ozan-footer-hours-list {
    list-style: none;
    padding: 0;
}

.ozan-footer-hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ozan-footer-hours-list li:last-child {
    border-bottom: none;
}

.ozan-footer-hours-day {
    font-weight: 500;
}

.ozan-footer-hours-time {
    color: rgba(255, 255, 255, 0.8);
}

.ozan-footer-contact-list {
    list-style: none;
    padding: 0;
}

.ozan-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
}

.ozan-footer-contact-list li svg {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
    fill: #ffffff;
}

.ozan-footer-contact-list li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ozan-footer-contact-list li a:hover {
    color: #1A1A1A;
    opacity: 1;
}

.ozan-footer-social {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.ozan-footer-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.ozan-footer-social li a:hover {
    background-color: var(--site-color-dark);
    transform: translateY(-3px);
}

.ozan-footer-social li a svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.ozan-footer-social li a:hover svg {
    fill: #ffffff;
}

.ozan-footer-bottom {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.ozan-footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
}

@media (max-width: 991px) {
    .ozan-footer-links-grid {
        grid-template-columns: 1fr;
    }

    .ozan-footer-box {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .ozan-footer {
        padding: 40px 0 0;
    }

    .ozan-footer-heading {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .ozan-footer-social {
        justify-content: center;
    }
}