:root {
    --primary-blue: #007bff;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --whatsapp-green: #25d366;
    --text-gray: #94a3b8;
    --white: #ffffff;
}

.ffooter {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.ffooter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 0 20px 60px 20px;
}

.ffooter-col {
    text-align: center;
}


/* Typography & Headers */
.ffooter-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.ffooter-logo span { color: var(--primary-blue); }

.ffooter-col h3 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 35px;
    letter-spacing: 2px;
    position: relative;
    display: flex;
    justify-content: center;
}

.ffooter-col h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
}

/* Content Styles */
.ffooter-desc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.ffooter-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.ffooter-links li {
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

.ffooter-links li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

/* Hover Animations */
.ffooter-links li:hover {
    transform: translateX(8px);
}

.ffooter-links li a:hover {
    color: var(--primary-blue);
}

/* Badges & Rating */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

.badge {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 4px;
    border-left: 2px solid var(--primary-blue);
}

/* Buttons & CTA */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp-green);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    color: white;
    background: #1eb954;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.callback-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--text-gray);
    color: white;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.callback-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Bottom Bar */
.ffooter-bottom {
    background: var(--darker-bg);
    padding: 25px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-gray);
}

.legal-links a {
    color: var(--text-gray);
    text-decoration: none;
    margin-left: 20px;
}

/* Keyframes */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .ffooter-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .ffooter-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ffooter-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .bottom-container {
        flex-direction: column;
        gap: 15px;
    }
    .trust-badges { justify-content: center; }
}




/*CONTACT FORM FEATURE */


/* Spacing */
.p-3 {
    padding: 1rem; /* same as Bootstrap */
}

.mb-0 {
    margin-bottom: 0;
}

.mb-3 {
    margin-bottom: 1rem;
}

/* Background */
.bg-secondary {
    background-color: #6c757d; /* Bootstrap 5 secondary */
}

/* Text */
.text-white {
    color: #fff;
}

/* Container */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Flex utilities */
.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.justify-content-between {
    justify-content: space-between;
}


.gap-3 {
    gap: 1rem; /* Bootstrap 5 gap-3 */
}

/* Responsive (md breakpoint = 768px) */
@media (min-width: 768px) {

    .flex-md-row {
        flex-direction: row;
    }

    .align-items-md-center {
        align-items: center;
    }

    .mb-md-0 {
        margin-bottom: 0;
    }
}





  .highlight {
    border: 2px solid #ff6b6b; 
    background-color: #fff3f3; 
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
    0% { box-shadow: 0 0 0px rgba(255,107,107,0.7); }
    50% { box-shadow: 0 0 10px rgba(255,107,107,0.7); }
    100% { box-shadow: 0 0 0px rgba(255,107,107,0.7); }
  }
