/* ============================================
   SITE FOOTER  —  Oronno Plants
   ============================================ */

.site-footer {
    background: #111827;
    color: #d1d5db;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* ---- TOP SECTION ---- */
.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 28px 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1.3fr;
    gap: 48px;
}

/* ---- BRAND COLUMN ---- */
.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}
.footer-logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}
.footer-logo-text {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
}
.footer-logo-text span { color: #4ade80; }
.footer-tagline {
    font-size: 13.5px;
    line-height: 1.7;
    color: #9ca3af;
    margin: 12px 0 20px;
}

/* ---- SOCIAL BUTTONS ---- */
.footer-social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.18s, opacity 0.18s;
    color: #fff;
}
.footer-social-btn:hover { transform: translateY(-3px); opacity: 0.85; }
.footer-social-btn.fb    { background: #1877f2; }
.footer-social-btn.wa    { background: #25d366; }
.footer-social-btn.mail  { background: #ea4335; }
.footer-social-btn.phone { background: #6b7280; }

/* ---- COLUMN HEADINGS ---- */
.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1f2937;
    position: relative;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 32px;
    height: 2px;
    background: #22c55e;
    border-radius: 2px;
}

/* ---- QUICK LINKS ---- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.18s, gap 0.18s;
}
.footer-links a i { font-size: 9px; color: #4b5563; transition: color 0.18s; }
.footer-links a:hover { color: #4ade80; }
.footer-links a:hover i { color: #4ade80; }

/* ---- CONTACT LIST ---- */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #9ca3af;
}
.fc-icon {
    width: 30px;
    height: 30px;
    background: #1f2937;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}
.footer-contact-list a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.18s;
    word-break: break-all;
}
.footer-contact-list a:hover { color: #4ade80; }

/* ---- NEWSLETTER ---- */
.footer-newsletter-text {
    font-size: 13.5px;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0 0 14px;
}
.footer-newsletter-form {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #1f2937;
    background: #1f2937;
    margin-bottom: 20px;
}
.footer-newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: none;
    outline: none;
    background: transparent;
    color: #e5e7eb;
    font-size: 13.5px;
    font-family: inherit;
}
.footer-newsletter-form input::placeholder { color: #4b5563; }
.footer-newsletter-form button {
    padding: 10px 16px;
    background: #16a34a;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.18s;
    flex-shrink: 0;
}
.footer-newsletter-form button:hover { background: #15803d; }

/* ---- BUSINESS HOURS ---- */
.footer-hours {
    background: #1f2937;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.8;
}
.footer-hours-title {
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.footer-hours-title i { color: #4ade80; }

/* ---- BOTTOM BAR ---- */
.footer-bottom {
    border-top: 1px solid #1f2937;
    padding: 18px 28px;
}
.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}
.footer-bottom-links a { color: #6b7280; text-decoration: none; transition: color 0.18s; }
.footer-bottom-links a:hover { color: #4ade80; }
.footer-bottom-links span { color: #374151; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
    .footer-top { padding: 40px 18px 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { padding: 14px 18px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}