        .footer {
            background: linear-gradient(rgba(95, 97, 104, 0.92), rgba(4, 14, 39, 0.92)), 
                        url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?ixlib=rb-4.0.3') center/cover no-repeat;
            padding: 100px 0 0;
            color: #a0abb8;
            font-size: 15px;
        }
        .footer-widget {
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 32px;
            font-weight: 800;
            color: #fff !important;
            margin-bottom: 25px;
            display: inline-block;
            text-decoration: none;
        }
        .footer-widget h4 {
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 35px;
            position: relative;
            padding-bottom: 15px;
        }
        .footer-widget h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: var(--travele-primary);
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links li a {
            color: #a0abb8;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .footer-links li a:hover {
            color: var(--travele-primary);
            transform: translateX(10px);
        }
        .footer-contact-info {
            list-style: none;
            padding: 0;
        }
        .footer-contact-info li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .footer-contact-info i {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: var(--travele-primary);
            transition: 0.3s;
        }
        .footer-contact-info li:hover i {
            background: var(--travele-primary);
            color: #fff;
        }
        .newsletter-form {
            position: relative;
            margin-top: 25px;
        }
        .newsletter-form input {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 5px;
            color: #fff;
            outline: none;
        }
        .newsletter-form button {
            position: absolute;
            right: 5px;
            top: 5px;
            bottom: 5px;
            padding: 0 20px;
            background: var(--travele-primary);
            border: none;
            color: #fff;
            border-radius: 5px;
            transition: 0.3s;
        }
        .newsletter-form button:hover {
            background: #e03a42;
        }
        .footer-social-links {
            display: flex;
            gap: 10px;
            margin-top: 30px;
        }
        .footer-social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            color: #fff;
            text-decoration: none;
            transition: 0.3s;
        }
        .footer-social-links a:hover {
            background: var(--travele-primary);
            transform: translateY(-5px);
        }
        .copyright-area {
            padding: 25px 0;
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 50px;
            text-align: center;
        }
