:root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            --warning-gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
            --info-gradient: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            
            --white-bg: #ffffff;
            --light-bg: #fafbfc;
            --card-bg: #ffffff;
            --border-light: rgba(0, 0, 0, 0.08);
            --border-medium: rgba(0, 0, 0, 0.12);
            --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.12);
            
            --text-primary: #1a1a1a;
            --text-secondary: #6b7280;
            --text-muted: #9ca3af;
            --text-light: #d1d5db;
        }



        /* Footer Container */
        .new_footer_area {
            position: relative;
            background: var(--white-bg);
            overflow: hidden;
        }

        .new_footer_area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(79, 172, 254, 0.02) 0%, transparent 50%);
            animation: bgFloat 30s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes bgFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-20px, -20px) rotate(180deg); }
        }

        /* New Footer Top */
        .new_footer_top {
            position: relative;
            z-index: 3;
            padding: 80px 0 60px;
        }

        /* Partner Area - CTA Section */
        .partner-area-wraper {
            margin-bottom: 80px;
        }

        .partner-area {
            background: var(--primary-gradient);
            border-radius: 32px;
            padding: 60px 50px;
            box-shadow: var(--shadow-heavy);
            position: relative;
            overflow: hidden;
        }

        .partner-area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            opacity: 0.4;
        }

        .xs-content-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 25px;
            line-height: 1.2;
            position: relative;
            z-index: 2;
        }

        .cta-phone-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 2;
            margin-top: 20px;
        }

        .cta-phone-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            color: white;
            border-color: rgba(255, 255, 255, 0.4);
        }

        .whatsapp-container {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .whatsapp-modern {
            background: var(--success-gradient);
            padding: 35px 45px;
            border-radius: 25px;
            text-align: center;
            color: white;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 15px 40px rgba(17, 153, 142, 0.3);
            position: relative;
            overflow: hidden;
        }

        .whatsapp-modern::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;
        }

        .whatsapp-modern:hover::before {
            left: 100%;
        }

        .whatsapp-modern:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 25px 60px rgba(17, 153, 142, 0.4);
            color: white;
            text-decoration: none;
        }

        .whatsapp-icon {
            font-size: 3.5rem;
            margin-bottom: 15px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .whatsapp-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .whatsapp-subtitle {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Footer Top Area */
        .footer-top-area {
            margin-bottom: 60px;
            padding: 50px 40px;
            background: var(--card-bg);
            border-radius: 24px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-medium);
        }

        .footer-top-area > div {
            display: flex;
             justify-content: center;
              align-items: center  ;
        }
        .footer-top-area > div > :nth-child(2) {
            width: fit-content;
        }

        .footer-logo {
            text-align: center;
        }

        .modern-logo {
            width: 160px;
            height: 70px;
            background: var(--primary-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1.4rem;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-medium);
        }

        .modern-logo:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: var(--shadow-heavy);
        }

        /* Social Links */
        .social-list {
            display: flex;
            gap: 20px;
            list-style: none;
            padding: 0;
            margin: 0;
            justify-content: center;
        }

        .social-list li a {
            width: 60px;
            height: 60px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--card-bg);
            border: 2px solid var(--border-light);
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1.3rem;
            box-shadow: var(--shadow-light);
        }

        .social-list li a:hover {
            transform: translateY(-8px) scale(1.1);
            color: white;
            border-color: transparent;
            box-shadow: var(--shadow-heavy);
        }

        .social-list li a.facebook:hover {
            background: linear-gradient(135deg, #4267B2, #365899);
        }

        .social-list li a.twitter:hover {
            background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
        }

        .social-list li a.linkedin:hover {
            background: linear-gradient(135deg, #0077B5, #005885);
        }

        .social-list li a.instagram:hover {
            background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        /* Address Info */
        .address-info-list {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            justify-content: center;
        }

        .address-info-list li {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--card-bg);
            border: 2px solid var(--border-light);
            border-radius: 20px;
            padding: 25px 30px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-light);
            min-width: 280px;
        }

        .address-info-list li:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .address-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: var(--shadow-medium);
        }

        .address-icon i {
            color: white;
            font-size: 1.3rem;
        }

        .address-info a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .address-info a:hover {
            color: var(--text-primary);
        }

        /* Footer Columns */
        .footer-columns {
            margin-bottom: 200px;
            position: relative;
            z-index: 2;
        }

        .f_widget {
            background: var(--card-bg);
            border: 2px solid var(--border-light);
            border-radius: 24px;
            padding: 40px 35px;
            height: 100%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-light);
        }

        .f_widget:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-heavy);
            border-color: rgba(102, 126, 234, 0.2);
        }

        .f-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 35px;
            position: relative;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .f-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .f_list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .f_list li {
            margin-bottom: 16px;
        }

        .f_list li a {
            color: var(--text-secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            transition: all 0.3s ease;
            border-radius: 12px;
            position: relative;
            font-weight: 500;
        }

        .f_list li a::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--primary-gradient);
            border-radius: 50%;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .f_list li a:hover {
            color: var(--text-primary);
            background: rgba(102, 126, 234, 0.05);
            transform: translateX(8px);
        }

        .f_list li a:hover::before {
            transform: scale(1.5);
            box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
        }

        /* Contact Form */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .form-control {
            background: var(--light-bg);
            border: 2px solid var(--border-light);
            border-radius: 16px;
            color: var(--text-primary);
            padding: 18px 24px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .form-control:focus {
            background: var(--white-bg);
            border-color: rgba(102, 126, 234, 0.4);
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.1);
            color: var(--text-primary);
            outline: none;
            transform: translateY(-2px);
        }

        .form-control::placeholder {
            color: var(--text-muted);
            font-weight: 400;
        }

        .submit-btn {
            background: var(--secondary-gradient);
            border: none;
            border-radius: 16px;
            padding: 18px 36px;
            font-weight: 700;
            font-size: 1.1rem;
            color: white;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(240, 147, 251, 0.4);
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        /* Footer Background - PRESERVED */
        .footer_bg {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1;
            height: 200px;
            overflow: hidden;
        }

        .footer_bg_one,
        .footer_bg_two {
            position: absolute;
            bottom: 0;
            background-size: cover;
            background-position: center bottom;
            background-repeat: no-repeat;
            width: 50%;
            height: 100%;
        }

        .footer_bg_one {
            left: 0;
        }

        .footer_bg_two {
            right: 0;
        }

        /* Bottom Border */
        .footer-bottom-border {
            height: 6px;
            background: var(--primary-gradient);
            margin-top: 40px;
            border-radius: 3px;
        }

        /* Responsive Design */
        @media (max-width: 850px) {
            .xs-content-title {
                font-size: 2rem;
                line-height: 1.3;
            }

            .partner-area {
                padding: 40px 30px;
                text-align: center;
            }

            .address-info-list {
                flex-direction: column;
                gap: 20px;
            }

            .address-info-list li {
                width: 100px;
                padding: 5px;
                font-size: 12px;
            }

            .social-list {
                justify-content: center;
                line-height: 40px;
                gap: 5px;
            }

            .f_widget {
                margin-bottom: 30px;
                padding: 30px 25px;
            }

            .whatsapp-modern {
                padding: 25px 35px;
            }

            .whatsapp-icon {
                font-size: 2.5rem;
            }
        }

        

        /* Interactive Enhancements */
        .interactive-element {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .interactive-element:hover {
            transform: translateY(-3px);
        }

        /* Floating Animation */
        .floating {
            animation: floating 6s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        /* Gradient Text */
        .gradient-text {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
