/* ============================================================
   FOOTER STYLES — footer-upper.php + footer.php
   ============================================================ */

/* ══════════════════════════════════════
   FOOTER-UPPER: ABOUT SECTION
══════════════════════════════════════ */
.fu-about-section {
    background: #f8f9fc;
    padding: 60px 0 50px;
    border-top: 1px solid #e8eaf0;
}
.fu-about-header {
    text-align: center;
    margin-bottom: 40px;
}
.fu-about-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff773f;
    margin-bottom: 10px;
}
.fu-about-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1f36;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
.fu-about-header h2 span { color: #ff773f; }
.fu-about-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    border: 1px solid #e8eaf0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fu-about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}
.fu-about-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff773f, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 16px;
}
.fu-about-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1f36;
    margin: 0 0 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.fu-about-card p {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}
.fu-about-img-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    padding-top: 8px;
}
.fu-about-badge { border-radius: 8px; }

/* ══════════════════════════════════════
   FOOTER-UPPER: TESTIMONIALS
══════════════════════════════════════ */
.fu-testimonials {
    background: linear-gradient(135deg, #1a1f36 0%, #0d1221 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.fu-testimonials::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 15% 50%, rgba(255,119,63,0.12) 0%, transparent 55%),
                radial-gradient(ellipse at 85% 30%, rgba(245,158,11,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.fu-section-head {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}
.fu-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 10px;
}
.fu-section-head h2 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    font-family: 'Poppins', sans-serif;
}
.fu-head-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff773f, #f59e0b);
    border-radius: 2px;
    margin: 0 auto;
}
.fu-testimonials .row { display: flex; flex-wrap: wrap; }
.fu-testimonials .row > [class*="col-"] { display: flex; }
.fu-testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    padding: 28px 26px 24px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(4px);
    display: flex; flex-direction: column; width: 100%;
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease,
                background 0.35s ease, border-color 0.35s ease;
}
.fu-testimonial-card:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,119,63,0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,119,63,0.2);
}
.fu-quote-icon {
    font-size: 24px;
    color: #ff773f;
    opacity: 0.7;
    margin-bottom: 14px;
    line-height: 1;
    display: block;
    width: 100%;
    text-align: left !important;
}
.fu-testimonial-card > p {
    font-size: 14px;
    color: rgba(255,255,255,0.80);
    line-height: 1.75;
    margin: 0 0 20px;
    font-style: italic;
    flex: 1;
    text-align: left;
    width: 100%;
}
.fu-testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    text-align: left !important;
}
.fu-testimonial-avatar {
    flex-shrink: 0;
}
.fu-testimonial-avatar img {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,119,63,0.5);
    object-fit: cover;
}
.fu-testimonial-info {
    text-align: left !important;
    flex: 1;
}
.fu-testimonial-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    text-align: left !important;
}
.fu-stars {
    text-align: left !important;
}
.fu-stars i {
    color: #f59e0b;
    font-size: 12px;
    margin-right: 1px;
}

/* ══════════════════════════════════════
   FOOTER-UPPER: TRUST STRIP
══════════════════════════════════════ */
.fu-trust-strip {
    background: #fff;
    border-top: 1px solid #e8eaf0;
    border-bottom: 1px solid #e8eaf0;
    padding: 20px 0;
}
.fu-trust-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
}
.fu-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}
.fu-trust-item > i {
    font-size: 22px;
    color: #ff773f;
    flex-shrink: 0;
}
.fu-trust-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.fu-trust-item strong {
    font-size: 13px;
    font-weight: 700;
    color: #1a1f36;
    display: block;
}
.fu-trust-item span {
    font-size: 11px;
    color: #6b7280;
    display: block;
}
@media (max-width: 768px) {
    .fu-trust-grid { justify-content: flex-start; gap: 20px 30px; }
    .fu-about-section { padding: 40px 0 30px; }
    .fu-testimonials { padding: 40px 0; }
}

/* ══════════════════════════════════════
   FOOTER: MAIN SITE FOOTER
══════════════════════════════════════ */
.site-footer {
    background: linear-gradient(180deg, #0f1520 0%, #0a0e18 100%);
    color: rgba(255,255,255,0.75);
    font-family: 'Poppins', sans-serif;
}

/* Pre-footer strip */
.sf-pre-footer {
    background: #141929;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 28px 0;
}
.sf-pre-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.sf-payment-col { flex: 0 0 auto; }
.sf-newsletter-col {
    flex: 0 0 420px;
    max-width: 420px;
}

.sf-col-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin: 0 0 10px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 7px;
    text-align: left;
    width: 100%;
}
.sf-col-label i {
    color: #ff773f;
    flex-shrink: 0;
    margin-top: 2px;
}
.sf-col-label span {
    text-align: left;
    flex: 1;
}

