/* ===== Pilna platuma fons (apiet body max-width) ===== */
.lt-footer-bg {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;

    background: #1d242d;           /* fonu toni vari nomainīt pēc saviem datiem */
}

/* ===== Galvenais footer konteiners ===== */
.lt-footer-container {
    border-top: 1px solid #151a20;
    color: #ffffff;
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;               /* 1rem, kā uz ltech.lv */
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;

    max-width: 1920px;
    margin: 0 auto;
    padding: 32px 65px ;
    box-sizing: border-box;

    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* ===== Kolonnas: ātrās saites / resursi ===== */
.lt-quick-links-col {
    font-size: 18px;
    flex: 0 0 25%;
    min-width: 200px;
}

.lt-quick-links-col h2 {
    font-size: 18px;
    font-weight: 600;
}

.lt-quick-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.lt-quick-links-col li {
    margin-bottom: 6px;
}

.lt-quick-links-col a {
    color: #e5e7eb;
    font-size: 16px;
    text-decoration: none;
}

.lt-quick-links-col a:hover {
    color: #ffffff;
}

/* ===== Kontaktu kolonna ===== */
.lt-contact-links-col {
    flex: 1 1 420px;
    min-width: 380px;
    margin-left: auto;
}

/* Logo bloks */
.footer-quick-logo {
    margin-bottom: 20px;
}

.lt-logo svg {
    display: block;
    height: 40px;
    width: auto;
}

/* ===== Kontaktu režģis – 2 kolonnas ===== */
.lt-contacts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.lt-contact-column {
    flex: 1 1 0;
    min-width: 230px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Kontakt pogas (telefonam, e-pastam, adresei, laikam) */
.lt-contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;

    border-radius: 10px;

    background: #1d242d;
    border: 0px solid #1f2937;

    color: #e5e7eb;
    font-size: 16px;
    text-decoration: none;

    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.lt-contact-btn i {
    font-size: 17px;
    color: #9ca3af;
}

.lt-contact-btn:hover {
    background: #1f2937;
    border-color: #374151;
    color: #ffffff;
}

.lt-contact-btn:hover i {
    color: #ffffff;
}

.fa-regular {
    font-weight: 900;
    font-size: 24px!important;
}
.fa-solid {
    font-weight: 900;
    font-size: 24px!important;
}
.fa-clasic {
    font-weight: 900;
    font-size: 24px!important;
}

.fa-brands {
    font-weight: 900;
    font-size: 24px!important;
}


/* Sociālo tīklu rinda */
.lt-social-row {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.lt-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 9999px;

    display: flex;
    align-items: center;
    justify-content: center;


    border: 0px solid #374151;

    color: #e5e7eb;
    text-decoration: none;

    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.lt-social-btn i {
    font-size: 18px;
}

.lt-social-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

/* ===== Apakšējā līnija (copyright) ===== */
.lt-footer-bottom {
    width: 100%;
    border-top: 1px solid #151a20;
    margin-top: 32px;
    padding-top: 16px;

    font-size: 14px;
    color: #9ca3af;
    text-align: center;
}

.lt-footer-bottom a {
    color: #d1d5db;
    text-decoration: none;
}

.lt-footer-bottom a:hover {
    color: #ffffff;
}

/* ===== Responsīvie pielāgojumi ===== */
@media (max-width: 1200px) {
    .lt-footer-container {
        padding: 32px 40px 32px;
        gap: 32px;
    }
}



@media (max-width: 900px) {
    .lt-footer-container {
        flex-direction: column;
        padding: 32px 24px 32px;
    }

    .lt-contact-links-col {
        margin-left: 0;
    }

    .lt-footer-bottom {
        text-align: left;
    }
}
