/* =============================================================================
   Boka Cruises — footer.css (Faza 9.3)
   Multi-column footer + newsletter form + social icons + legal bar.
   ============================================================================= */

.site-footer {
    background: var(--bc-secondary-dk);
    color: rgba(255, 255, 255, 0.85);
    padding: var(--bc-space-8) 0 0;
    margin-top: var(--bc-space-8);
    font-size: var(--bc-fs-sm);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--bc-transition-fast);
}
.site-footer a:hover { color: var(--bc-primary); }

/* =============================================================================
   1. Main columns grid
   ============================================================================= */
.site-footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--bc-space-6);
    padding-bottom: var(--bc-space-7);
}
@media (max-width: 1023.98px) {
    .site-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: var(--bc-space-6) var(--bc-space-5);
    }
}
@media (max-width: 575.98px) {
    .site-footer__main {
        grid-template-columns: 1fr;
        gap: var(--bc-space-5);
    }
}

.site-footer__col h3 {
    color: #fff;
    font-size: var(--bc-fs-md);
    font-weight: 700;
    margin-bottom: var(--bc-space-4);
    letter-spacing: 0;
}

/* =============================================================================
   2. Brand column (logo + tagline + address)
   ============================================================================= */
.site-footer__brand-logo {
    margin-bottom: var(--bc-space-4);
}
.site-footer__brand-logo img,
.site-footer__brand-logo svg {
    height: 56px;
    width: auto;
}
.site-footer__tagline {
    color: rgba(255, 255, 255, 0.75);
    line-height: var(--bc-lh-relaxed);
    margin-bottom: var(--bc-space-4);
    max-width: 320px;
}
.site-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--bc-space-2);
    margin-bottom: var(--bc-space-2);
    color: rgba(255, 255, 255, 0.75);
}
.site-footer__contact i {
    color: var(--bc-primary);
    flex-shrink: 0;
    margin-top: 0.15em;
}

/* =============================================================================
   3. Link lists
   ============================================================================= */
.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer__links li {
    margin-bottom: var(--bc-space-2);
}
.site-footer__links a {
    display: inline-block;
    line-height: 1.5;
    transition: color var(--bc-transition-fast),
                transform var(--bc-transition-fast);
}
.site-footer__links a:hover {
    color: var(--bc-primary);
    transform: translateX(2px);
}

/* =============================================================================
   4. Newsletter form
   ============================================================================= */
.site-footer__newsletter p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--bc-space-3);
    line-height: var(--bc-lh-relaxed);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--bc-space-2);
}
.newsletter-form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--bc-radius-md);
    color: #fff;
    font-size: var(--bc-fs-sm);
    transition: background var(--bc-transition-fast),
                border-color var(--bc-transition-fast);
}
.newsletter-form__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.newsletter-form__input:focus {
    outline: 0;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--bc-primary);
}
.newsletter-form__btn {
    padding: 0.75rem 1rem;
    background: var(--bc-primary);
    color: #fff;
    border: 0;
    border-radius: var(--bc-radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: background var(--bc-transition-base);
}
.newsletter-form__btn:hover {
    background: var(--bc-primary-dk);
    color: #fff;
}
.newsletter-form__hint {
    font-size: var(--bc-fs-xs);
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--bc-space-1);
}

/* =============================================================================
   5. Social icons
   ============================================================================= */
.site-footer__social {
    display: flex;
    gap: var(--bc-space-2);
    margin-top: var(--bc-space-4);
}
.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    transition: background var(--bc-transition-base),
                color var(--bc-transition-base),
                transform var(--bc-transition-fast);
}
.site-footer__social a:hover {
    background: var(--bc-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* =============================================================================
   6. Legal / bottom bar
   ============================================================================= */
.site-footer__legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--bc-space-4) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--bc-space-3);
    flex-wrap: wrap;
    font-size: var(--bc-fs-xs);
    color: rgba(255, 255, 255, 0.55);
}
.site-footer__legal a {
    color: rgba(255, 255, 255, 0.65);
}
.site-footer__legal a:hover { color: var(--bc-primary); }

.site-footer__legal-links {
    display: flex;
    gap: var(--bc-space-4);
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.site-footer__credit {
    font-size: var(--bc-fs-xs);
    color: rgba(255, 255, 255, 0.4);
}
.site-footer__credit a {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

@media (max-width: 639px) {
    .site-footer__legal {
        flex-direction: column;
        text-align: center;
        gap: var(--bc-space-3);
    }
}
