.elementor-414 .elementor-element.elementor-element-5afc351{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-49682fa *//* =============================================
   ASTRODEFINED PREMIUM FOOTER - MODERN CSS
   
   HOW TO USE:
   Copy ALL of this CSS and paste it in:
   WordPress → Appearance → Customize → Additional CSS
   ============================================= */

/* ============ BASE FOOTER ============ */
.astro-footer-modern {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    margin-top: -20px;
    padding-top: 20px;
    /* Offset for the negative margin */
    margin-bottom: -10px;
    padding-bottom: 10px;
    /* Ensure background covers the bottom gap */
    background: linear-gradient(180deg,
            #FEF3C7 0%,
            #FDE68A 20%,
            #FCD34D 50%,
            #FBBF24 80%,
            #F59E0B 100%);
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

/* Animated Wave Background */
.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
    z-index: 1;
}

.footer-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    fill: url(#footer-wave-gradient);
}

/* SVG Gradient */
.astro-footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg,
            rgba(251, 191, 36, 0.15) 0%,
            rgba(217, 119, 6, 0.1) 50%,
            transparent 100%);
    z-index: 2;
}

/* Floating Particles */
.footer-particles-modern {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle-modern {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    transition: transform 0.3s ease;
}

.pm1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float1 20s ease-in-out infinite;
}

.pm2 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: 10%;
    animation: float2 25s ease-in-out infinite;
}

.pm3 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 30%;
    animation: float3 18s ease-in-out infinite;
}

.pm4 {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 25%;
    animation: float1 22s ease-in-out infinite reverse;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-40px, 20px);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 25px);
    }
}

/* ============ CONTAINER ============ */
.footer-container-modern {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 40px;
}

/* ============ CONTENT GRID ============ */
.footer-content-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 30px;
}

@media (min-width: 1024px) {
    .footer-content-modern {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

/* ============ COLUMNS ============ */
.footer-col-modern {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-col-modern.footer-animate-in {
    opacity: 1;
    transform: translateY(0);
}

.footer-col-modern:nth-child(1).footer-animate-in {
    transition-delay: 0.1s;
}

.footer-col-modern:nth-child(2).footer-animate-in {
    transition-delay: 0.2s;
}

.footer-col-modern:nth-child(3).footer-animate-in {
    transition-delay: 0.3s;
}

.footer-col-modern:nth-child(4).footer-animate-in {
    transition-delay: 0.4s;
}

/* ============ BRAND SECTION ============ */
.footer-brand-modern {
    max-width: 350px;
}

.footer-logo-modern {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo-modern:hover {
    transform: scale(1.05) rotate(2deg);
}

.footer-logo-img-modern {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.3));
}

.footer-tagline-modern {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 25px;
}

/* ============ SOCIAL MEDIA ============ */
.footer-social-modern {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(217, 119, 6, 0.3);
    border-radius: 12px;
    color: #EA580C;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-btn-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #F59E0B, #EA580C);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-btn-modern:hover::before {
    opacity: 1;
}

.social-btn-modern svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-btn-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.4);
    border-color: #F59E0B;
}

.social-btn-modern:hover svg {
    color: white;
    transform: scale(1.1);
}

/* ============ HEADINGS ============ */
.footer-heading-modern {
    font-size: 1.2rem;
    font-weight: 700;
    color: #78350F;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-heading-modern::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B, #EA580C);
    border-radius: 3px;
}

/* ============ LINKS ============ */
.footer-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link-modern {
    color: rgba(0, 0, 0, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

.footer-link-modern::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #D97706;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-link-modern:hover {
    color: #92400E;
    transform: translateX(5px);
}

.footer-link-modern:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ============ CONTACT ============ */
.footer-contact-list-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(0, 0, 0, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
}

.footer-contact-item-modern:hover {
    color: #92400E;
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(5px);
}

.contact-icon-modern {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
    fill: currentColor;
}

/* ============ TRUST BADGE ============ */
.footer-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(217, 119, 6, 0.4);
    border-radius: 25px;
    color: #92400E;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 15px;
}

.footer-badge-modern svg {
    width: 18px;
    height: 18px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ============ FOOTER BOTTOM ============ */
.footer-bottom-modern {
    margin-top: 60px;
    padding-top: 30px;
}

.footer-divider-modern {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(120, 53, 15, 0.3) 20%,
            rgba(120, 53, 15, 0.3) 80%,
            transparent 100%);
    margin-bottom: 25px;
}

.footer-copyright-modern {
    text-align: center;
    color: rgba(0, 0, 0, 0.65);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.text-gradient-modern {
    background: linear-gradient(135deg, #92400E 0%, #78350F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .footer-container-modern {
        padding: 80px 20px 30px;
    }

    .footer-content-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand-modern {
        max-width: 100%;
        text-align: center;
    }

    .footer-social-modern {
        justify-content: center;
    }

    .footer-heading-modern {
        font-size: 1.1rem;
    }

    .footer-heading-modern::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-list-modern {
        align-items: center;
    }

    .footer-link-modern {
        text-align: center;
    }

    .footer-contact-list-modern {
        align-items: stretch;
    }

    .footer-badge-modern {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-copyright-modern {
        font-size: 0.8rem;
    }
}

/* ============ PERFORMANCE ============ */
.footer-waves,
.particle-modern,
.social-btn-modern,
.footer-link-modern {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: transform;
}

/* ============ ENHANCED MOBILE OPTIMIZATION ============ */
@media (max-width: 768px) {
    .footer-col-modern {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-heading-modern {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .footer-heading-modern::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-list-modern {
        align-items: center;
        width: 100%;
    }

    .footer-kundli-btn {
        justify-content: center;
        width: auto;
        min-width: 200px;
    }

    .footer-contact-list-modern {
        align-items: center;
        width: 100%;
    }

    .footer-contact-item-modern {
        justify-content: center;
        width: 100%;
        max-width: 320px;
        background: rgba(255, 255, 255, 0.5);
    }

    .footer-badge-modern {
        margin: 15px auto 0;
    }
}

@media (max-width: 480px) {
    .footer-container-modern {
        padding: 60px 20px 30px;
    }

    .footer-content-modern {
        gap: 35px;
        /* Reduced gap between sections */
    }

    .footer-heading-modern {
        margin-bottom: 20px;
    }

    .footer-logo-img-modern {
        max-width: 160px;
        /* Slightly smaller logo */
    }

    .footer-tagline-modern {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}/* End custom CSS */