/* Client Shared Footer Styles */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section { text-align: left; }

.footer-section h3 {
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 0.8rem;
    color: #BDC3C7;
    line-height: 1.6;
}

.footer-section a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover { color: var(--accent-green); }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-green);
    color: var(--primary-green) !important;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #34495E;
    color: var(--white);
}

.footer-bottom a { color: var(--accent-green); text-decoration: none; }

/* Tablet Styles */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.95rem;
    }
    
    /* Quick Links - Row with wrap */
    .quick-links-section {
        display: block;
    }
    
    .quick-links-section p {
        display: inline-block;
        margin: 0.4rem 0.5rem;
        margin-bottom: 0.4rem;
        vertical-align: top;
    }
    
    /* Address - Single line with commas on mobile */
    .address-section .address-line {
        display: inline;
        margin: 0;
    }
    
    .address-section .address-line:not(:last-child)::after {
        content: ', ';
    }
    
    .address-section .address-line:first-child::after {
        content: ' - ';
    }
    
    .address-section .address-line:last-child::after {
        content: '.';
    }
    
    /* Contact Details - Row with wrap */
    .contact-section .contact-items {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .contact-section .contact-items p {
        display: inline-block;
        margin: 0;
        white-space: nowrap;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        font-size: 0.9rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-container {
        padding: 0 0.75rem;
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    /* Quick Links - Smaller spacing on small mobile */
    .quick-links-section p {
        margin: 0.3rem 0.4rem;
        font-size: 0.85rem;
    }
    
    /* Address - Smaller font on small mobile */
    .address-section .address-line {
        font-size: 0.85rem;
    }
    
    /* Contact Details - Smaller gap on small mobile */
    .contact-section .contact-items {
        gap: 0.75rem;
    }
    
    .contact-section .contact-items p {
        font-size: 0.85rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
    }
}

/* Footer contact blocks */
.contact-address { margin-bottom: 1.5rem; }
.contact-address p { margin-bottom: 0.3rem; line-height: 1.4; }
.contact-address p strong { color: var(--white); font-weight: 600; }
.contact-details { margin-top: 1rem; }

