/* ============================================
   FOOTER - PREMIUM BLACK & BLUE
   ============================================ */

/* ---------- FOOTER WRAPPER ---------- */
.custom-footer-wrapper {
    background: #000000;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

/* Background pattern - faded */
.custom-footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 174, 239, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 174, 239, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(0, 174, 239, 0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* ---------- MAIN FOOTER ---------- */
.custom-footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.custom-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}

/* ---------- FOOTER COLUMNS ---------- */
.custom-footer-col {
    display: flex;
    flex-direction: column;
}

/* ---------- LOGO ---------- */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #00aeef;
    border-radius: 10px;
    color: #000000;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: footerPulse 3s ease-in-out infinite;
}

@keyframes footerPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(0, 174, 239, 0.15); }
}

.footer-logo-text:hover .footer-logo-icon {
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 174, 239, 0.3);
}

.footer-logo-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-main {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-logo-sub {
    font-size: 9px;
    font-weight: 400;
    color: #00aeef;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ---------- FOOTER DESCRIPTION ---------- */
.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 400px;
}

/* ---------- FOOTER HEADING ---------- */
.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin: 0 0 18px 0;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #00aeef;
    transition: width 0.3s ease;
}

.custom-footer-col:hover .footer-heading::after {
    width: 50px;
}

/* ---------- FOOTER MENU (Quick Links) ---------- */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-left: 0;
}

/* Icons for quick links */
.footer-menu li a::before {
    content: '›';
    transition: all 0.3s ease;
    color: #00aeef;
    font-size: 20px;
    font-weight: bold;
	top: -2px;
    position: relative;
}

.footer-menu li a:hover {
    color: #00aeef;
    padding-left: 20px;
}

.footer-menu li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- CONTACT LIST ---------- */
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.footer-contact-list li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(0, 174, 239, 0.12);
    border-radius: 50%;
    color: #00aeef;
    font-size: 13px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-list li:hover .footer-contact-icon {
    background: #00aeef;
    color: #000000;
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 25px rgba(0, 174, 239, 0.3);
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
    color: #00aeef;
}

/* ---------- SOCIAL ICONS ---------- */
.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-icon:hover {
    background: #00aeef;
    color: #000000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.3);
    border-color: #00aeef;
}

/* ---------- NEWSLETTER ---------- */
.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.footer-newsletter-form input {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

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

.footer-newsletter-form input:focus {
    border-color: #00aeef;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 174, 239, 0.05);
}

.footer-subscribe-btn {
    padding: 12px 20px;
    background: #00aeef;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.footer-subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.footer-subscribe-btn:hover::before {
    left: 100%;
}

.footer-subscribe-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 174, 239, 0.3);
}

/* ---------- FOOTER BOTTOM ---------- */
.custom-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

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

.footer-bottom-left p,
.footer-bottom-right p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit-link {
    color: #00aeef;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
}

.footer-credit-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00aeef;
    transition: width 0.3s ease;
}

.footer-credit-link:hover {
    color: #ffffff;
}

.footer-credit-link:hover::after {
    width: 100%;
}

/* ============================================
   FOOTER RESPONSIVE
   ============================================ */

/* 1024px and below */
@media (max-width: 1023px) {
    .custom-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    
    .custom-footer-main {
        padding: 50px 0 30px;
    }
}

/* 768px and below */
@media (max-width: 767px) {
    .custom-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .custom-footer-main {
        padding: 40px 0 25px;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-left p,
    .footer-bottom-right p {
        font-size: 12px;
    }
}

/* 525px and below */
@media (max-width: 525px) {
    .custom-footer-main {
        padding: 30px 0 20px;
    }
    
    .footer-logo-main {
        font-size: 18px;
    }
    
    .footer-logo-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .footer-heading {
        font-size: 13px;
    }
    
    .footer-menu li a,
    .footer-contact-list li {
        font-size: 13px;
    }
    
    .footer-social-icon {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .footer-newsletter-form input,
    .footer-subscribe-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
}

/* 425px and below */
@media (max-width: 425px) {
    .custom-footer-main {
        padding: 25px 0 15px;
    }
    
    .footer-logo-main {
        font-size: 16px;
    }
    
    .footer-logo-sub {
        font-size: 7px;
        letter-spacing: 2px;
    }
    
    .footer-logo-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .footer-description {
        font-size: 12px;
    }
    
    .footer-social-icons {
        gap: 6px;
    }
    
    .footer-social-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}