:root {
    --primary-green: #009c41;
    --secondary-green: #007832;
    --primary-yellow: #ffd700;
    --secondary-yellow: #f9a602;
    --dark-bg: #031a0c;
    --text-light: #f5f5f5;
    --text-dark: #111;
    --overlay-dark: rgba(3, 26, 12, 0.9);
    --shadow-large: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.footer-section{
    color: var(--text-light);
    max-width: 70%  ;
    margin: 0 auto;
    margin-bottom: 2rem;
}
.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 15px;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.icon-link:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
}

.icon-link i {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.icon-link .icon-img {
    height: 50px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.copyright {
    opacity: 0.7;
}

/* Popups */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(145deg, #03230e, #002008);
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    padding: 40px;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--primary-yellow);
    animation: popupIn 0.4s ease forwards;
}

.popup-header {
    text-align: center;
    margin-bottom: 30px;
}

.popup-header h2 {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    color: var(--primary-yellow);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.popup-close:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: none;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary-yellow);
    background: rgba(255, 215, 0, 0.05);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
}

.success-message {
    background: rgba(0, 156, 65, 0.2);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--primary-green);
    margin-top: 20px;
    display: none;
}

.subheader {
    background-color: var(--overlay-dark);
    padding: 16px 0;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
    color: #f5f5f5;
}

.subheader-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    margin-top: 90px;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #ddd;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #aaa;
}

.breadcrumb .current {
    font-weight: 600;
    color: #fff;
}

@media (max-width: 992px) {
    /* .luck-wheel-animation {
        width: 350px;
        height: 350px;
        right: -100px;
    } */

    
    .luck-wheel-animation {
        position: relative;
        top: 352px;
        right: 0;
        transform: translateY(50px);
        margin: 0 auto;
        width: 500px;
        height: 500px;
    }
}


@media (max-width: 768px) {
 
.footer-section{
    max-width: 100%;
}

}


@media (max-width: 576px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .testimonial-cards,
    .cards {
        grid-template-columns: 1fr;
    }

    .icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
