/* Footer Styles */
.footer {
    background: rgb(4, 153, 158);
    color: #f7fdff;
    padding: 4rem 0 4rem 0; /* Increased padding */
    margin-top: 10rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem; /* Increased gap */
    margin-bottom: 1.5rem;
    align-items: start;
}

.footer-section {
    max-width: 100%;
}

.footer-section h3 {
    color: #f7fdff;
    font-size: 1.8rem; /* Increased from 1.5rem */
    margin-bottom: 1.5rem; /* Increased margin */
    font-weight: 600;
}

.footer-section h4 {
    color: #f7fdff;
    font-size: 1.4rem; /* Increased from 1.2rem */
    margin-bottom: 1.2rem; /* Increased margin */
    font-weight: 500;
}

.footer-section p {
    color: rgba(247, 253, 255, 0.8);
    line-height: 1.7; /* Increased line height */
    margin-bottom: 1.5rem; /* Increased margin */
    font-size: 1.1rem; /* Added font size */
}

.footer-logo-img {
    width: 60px; /* Increased from 50px */
    height: 60px; /* Increased from 50px */
    object-fit: contain;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1.2rem; /* Increased from 0.5rem */
}

.footer-links a {
    color: rgba(247, 253, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem; /* Added font size */
}

.footer-links a:hover {
    color: #18cdd6;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Increased from 0.8rem */
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem; /* Increased from 0.8rem */
    color: rgba(247, 253, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem; /* Added font size */
}

.social-link i {
    font-size: 1.4rem; /* Increased from 1.2rem */
    width: 40px; /* Increased from 20px */
    height: 40px; /* Increased from 20px */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-link i:hover {
    background: rgba(24, 205, 214, 0.2);
    /* border-color: #18cdd6; */
    color: #18cdd6;
    transform: scale(1.1);
}

.social-link span {
    pointer-events: none; /* Disable hover effects on text */
    transition: none;
}

.footer-bottom {
    text-align: center;
    padding-top: .1rem; /* Increased from 2rem */
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 253, 255, 0.3), transparent);
    margin-bottom: 2rem; /* Increased from 1rem */
}

.footer-bottom p {
    color: rgba(247, 253, 255, 0.6);
    font-size: 1rem; /* Increased from 0.9rem */
}

.footer-bottom p:last-child {
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-social {
        align-items: flex-start;
        padding-left: 4rem;
    }
}