/* =========================================
   FOOTER CSS
========================================= */

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3.5rem 0 2rem 0;
    font-family: "Sen", sans-serif;  /* Body text font */
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
    margin-bottom: 2.5rem;
}

.footer-col h3 {
    font-family: "Work Sans", sans-serif;  /* Sub heading font */
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 42px;
    height: 3px;
    background: var(--yellow);
    border-radius: 6px;
}

.footer-col p {
    line-height: 1.55;
    font-size: 0.92rem;
    color: #dddddd;
    margin-bottom: 1rem;
    font-family: "Sen", sans-serif;  /* Body text font */
}

.about-text {
    margin-top: 0.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    text-decoration: none;
    color: #dddddd;
    font-size: 0.92rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Sen", sans-serif;  /* Body text font */
}

.footer-col ul li a i {
    font-size: 0.7rem;
    color: var(--yellow);
    transition: transform 0.2s;
}

.footer-col ul li a:hover {
    color: var(--yellow);
    transform: translateX(5px);
}

.footer-col ul li a:hover i {
    transform: translateX(2px);
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.9rem;
    font-size: 0.92rem;
    color: #dddddd;
    line-height: 1.4;
    font-family: "Sen", sans-serif;  /* Body text font */
}

.address-item i {
    margin-top: 3px;
    color: var(--yellow);
    width: 20px;
    font-size: 1rem;
}

.address-details {
    flex: 1;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.25s;
    text-decoration: none;
    border: 1px solid rgba(247, 193, 0, 0.3);
}

.social-links a:hover {
    background: var(--yellow);
    color: var(--primary-color);
    transform: translateY(-4px);
    border-color: var(--yellow);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.8rem;
    margin-top: 0.8rem;
    text-align: center;
    font-size: 0.85rem;
    color: #dddddd;
    font-family: "Sen", sans-serif;  /* Body text font */
}

.copyright p {
  font-size: 15px;
    line-height: 1.5;
}

.copyright a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.copyright a:hover {
    color: #ffd9aa;
    text-decoration: underline;
}

/* Optional: Add stylish text class if needed */
.footer .stylish-text {
    font-family: "Dancing Script", cursive;
}

/* =========================================
   FOOTER RESPONSIVE
========================================= */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 650px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-col h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col h3 {
        display: inline-block;
        text-align: center;
    }
    
    .address-item {
        justify-content: center;
        text-align: left;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-col ul li a {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .address-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-col {
        text-align: left;
    }
    
    .footer-col h3 {
        text-align: left;
        display: block;
    }
    
    .footer-col h3:after {
        left: 0;
        transform: none;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .footer-col ul li a {
        justify-content: flex-start;
    }
}