/**
 * Footer Styles
 *
 * @package foukagroup.com
 */

/* ========================================
   Footer Main Container
   ======================================== */
.site-footer {
    background-color: var(--footer-bg, #1a2b3c);
    color: var(--footer-text, #ffffff);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Footer Main Section
   ======================================== */
.footer-main {
    padding: 50px 0 40px;
}

.footer-main .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* ========================================
   Footer Columns
   ======================================== */
.footer-column-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--footer-text, #ffffff);
    position: relative;
    padding-bottom: 12px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: currentColor;
    opacity: 0.5;
}

[dir="ltr"] .footer-column-title::after {
    right: auto;
    left: 0;
}

/* ========================================
   Footer Brand / Logo Section
   ======================================== */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
}

.clinic-hours {
    margin-top: 10px;
}

.clinic-hours-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: var(--footer-text, #ffffff);
}

.clinic-hours-days,
.clinic-hours-time {
    font-size: 14px;
    margin: 0 0 5px 0;
    opacity: 0.85;
}

/* ========================================
   Footer Navigation / Links
   ======================================== */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin: 0 0 12px 0;
}

.footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-menu li a {
    color: var(--footer-text, #ffffff);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    opacity: 1;
    padding-right: 8px;
}

[dir="ltr"] .footer-menu li a:hover {
    padding-right: 0;
    padding-left: 8px;
}

/* ========================================
   Footer Contact
   ======================================== */
.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-label {
    display: block;
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.contact-value {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--footer-text, #ffffff);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.contact-value:hover {
    opacity: 0.8;
}

.contact-value .icon {
    flex-shrink: 0;
    opacity: 0.8;
}

/* ========================================
   Footer Address
   ======================================== */
.address-text {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
    margin: 0 0 15px 0;
}

.address-text .icon {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.8;
}

.email-text {
    margin: 0 0 20px 0;
}

.email-label {
    display: block;
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.email-text a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--footer-text, #ffffff);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.email-text a:hover {
    opacity: 0.8;
}

.email-text .icon {
    flex-shrink: 0;
    opacity: 0.8;
}

/* ========================================
   Social Links
   ======================================== */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--footer-text, #ffffff);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Social link specific colors on hover */
.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.twitter:hover {
    background: #000000;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.youtube:hover {
    background: #ff0000;
}

.social-link.linkedin:hover {
    background: #0a66c2;
}

.social-link.tiktok:hover {
    background: #000000;
}

.social-link.whatsapp:hover {
    background: #25d366;
}

/* ========================================
   Footer Bottom / Copyright
   ======================================== */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .footer-container {
    text-align: center;
}

.copyright {
    font-size: 14px;
    margin: 0;
    opacity: 0.7;
}

.copyright a {
    color: var(--footer-text, #ffffff);
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media screen and (max-width: 992px) {
    .footer-main .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 600px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-main .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column-title::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    [dir="ltr"] .footer-column-title::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .address-text {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-menu li a:hover {
        padding-right: 0;
        padding-left: 0;
    }
}
