/* Footer Styles  */
footer {
    background-color: var(--secondary-color);
    color: var(--text-color-light);
    padding: 60px 20px 30px;
    text-align: center;
    font-size: 0.95rem;
    font-family: var(--font-primary); 
}

footer p { 
    margin-bottom: 12px; 
    opacity: 0.9; 
    color: var(--text-color-light);
}

footer a {
    color: var(--text-color-light);
    text-decoration: none;
    transition: var(--transition-standard);
    font-weight: 500;
    background: transparent;
}

footer a:hover,
footer a:focus-visible {
    color: var(--text-color-light);
    text-decoration: underline;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    /* Ensure no blur, fuzz, or glow effects */
    text-shadow: none;
    box-shadow: none;
    filter: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.footer-links { 
    margin: 20px 0; 
}

.footer-links a { 
    margin: 0 15px; 
    display: inline-block;
    transition: var(--transition-standard);
}

/* Basic styling for contact information */
footer p:has(a) {
    margin-bottom: 12px;
}

/* Specific styling for phone and payments links - match Privacy Policy/Terms of Service */
footer a[href*="tel"],
footer a[href*="payments"] {
    margin: 0 15px;
    display: inline-block;
    transition: var(--transition-standard);
    /* Ensure no blur, fuzz, or glow effects */
    text-shadow: none;
    box-shadow: none;
    filter: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transform: none;
    animation: none;
}

footer a[href*="tel"]:hover,
footer a[href*="payments"]:hover {
    /* Match Privacy Policy/Terms of Service hover effects */
    color: var(--text-color-light);
    text-decoration: underline;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    /* Ensure no blur, fuzz, or glow effects */
    text-shadow: none;
    box-shadow: none;
    filter: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transform: none;
    animation: none;
}
        
/* ========================================
   HARTAPPS DESIGNED BY SECTION
   Simple styling without animations or complex layouts
   ======================================== */

.footer-hartapps-designed {
    margin-top: 30px;
    font-size: 0.85rem;
    color: var(--text-color-light);
    text-align: center;
}
 
.footer-hartapps-designed a:first-child {
    margin-right: 18px; /* Add margin to increase left gap */
}