/* Footer Styles */
.site-footer {
    position: relative;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.footer-wave {
    display: block;
    width: 100%;
    height: 120px;
    margin: 0;
    padding: 0;
    line-height: 0;
    overflow: hidden;
    position: relative;
}

.footer-wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.footer-main {
    background-color: var(--primary);
    padding: 0 0 20px;
    position: relative;
    margin: 0;
    width: 100%;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
}

.footer-logo {
    margin-right: 20px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    /* filter: brightness(0) invert(1); */
}

.footer-logo-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0 0 5px;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo-text p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

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

.social-icon:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-about-text {
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--secondary);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item span {
    opacity: 0.8;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
    color: var(--secondary);
}

.newsletter-text {
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 5px 0 0 5px;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #ff8533;
}

.footer-app-download {
    margin-top: 25px;
}

.footer-app-download h5 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.app-buttons {
    display: flex;
    gap: 10px;
}

.app-button {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.app-button i {
    font-size: 1.2rem;
    margin-right: 8px;
}

.app-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-logo-container {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .app-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-wave {
        height: 80px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .footer-wave {
        height: 60px;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-logo-text h3 {
        font-size: 1.2rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .app-buttons {
        flex-direction: column;
        gap: 10px;
    }
}
