:root {
    --primary-green: #00B894;
    --dark-bg: #0A0A0A;
    --darker-bg: #050505;
    --card-bg: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #707070;
    --border-color: #2A2A2A;
    --hover-green: #00A085;
    --gradient-bg: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

/* Footer */
.footer {
    background-color: #1A202C;
    color: white;
    padding: 3rem 0 1rem;
    overflow-x: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2D3748;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.newsletter {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1 1 auto;
    padding: 0.75rem;
    border: 1px solid #4A5568;
    border-radius: 6px;
    background-color: #2D3748;
    color: white;
    min-width: 0;
}

.newsletter-btn {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}


/* Trustpilot */
.trustpilot {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.trustpilot-logo i {
    color: #FFD700;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
    word-break: break-word;
}

.footer-column ul li a {
    color: #A0AEC0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #A0AEC0;
    flex-wrap: wrap;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--primary-green);
    text-decoration: none;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #A0AEC0;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-green);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #A0AEC0;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .footer-column {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

  
}

@media (max-width: 480px) {
    .footer-column ul li {
        font-size: 0.95rem;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .floating-icon {
        min-width: 80px;
        padding: 0.75rem;
    }

    .floating-icon i {
        font-size: 1.25rem;
    }

    .floating-icon span {
        font-size: 0.75rem;
    }
}

/* Modal styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.modal-box h2 {
    margin: 0 0 10px;
    color: #28a745;
}

.modal-close {
    margin-top: 15px;
    padding: 8px 16px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
