/* Anasayfa (index.html) ile aynÄ± footer stilleri */
.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 768px) {
    .container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

.position-relative {
    position: relative;
}

/* Site logo â€” light/dark */
.site-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
}

.site-logo img {
    width: auto;
    object-fit: contain;
}

.site-logo--header img {
    width: 160px;
    max-height: 40px;
}

.site-logo--footer img {
    width: 180px;
    max-height: 48px;
}

.site-logo .site-logo__dark {
    display: none;
}

.site-logo .site-logo__light {
    display: block;
}

.dark .site-logo .site-logo__light {
    display: none;
}

.dark .site-logo .site-logo__dark {
    display: block;
}

/* ===== Footer ===== */
.footer {
    background-color: #1e1e1f;
    border-top: 1px solid #233648;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #181818;
    z-index: 0;
}
@media (min-width: 1024px) {
    .footer::before {
        width: 40%;
    }
}

/* ===== Footer Top ===== */
.footer-top {
    background-color: #242424;
    padding: 0;
}

.footer-top-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}
@media (min-width: 768px) {
    .footer-top-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0 1rem;
    border-bottom: 1px solid #363636;
}
@media (min-width: 768px) {
    .footer-logo {
        border-bottom: none;
        border-right: 1px solid #363636;
        padding: 0;
        height: 90px;
    }
}
@media (min-width: 1024px) {
    .footer-logo {
        width: 20%;
    }
}

.footer-logo h2 {
    color: #fff !important;
}

.social-links-footer {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 12px 1rem;
    justify-content: center;
    margin-left: auto;
}
@media (min-width: 768px) {
    .social-links-footer {
        padding: 0;
        padding-left: 30px;
        justify-content: flex-start;
    }
}

.social-links-footer a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e1e1f;
    border-radius: 2px;
}
@media (min-width: 768px) {
    .social-links-footer a {
        width: 50px;
        height: 50px;
    }
}

.social-links-footer a img {
    width: 16px;
    height: 16px;
}

.instagram-link:hover {
    background-color: #c13584;
}
.tik-tok-link:hover {
    background-color: #000000;
}
.twitter-link:hover {
    background-color: #1da1f2;
}
.youtube-link:hover {
    background-color: #ff0000;
}
.facebook-link:hover {
    background-color: #1877f2;
}

.footer-top-buttons {
    display: flex;
    gap: 15px;
}
@media (max-width: 480px) {
    .footer-top-buttons {
        display: none;
    }
}
@media (max-width: 768px) {
    .footer-top-buttons {
        display: none;
    }
}

.footer-top-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    min-width: 0;
    transition: all 0.3s ease;
}
@media (min-width: 480px) {
    .footer-top-buttons a {
        flex: 1;
    }
}
@media (min-width: 768px) {
    .footer-top-buttons a {
        justify-content: start;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 16px;
        min-width: 200px;
        flex: none;
    }
}

.footer-top-button-1 {
    background-color: #425dfe;
    border: 1px solid #425dfe;
}
.footer-top-button-2 {
    background-color: #11d377;
    border: 1px solid #11d377;
}
.footer-top-button-1:hover {
    background-color: transparent;
    color: #425dfe;
}
.footer-top-button-2:hover {
    background-color: transparent;
    color: #11d377;
}

/* ===== Footer Grid ===== */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background-color: #1e1e20;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.footer-company {
    background-color: #181818;
}
@media (min-width: 1024px) {
    .footer-company {
        border-right: 1px solid #363636;
    }
}

.footer-company .footer-links-col {
    padding-left: 1rem;
}
@media (min-width: 1024px) {
    .footer-company .footer-links-col {
        padding-left: 0;
    }
}

/* ===== Footer Links Columns ===== */
.footer-links-col {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #2a2a2b;
}
.footer-links-col:last-child {
    border-bottom: none;
}
@media (min-width: 768px) {
    .footer-links-col {
        padding: 2rem 1.5rem;
        border-bottom: none;
    }
}
@media (min-width: 1024px) {
    .footer-links-col {
        padding: 2rem;
    }
}

.footer-links-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
}
@media (min-width: 768px) {
    .footer-links-title {
        margin-bottom: 1.5rem;
        font-size: 16px;
    }
}

.footer-links-title .material-symbols-outlined {
    color: #ff1c4c;
    font-size: 1.125rem;
}

.footer-links-title--hidden {
    display: none;
}
@media (min-width: 1024px) {
    .footer-links-title--hidden {
        display: flex;
        opacity: 0;
        pointer-events: none;
    }
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    list-style: disc;
    padding-left: 20px;
}

.footer-links-list a {
    transition: color 0.2s;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 3px;
    display: block;
    text-decoration: none;
}
@media (min-width: 768px) {
    .footer-links-list a {
        font-size: 14px;
        margin-bottom: 5px;
    }
}
.footer-links-list a:hover {
    color: #3d5afe;
}

/* ===== Footer Payment Icons ===== */
.footer-payment-icons {
    display: flex;
    gap: 3px;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 1rem 1.25rem;
}
@media (min-width: 768px) {
    .footer-payment-icons {
        padding: 0 1.5rem 2rem;
    }
}
@media (min-width: 1024px) {
    .footer-payment-icons {
        padding: 0 0 2rem;
    }
}
.footer-payment-icons img {
    width: 30px;
}
@media (min-width: 768px) {
    .footer-payment-icons img {
        width: 35px;
    }
}

/* ===== Bottom Footer ===== */
.footer-bottom {
    position: relative;
}
.footer-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #353536;
    z-index: 2;
}
@media (min-width: 768px) {
    .footer-bottom {
        padding: 0 2.5rem;
    }
}

.footer-bottom-inner {
    width: 100%;
    background-color: #1e1e20;
}

.footer-bottom-row {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
}
@media (min-width: 1024px) {
    .footer-bottom-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-copyright {
    width: 100%;
    background-color: #181818;
    height: auto;
    padding: 14px 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #363636;
}
@media (min-width: 1024px) {
    .footer-copyright {
        width: 20%;
        height: 67px;
        padding: 0;
        border-bottom: none;
        border-right: 1px solid #363636;
    }
}

.footer-copyright p {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
}
@media (min-width: 768px) {
    .footer-copyright p {
        font-size: 0.875rem;
    }
}

.footer-bottom-certifications {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 12px 1rem;
}
@media (min-width: 768px) {
    .footer-bottom-certifications {
        gap: 10px;
    }
}
@media (min-width: 1024px) {
    .footer-bottom-certifications {
        margin-right: auto;
        padding: 0;
        padding-left: 30px;
    }
}

.footer-bottom-certifications img {
    height: 35px;
}
@media (min-width: 768px) {
    .footer-bottom-certifications img {
        height: 45px;
    }
}

.footer-bottom-nav {
    padding: 12px 1rem;
}
@media (min-width: 1024px) {
    .footer-bottom-nav {
        padding: 0;
    }
}

.footer-bottom-nav-list {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    flex-wrap: wrap;
    padding-left: 0;
}
@media (min-width: 768px) {
    .footer-bottom-nav-list {
        gap: 1rem;
    }
}

.footer-bottom-nav-list a {
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    transition: color 0.2s;
    text-decoration: none;
}
@media (min-width: 768px) {
    .footer-bottom-nav-list a {
        font-size: 14px;
    }
}
.footer-bottom-nav-list a:hover {
    color: #3d5afe;
}

.work-hours {
    background-color: #6c737a;
    color: #fff;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 500;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}
.etbis-logo img {
    max-width: 100%;
    width: 100px;
    margin-bottom: 10px;
}
