/* ===== FOOTER STYLES ===== */
        .iyeg-footer {
            background-color: var(--iyeg-bg-footer);
            padding: var(--iyeg-space-10) 0 var(--iyeg-space-6);
        }

        .iyeg-footer-main {
            display: grid;
            /*grid-template-columns: 2fr 1fr 1.5fr;*/
            grid-template-columns: 1.8fr 1.2fr;
            gap: var(--iyeg-space-8);
            padding: 0 var(--iyeg-container-padding) var(--iyeg-space-8);
        }
        
        .iyeg-footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Split into two columns */
    gap: 2rem; /* Control gap between COMPANY and CONTACT INFO */
}

        .iyeg-footer-logo {
            display: block; /* Ensures it behaves like a block element */
            margin-bottom: var(--iyeg-space-3);
            text-decoration: none;
        }

        .iyeg-footer-logo img {
            height: 40px; 
        width: auto;    /* Maintains aspect ratio */
        display: block;
        }

        .iyeg-footer-about {
            color: var(--iyeg-text-white-70);
            font-size: var(--iyeg-text-sm);
            line-height: 1.6;
            margin-bottom: var(--iyeg-space-4);
            max-width: 300px;
        }

        /*.iyeg-footer-social {*/
        /*    display: flex;*/
        /*    gap: var(--iyeg-space-3);*/
        /*}*/

        /*.iyeg-footer-social a {*/
        /*    color: var(--iyeg-text-white);*/
        /*    font-size: var(--iyeg-text-lg);*/
        /*    transition: opacity var(--iyeg-transition-fast);*/
        /*}*/

        /*.iyeg-footer-social a:hover {*/
        /*    opacity: 0.8;*/
        /*}*/
        
        .iyeg-footer-social {
            display: flex;
            gap: 12px;
        }
        
        .iyeg-footer-social a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            /*background-color: #1e293b;*/
            background-color: #F6BE1E;
            display: flex;
            align-items: center;
            justify-content: center;
            /*color: var(--iyeg-text-white);*/
            color: #132c6d;
            transition: background-color 300ms ease;
            text-decoration: none;
        }
        
        .iyeg-footer-social a:hover {
            background-color: var(--iyeg-text-white);;
        }

        /*.iyeg-footer-title {*/
        /*    font-family: var(--iyeg-font-primary);*/
        /*    font-weight: 600;*/
        /*    font-size: var(--iyeg-text-base);*/
        /*    color: var(--iyeg-text-white);*/
        /*    margin-bottom: var(--iyeg-space-3);*/
        /*    border-left: 3px solid #F6BE1E;*/
        /*}*/
        
        .iyeg-footer-title {
    font-family: var(--iyeg-font-primary);
    font-weight: 500;
    font-size: var(--iyeg-text-base);
    line-height: 100%;
    text-transform: uppercase;
    color: #ffffff;
    border-left: 3px solid #F6BE1E;
    padding-left: 0.9375rem;
    margin-bottom: 1.875rem;
    white-space: nowrap;
}

        .iyeg-footer-links {
            list-style: none;
             margin: 0;
            padding: 0;
        }

        .iyeg-footer-links li {
            margin-bottom: var(--iyeg-space-2);
        }

        .iyeg-footer-links li a {
            color: var(--iyeg-text-white-70);
            text-decoration: none;
            font-size: var(--iyeg-text-sm);
            transition: var(--iyeg-transition-fast);
            gap: 0.625rem;
            
            
            display: flex;
            align-items: center;
            font-family: "Inter", sans-serif;
        }
        

        .iyeg-footer-links li a:hover {
            color: var(--iyeg-text-white);
            padding-left: 5px; /* Subtle slide effect on hover */
        }
        
        .iyeg-footer-links li a i {
            font-size: 0.7rem;
            color: #F6BE1E;
            transition: transform 0.2s ease;
        }
        
        .iyeg-footer-links li a:hover i {
            transform: translateX(2px); /* Moves caret slightly right on hover */
        }

        .iyeg-footer-contact p {
            color: var(--iyeg-text-white-70);
            font-size: var(--iyeg-text-sm);
            margin-bottom: var(--iyeg-space-2);
            line-height: 1.6;
        }

        .iyeg-footer-divider {
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin: 0 var(--iyeg-container-padding) var(--iyeg-space-4);
        }

        .iyeg-copyright {
            padding: 0 var(--iyeg-container-padding);
            color: var(--iyeg-text-white-50);
            font-size: var(--iyeg-text-xs);
            text-align: center;
        }


/* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .iyeg-footer-main {
                /*grid-template-columns: 1fr 1fr;*/
                grid-template-columns: 1fr;
                gap: var(--iyeg-space-6);
            }
            
            
           .iyeg-footer-links-wrapper {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            
        }
        
        @media (max-width: 768px) {
            .iyeg-footer-main {
                grid-template-columns: 1fr;
                gap: var(--iyeg-space-4);
            }
            
            .iyeg-footer-links-wrapper {
                grid-template-columns: 1fr;
                gap: var(--iyeg-space-4);
            }
            
            .iyeg-footer-about {
                max-width: 100%;
            }
        }
        
        
        
        /* Responsive */
/*@media (max-width: 1024px) {*/
/*    .iyeg-footer-main {*/
/*        grid-template-columns: 1fr;*/
/*        gap: var(--iyeg-space-6);*/
/*    }*/
    
/*    .iyeg-footer-links-wrapper {*/
/*        grid-template-columns: 1fr 1fr;*/
/*        gap: 2rem;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .iyeg-footer-links-wrapper {*/
/*        grid-template-columns: 1fr;*/
/*        gap: var(--iyeg-space-4);*/
/*    }*/
/*}*/
        
        
        
        



/* =====================================================
   PRELOADER
===================================================== */
.iyeg-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.iyeg-preloader--hidden {
    opacity: 0;
    visibility: hidden;
}

.iyeg-preloader__spinner {
    width: 60px;
    height: 60px;
    /*border: 4px solid rgba(255, 255, 255, 0.2);*/
    border: 4px solid rgba(37, 99, 235, 0.1) !important; /* Light blue border */
    /*border-left: 4px solid var(--iyeg-accent); */
    border-left: 4px solid #2563EB !important; 
    border-radius: 50%;
    animation: iyeg-spin 1s linear infinite;
}

@keyframes iyeg-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =====================================================
   FLOATING BUTTONS
===================================================== */
.iyeg-float-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.iyeg-float-btns__btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.iyeg-float-btns__btn:hover {
    transform: scale(1.1);
}

.iyeg-float-btns__btn:active {
    transform: scale(0.92);
    transition: transform 0.1s;
}

.iyeg-float-btns__btn--whatsapp {
    background-color: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.iyeg-float-btns__btn--whatsapp:hover {
    background-color: #20b859;
}

.iyeg-float-btns__btn--scroll-top {
    background-color: var(--iyeg-accent);
    display: none;
    font-size: 1rem;
    font-weight: 400;
}

.iyeg-float-btns__btn--scroll-top:hover {
    background-color: var(--iyeg-accent-hover);
}

/* =====================================================
   FLASH MESSAGES
===================================================== */
.iyeg-flash-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.iyeg-flash-message {
    background: var(--iyeg-primary);
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    min-width: 280px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 0.875rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.iyeg-flash-message.show {
    opacity: 1;
    transform: translateX(0);
}

.iyeg-flash-message--success {
    background: #10b981;
    border-left: 4px solid #059669;
}

.iyeg-flash-message--error {
    background: #ef4444;
    border-left: 4px solid #dc2626;
}

.iyeg-flash-message--info {
    background: var(--iyeg-accent);
    border-left: 4px solid var(--iyeg-accent-hover);
}

.iyeg-flash-message__icon {
    font-size: 1.125rem;
    flex-shrink: 0;
}

.iyeg-flash-message__content {
    flex: 1;
}

.iyeg-flash-message__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.iyeg-flash-message__close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .iyeg-float-btns {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .iyeg-float-btns__btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .iyeg-flash-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .iyeg-flash-message {
        min-width: auto;
        max-width: 100%;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .iyeg-float-btns {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .iyeg-float-btns__btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}