/* ═══════════════════════════════════════
   FOOTER — Emerald Premium Design v2
═══════════════════════════════════════ */

.block__footer {
    background: linear-gradient(180deg, #0D2812 0%, #081A0B 100%);
    color: rgba(255,255,255,0.7);
    font-family: inherit;
}

/* ── Main Info Area ── */
.footer__info {
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Section Titles */
.footer__title {
    font-size: 0.95rem !important;
    color: #fff !important;
    margin-bottom: 24px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}
.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #C8A951, transparent);
    border-radius: 2px;
}

/* ── Company Column ── */
.footer__company {
    padding-right: 16px;
}
.footer__logo-wrap {
    margin-bottom: 20px;
}
.footer__logo-wrap img {
    max-height: 80px;
    width: auto;
    filter: brightness(1.1);
}

/* Contact List */
.contact__list {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
}
.contact__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}
.contact__list li i {
    color: #C8A951;
    font-size: 0.82rem;
    margin-top: 3px;
    min-width: 16px;
    text-align: center;
}
.contact__list li a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact__list li a:hover {
    color: #C8A951;
}

/* Social Icons */
.footer__social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.footer__social a:hover {
    background: #1B5E20;
    border-color: #2E7D32;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27,94,32,0.3);
}
.footer__social a img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.footer__social a:hover img {
    opacity: 1;
}

/* ── Links Columns (Products & Services) ── */
.footer__links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer__links ul li {
    margin-bottom: 12px;
}
.footer__links ul li a {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer__links ul li a:hover {
    color: #C8A951;
    transform: translateX(4px);
}
.link__arrow {
    color: #C8A951;
    font-weight: 700;
    font-size: 1rem;
    opacity: 0;
    margin-left: -10px;
    transition: all 0.3s ease;
}
.footer__links ul li a:hover .link__arrow {
    opacity: 1;
    margin-left: 0;
}

/* ── Facebook Column ── */
.footer__facebook {
    overflow: hidden;
}

/* ── Footer End Bar ── */
.footer__end {
    background: rgba(0,0,0,0.25);
}
.footer__end-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px 0;
}
.footer__copyright p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.25);
    margin: 0;
}
.footer__copyright p b {
    color: rgba(255,255,255,0.45);
}

/* Counter */
.footer__count {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.2);
}
.count__wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}
.count__wrap span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.count__wrap span i {
    font-size: 6px;
    color: #2E7D32;
}

/* ── Owner Info (below logo) ── */
.footer__owner-info {
    margin-bottom: 20px;
}
.owner-info__name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #C8A951;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1.4;
}
.footer__owner-info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
    line-height: 1.6;
}
.footer__owner-info p strong {
    color: #C8A951;
    font-weight: 700;
}

/* ── Extra Contact (in connect column) ── */
.footer__extra-contact {
    list-style: none;
    margin: 20px 0 0 0;
    padding: 16px 0 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__extra-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}
.footer__extra-contact li i {
    color: #C8A951;
    font-size: 0.82rem;
    margin-top: 3px;
    min-width: 16px;
    text-align: center;
}
.footer__extra-contact li strong {
    color: #C8A951;
    font-weight: 700;
}
.footer__extra-contact li a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer__extra-contact li a:hover {
    color: #C8A951;
}

/* ── Map ── */
.footer__map {
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer__map iframe {
    width: 100% !important;
    height: 280px;
    border: none;
    filter: grayscale(0.6) brightness(0.75);
    transition: filter 0.5s ease;
}
.footer__map:hover iframe {
    filter: grayscale(0.2) brightness(0.9);
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .footer__info {
        padding: 40px 0 0;
    }
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer__end-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer__social {
        justify-content: center;
    }
    .count__wrap {
        justify-content: center;
    }
    .footer__title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer__links ul li a {
        justify-content: center;
    }
    .contact__list li {
        justify-content: center;
    }
}
