 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --heading: #dbe7f4;
            --blue: #5d97d9;
            --text: #ffffff;
        }

        /* MAIN SECTION WITH FULL BACKGROUND IMAGE */
        .connect-section {
            position: relative;
            min-height: 100vh;
            width: 100%;
            display: flex;
            justify-content: center;
         background-image: url("../images/footer/bg-foote-ff.svg");
            background-size: cover;
            background-position: center;
        }

        .connect-section::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
        }

        .pattern-bg-extra {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                ellipse at 30% 50%,
                rgba(93, 151, 217, 0.05) 0%,
                transparent 70%
            );
            pointer-events: none;
            z-index: 1;
        }

        /* Content Wrapper */
        .content-wrapper {
            position: relative;
            z-index: 10;
            width: 100%;
            padding-bottom: 140px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Typography */
        .city {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--heading);
            letter-spacing: -0.02em;
        }

        .contact-info {
            font-size: 13px;
            line-height: 1.8;
            letter-spacing: 0.5px;
            color: rgba(220, 230, 245, 0.9);
            font-weight: 400;
        }

        .left-contact .contact-info,
        .right-contact .contact-info {
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .top-title {
            font-size: 72px;
            font-weight: 800;
            color: var(--heading);
            letter-spacing: -0.02em;
            line-height: 1;
        }

        .bottom-title {
            font-size: 72px;
            font-weight: 800;
            color: var(--blue);
            letter-spacing: -0.02em;
            line-height: 1;
        }

        /* Social Icons */
        .social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            margin: 0 6px;
            font-size: 20px;
            color: white;
            transition: all 0.2s;
            text-decoration: none;
            backdrop-filter: blur(2px);
        }

        .social a:hover {
            background: var(--blue);
            transform: translateY(-3px);
            color: #fff;
        }

        /* FOOTER BAR */
        .footer-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 86px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 30px;
            backdrop-filter: blur(10px);
            background: #183D65;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            z-index: 100;
        }

        .footer-logo {
            position: absolute;
            left: 30px;
        }

        .footer-logo img {
            height: 65px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .footer-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 30px;
        }

        .footer-center a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .footer-center a:hover {
            color: var(--blue);
        }

        .footer-copy {
            position: absolute;
            right: 30px;
            color: #d8d8d8;
            font-size: 14px;
            font-weight: 400;
        }

        /* ========== FULLY RESPONSIVE ========== */
        
        /* Tablet */
        @media (max-width: 991px) {
            .top-title,
            .bottom-title {
                font-size: 52px;
            }
            .city {
                font-size: 26px;
            }
            .contact-info {
                font-size: 12px;
            }
            
            .footer-center {
                gap: 20px;
            }
            .footer-center a {
                font-size: 14px;
            }
        }

        /* Mobile */
        @media (max-width: 767px) {
            .connect-section {
                min-height: auto;
                padding: 40px 0 0 0;
            }

            .content-wrapper {
                padding-bottom: 0;
                min-height: auto;
            }

            .top-title,
            .bottom-title {
                font-size: 48px;
            }

            .city {
                font-size: 24px;
                margin-top: 20px;
            }

            .left-contact,
            .right-contact {
                text-align: center !important;
                margin: 30px 0 20px;
            }

            .social a {
                width: 38px;
                height: 38px;
                font-size: 18px;
                margin: 0 5px;
            }

            /* ===== FOOTER MOBILE FIX ===== */
            .footer-bar {
                position: relative; /* CHANGED: from absolute to relative */
                bottom: auto;
                height: auto;
                min-height: 86px;
                flex-direction: column;
                padding: 20px 15px;
                gap: 12px;
                margin-top: 30px;
                background:#183D65;
            }

            .footer-logo,
            .footer-center,
            .footer-copy {
                position: static; /* CHANGED: from absolute to static */
                transform: none;
                width: 100%;
                text-align: center;
            }

            .footer-logo {
                order: 1;
            }

            .footer-logo img {
                height: 42px;
            }

            .footer-center {
                order: 2;
                gap: 12px;
                flex-wrap: wrap;
                justify-content: center;
                padding: 0 10px;
            }

            .footer-center a {
                font-size: 13px;
                white-space: nowrap;
            }

            .footer-copy {
                order: 3;
                font-size: 11px;
                text-align: center;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .top-title,
            .bottom-title {
                font-size: 40px;
            }
            
            .city {
                font-size: 22px;
            }

            .footer-center {
                gap: 8px;
            }
            
            .footer-center a {
                font-size: 12px;
            }
            
            .footer-copy {
                font-size: 10px;
            }
        }

        /* Large screens */
        @media (min-width: 1440px) {
            .top-title,
            .bottom-title {
                font-size: 85px;
            }
            .city {
                font-size: 38px;
            }
            .contact-info {
                font-size: 16px;
            }
            .footer-center a {
                font-size: 18px;
            }
        }

        @media (min-width: 1920px) {
            .top-title,
            .bottom-title {
                font-size: 100px;
            }
            .city {
                font-size: 46px;
            }
            .contact-info {
                font-size: 18px;
            }
        }

        /* Timeline preview */
        .timeline-mini {
            text-align: center;
            margin-top: 35px;
            padding: 0 1rem;
        }

        .timeline-header {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #cfd3e3;
            max-width: 400px;
            margin: 0 auto;
            font-weight: 500;
        }

        .timeline-line {
            height: 2px;
            background: #5d97d9;
            width: 100%;
            margin-top: 8px;
            border-radius: 2px;
        }

        .timeline-preview-text {
            font-size: 11px;
            letter-spacing: 0.5px;
            color: #a0b5d9;
            margin-bottom: 8px;
        }

        .right-contact .contact-info br {
            line-height: 1.8;
        }
  