
/* Footer CSS without Tailwind */
footer.red {
    background: linear-gradient(135deg, #0a5c36 0%, #064e3b 100%);
    color: white;
    padding: 3rem 1rem;
    text-align: left;
    margin: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Footer Grid Layout */
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

/* Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-logo-section {
        align-items: flex-start;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-direction: column;
    text-align: center;
}

@media (min-width: 768px) {
    .logo-container {
        flex-direction: row;
        text-align: left;
    }
}

.footer-logo {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 2px solid #fbbf24;
    margin-right: 1rem;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .footer-logo {
        margin-bottom: 0;
    }
}

.logo-text h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 0.25rem 0;
    color: white;
}

.logo-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.875rem;
}

.copyright-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.copyright-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.copyright-box p {
    margin: 0 0 0.75rem 0;
    font-size: 0.875rem;
    color: white;
}

.copyright-box p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .contact-section {
        align-items: flex-start;
    }
}

.contact-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 1.5rem 0;
    color: white;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-section h3 {
        text-align: left;
    }
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .contact-item {
        justify-content: flex-start;
    }
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .contact-details {
        align-items: flex-start;
    }
}

.contact-details h4 {
    font-weight: bold;
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: white;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
}

@media (min-width: 768px) {
    .phone-numbers {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

.phone-numbers a,
.contact-details a,
.contact-details span {
    color: white;
    text-decoration: underline;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    display: block;
    margin: 0.125rem 0;
}

.phone-numbers a:hover,
.contact-details a:hover {
    color: #fbbf24;
}

.contact-details span {
    text-decoration: none;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-details span {
        text-align: left;
    }
}

/* Quick Links Section */
.quick-links-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .quick-links-section {
        align-items: flex-start;
    }
}

.quick-links-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 1.5rem 0;
    color: white;
    text-align: center;
}

@media (min-width: 768px) {
    .quick-links-section h3 {
        text-align: left;
    }
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-links li {
    margin: 0;
}

.quick-links a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #fbbf24;
}

/* Separator */
.separator {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.separator-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    width: 75%;
}

/* Signature Section */
.signature-section {
    text-align: center;
    margin-top: 2rem;
}

.signature-box {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.signature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    background: #fbbf24;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.signature-text {
    font-weight: bold;
    color: white;
    margin: 0;
    font-size: 0.875rem;
}

.thanks-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    footer.red {
        padding: 2rem 1rem;
        text-align: left;
    }
    
    .footer-logo {
        width: 3rem;
        height: 3rem;
        margin-right: 0.75rem;
        margin-bottom: 0.5rem;
        
    }
    
    .logo-text h3 {
        font-size: 1.25rem;
    }
    
    .logo-text p {
        font-size: 0.75rem;
    }
    
    .copyright-box p {
        font-size: 0.65rem;
    }
    
    .contact-section h3,
    .quick-links-section h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-right: 0.75rem;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
    
    .phone-numbers a,
    .contact-details a,
    .contact-details span,
    .quick-links a {
        font-size: 0.75rem;
        text-align: left;
        align-items: normal;

    }
    
    .signature-box {
        padding: 0.75rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .dot {
        margin-right: 0;
        margin-bottom: 0.25rem;
    }
    
    .signature-text {
        font-size: 0.75rem;
    }
    
    .thanks-text {
        font-size: 0.75rem;
    }
}

