/* ============================================================
   CoPet Footer Styles
   ============================================================ */

.app-footer {
    margin-top: 2rem;
}

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 0 0 1rem;
}

.footer-stripe {
    height: 4px;
    background: linear-gradient(90deg, #007D06, #006400, #007D06);
    margin-bottom: 0;
}

.footer-content {
    padding-top: 2rem;
}

/* ── Logo section ── */
.footer-logo-section img {
    width: 130px;
    margin-bottom: 12px;
}

.footer-description {
    font-size: 13px;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ── CTA button ── */
.footer-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #007D06, #006400);
    color: white;
    padding: 9px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-cta-button:hover {
    opacity: 0.85;
    color: white;
    text-decoration: none;
}

/* ── Links column ── */
.footer-links-title {
    font-size: 14px;
    font-weight: 700;
    color: #007D06;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.menu-item {
    margin-bottom: 6px;
}

.menu-link {
    font-size: 13px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.menu-link:hover {
    color: #007D06;
    text-decoration: none;
}

/* ── Contact info ── */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #ccc;
}

.footer-contact-item i {
    color: #007D06;
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
}

/* ── WhatsApp share button — match Show Directions size ── */
a.btn.btn-success {
    padding: 12px 24px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    border-radius: 50px !important;
    line-height: 1.5 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}
a.btn.btn-success svg {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    vertical-align: middle;
}

/* ── Mobile: contact column left-align fix ── */
@media (max-width: 767px) {
    .footer-contact-info {
        align-items: flex-start;
    }
    .footer-contact-item {
        text-align: left;
    }
    .footer-links-title {
        border-bottom: none;
    }
}
