/* Branded Footer Styles */
.main-footer {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
	
	display: flex;
}

.footer-details,
.footer-form {
/*     height: 100%; */
/*     position: absolute; */

    display: flex;
}

.footer-details {
    /* background: #000; Removed, now controlled by widget settings */
    width: 40%;    
    left: 0;
    padding: 160px 40px 80px 80px;
    
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(-100%);
}

.footer-form {
    right: 0;
    width: 60%;
    /* background: rgb(0 0 0 / 80%); Removed, now controlled by widget settings */
    
    justify-content: center;
    align-content: space-around;
    flex-wrap: wrap;
    padding: 80px 80px 80px 40px;
    transform: translateX(100%);
}

.main-footer h2 {
    /* color: #fff; Removed, now controlled by widget settings */
    font-weight: 100;
    font-size: 38px;
    text-transform: uppercase;
    line-height: 50px;
    font-family: 'AktivGrotesk', sans-serif;
}

.footer-details h2 b {
    font-weight: 500;
}

.footer-links a {
    font-size: 16px;
    /* color: #fff9; Removed, now controlled by widget settings */
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 3px;
    text-decoration: none;
    margin: 5px 0;
    display: inline-block;
    font-family: 'Nunito Sans', sans-serif;
}

.footer-links svg:hover {
    transition-duration: 0.5s;
}

.footer-links a:hover svg {
    margin-left: 5px;
    transition-duration: 0.5s;
}

.footer-links a svg {
    position: relative;
    top: -2px;
    margin-left: 5px;
}

.footer-social-media {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #000;
    border: 2px solid #fff;
    transition: border 0.3s ease;
    text-decoration: none;
}

.footer-social-media a i {
    color: #fff;
}

.footer-social-media a:hover {
    border: 4px solid #fff;
}

.main-footer-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.main-footer-bg-zoom-in {
    transform: scale(1.3);
}

.main-footer-bg-zoom-out {
    transform: scale(1);
    transition: transform 4s ease-in-out;
}

.footer-connect {
    font-size: 2.5rem;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%) scale(1);
    color: rgb(255 255 255 / .5);
    opacity: 0;
    transition: transform 2s ease-in-out, opacity 2s ease-in-out, color 2s ease-in-out;
    font-weight: 300 !important;
    color: #9E9E9E;
}

.footer-connect b {
    font-weight: 500 !important;
}

.footer-connect.active {
    color: rgb(255 255 255);
    opacity: 1;
    transform: translateX(-50%) translateY(-50vh) scale(1.4);
}

.footer-connect.fade-out {
    transform: translateX(-50%) translateY(-50vh) scale(.8);
    opacity: 0;
    transition: transform 1.5s ease-in-out, opacity 1.5s ease-in-out;
}

.main-footer-active .footer-form {
    animation: 1s ease 0s 1 normal forwards slideInRight;
}

.main-footer-active .footer-details {
    animation: 1s ease 0s 1 normal forwards slideInLeft;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.footer-form-embed {
    width: 100%;
}

.footer-form-embed iframe {
    width: 100%;
    border: none;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .footer-details {
        display: none;
    }

    .footer-form {
        width: 100%;
        padding: 40px 30px;
    }

    .main-footer h2 {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-connect {
        font-size: 1.5rem;
    }

    .display-flex {
        display: flex !important;
    }
}

@media (min-width: 768px) {
    .mobile{
        display: none !important;
    }
}
