/* ============================================
   TRAVELOPOD-EUROPE.COM - Footer
   ============================================ */

/* ── Routes bar ── */
.footer-routes-bar {
    background: var(--primary-dark, #003D80);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-routes-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    height: 48px;
    overflow: hidden;
}

.footer-routes-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-routes-list {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
}

.footer-route {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 4px;
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.04em;
    transition: all 0.2s;
    white-space: nowrap;
}

.footer-route:hover {
    color: white;
    background: rgba(255,255,255,0.08);
}

.footer-route svg {
    width: 12px;
    height: 12px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ── Trustpilot bar ── */
.trustpilot-bar {
    background: linear-gradient(135deg, #0a1f5c 0%, #0057B8 60%, #1a6fd4 100%);
    border-top: 3px solid rgba(255,255,255,0.08);
}

.trustpilot-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.trustpilot-text {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

.trustpilot-score {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.trustpilot-score span {
    font-weight: 400;
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
}

.trustpilot-sep {
    color: rgba(255,255,255,0.2);
}

.trustpilot-logo-img {
    height: 26px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    vertical-align: middle;
}

.trustpilot-count strong {
    color: rgba(255,255,255,0.75);
}

@media (max-width: 480px) {
    .trustpilot-sep,
    .trustpilot-label {
        display: none;
    }
}

/* ── Main footer wrapper ── */
.footer {
    background: var(--accent);
    color: rgba(255,255,255,0.9);
    padding: 0;
}

/* ── Main grid ── */
.footer-main {
    padding: 56px 24px 48px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
    gap: 40px;
}

/* ── Brand column ── */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.82rem;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.02em;
    margin-top: -8px;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    max-width: 280px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
    text-decoration: none;
}

.footer-social a:hover {
    background: white;
    border-color: white;
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    display: block;
}

/* ── Navigation columns ── */
.footer-column h4 {
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: white;
    opacity: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.footer-links a:hover {
    color: white;
    padding-left: 6px;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* ── Contact column ── */
.footer-contact-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 16px;
    transition: opacity 0.2s;
}

.footer-contact-email:hover {
    opacity: 0.75;
}

.footer-contact-email svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.footer-contact-email:hover svg {
    transform: translateX(3px);
}

.footer-contact-address {
    font-size: 0.82rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    font-style: normal;
}

.footer-contact-cta {
    display: inline-block;
    margin-top: 4px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    align-self: flex-start;
}

.footer-contact-cta:hover {
    background: white;
    color: var(--accent);
    border-color: white;
}

/* ── Certifications ── */
.footer-certs h4 {
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-cert-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.footer-cert-badge svg {
    width: 14px;
    height: 14px;
    color: white;
    flex-shrink: 0;
}

.footer-cert-logo {
    display: block;
    width: 99px;
    height: 34px;
    object-fit: contain;
}

.footer-cert-logo-sgr {
    width: 122px;
    height: 34px;
}

.footer-cert-logo-iata {
    width: 139px;
    height: 34px;
}

.footer-cert-logo-ssl {
    width: 124px;
    height: 34px;
}

/* ── Bottom bar ── */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.2);
}

.footer-bottom-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: white;
}

.footer-legal-links span {
    color: rgba(255,255,255,0.25);
    font-size: 0.75rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-right svg {
    width: 14px;
    height: 14px;
    color: white;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 32px;
    }
    .footer-certs {
        grid-column: 1 / -1;
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .footer-certs > * {
        flex: 1;
        min-width: 200px;
    }
    .footer-certs h4 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-routes-inner {
        gap: 12px;
    }
    .footer-routes-label {
        display: none;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding: 40px 20px 32px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-certs {
        grid-column: 1 / -1;
        flex-direction: column;
        gap: 20px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-routes-list {
        gap: 2px;
    }
    .footer-route {
        padding: 5px 8px;
        font-size: 0.72rem;
    }
}