.sf-payment-img { display: block; opacity: 0.85; }

.sf-newsletter-form {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    width: 100%;
    max-width: 100%;
}
.sf-newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 11px 14px;
    font-size: 13px;
    color: #fff;
}
.sf-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.sf-sub-btn.sub-button {
    background: linear-gradient(135deg, #ff773f, #e85a1a);
    color: #fff;
    border: none;
    padding: 0 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.04em;
    transition: opacity 0.2s;
}
.sf-sub-btn.sub-button:hover { opacity: 0.88; }

.sf-contact-list {
    list-style: none;
    margin: 0; padding: 0;
}
.sf-contact-list li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 6px;
}
.sf-contact-list li i {
    color: #ff773f;
    flex-shrink: 0;
    width: 14px;
    margin-top: 2px;
}
.sf-contact-list li span {
    flex: 1;
    text-align: left;
}
.sf-contact-list li strong { color: #fff; }
.sf-contact-list li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.18s;
}
.sf-contact-list li a:hover { color: #ff773f; }

/* Main body */
.sf-body { padding: 50px 0 36px; }

/* Brand column */
.sf-brand-col { padding-right: 20px; }
.sf-brand-name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
}
.sf-brand-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.50);
    line-height: 1.75;
    margin: 0 0 20px;
}

/* Social icons */
.sf-social {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.sf-social li a {
    width: 36px; height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: rgba(255,255,255,0.04);
}
.sf-social li a:hover { border-color: #ff773f; color: #ff773f; background: rgba(255,119,63,0.1); }
.sf-social-fb:hover { border-color: #1877f2 !important; color: #1877f2 !important; }
.sf-social-ig:hover { border-color: #e1306c !important; color: #e1306c !important; }
.sf-social-tt:hover { border-color: #fff !important; color: #fff !important; }
.sf-social-tw:hover { border-color: #1da1f2 !important; color: #1da1f2 !important; }

/* Link columns */
.sf-links-col { margin-bottom: 20px; }
.sf-links-hd {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sf-links-col ul {
    list-style: none;
    margin: 0; padding: 0;
}
.sf-links-col ul li { margin-bottom: 9px; }
.sf-links-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.18s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sf-links-col ul li a::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #ff773f;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.18s ease;
}
.sf-links-col ul li a:hover { color: #ff773f; }
.sf-links-col ul li a:hover::before { opacity: 1; }

/* Contact full list */
.sf-contact-full {
    list-style: none;
    margin: 0; padding: 0;
}
.sf-contact-full li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13px;
}
.sf-contact-full li > i {
    color: #ff773f;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}
.sf-contact-full li > span {
    flex: 1;
    text-align: left;
    font-size: 13px;
    color: rgba(255,255,255,0.70);
    line-height: 1.5;
}
.sf-contact-full li > span strong {
    color: #fff;
}
.sf-contact-full li > span a {
    color: rgba(255,255,255,0.80);
    text-decoration: none;
    display: contents;
    transition: color 0.18s;
}
.sf-contact-full li > span a:hover { color: #ff773f; }

/* Bottom bar */
.sf-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 16px 0;
    background: rgba(0,0,0,0.25);
}
.sf-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.sf-copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.40);
    margin: 0;
}
.sf-copyright strong { color: rgba(255,255,255,0.65); }
.sf-bottom-links {
    display: flex;
    gap: 20px;
}
.sf-bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.40);
    text-decoration: none;
    transition: color 0.18s;
}
.sf-bottom-links a:hover { color: #ff773f; }

/* Responsive */
@media (max-width: 992px) {
    .sf-pre-grid { gap: 24px; }
    .sf-body { padding: 36px 0 24px; }
}
@media (max-width: 768px) {
    .sf-pre-grid { flex-direction: column; gap: 14px; padding-bottom: 0; }
    .sf-pre-footer { padding: 20px 0; }
    .sf-payment-col,
    .sf-newsletter-col { flex: 0 0 100%; max-width: 100%; width: 100%; }
    .sf-newsletter-form { max-width: 100%; }
    .sf-brand-col { padding-right: 0; }
    .sf-bottom-inner { flex-direction: column; align-items: flex-start; }
}
