        .footer-section {
            position: relative;
        }

        .footer-section .contact-strip {
            background: #ffb610;
            padding: 30px 0;
            position: relative;
            z-index: 10;
            width: 80%;
            margin: 0 auto;
            transform: translateY(50%);
            border-radius: 10px;
        }

        .footer-section .contact-strip .strip-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            padding: 0 40px;
        }

        .footer-section .contact-strip .info-icon {
            background: #000;
            color: #ffd740;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            flex-shrink: 0;
        }

    .footer-section .contact-strip .message-text {
        color: #060606;
        font-size: 20px;
        margin: 0;
        flex: 1;
        min-width: 250px;
        font-weight: 600;
    }

        .footer-section .contact-strip .btn-contact {
            background: #fff;
            color: #000;
            border: none;
            padding: 15px 35px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .footer-section .contact-strip .btn-contact:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
        }

        .footer-section .footer1 {
            background: #2d2d2d;
            color: #b0b0b0;
            padding: 140px 0 40px;
            position: relative;
        }

        .footer-section .footer1 .footer-top {
            padding-bottom: 60px !important;
            border-bottom: 1px solid #404040;
            margin-bottom: 60px !important;
        }

        .footer1 .footer-bottom {
            background-color: #2d2d2d;
        }        

        .footer-section .footer1 .footer-column h3 {
            color: #ffffff;
            font-size: 18px;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .footer-section .footer1 .footer-column ul {
            list-style: none;
            padding: 0;
        }

        .footer-section .footer1 .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-section .footer1 .footer-column ul li a {
            color: #b0b0b0;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-section .footer1 .footer-column ul li a:hover {
            color: #ffffff;
        }

        .footer-section .footer1 .questions-form .form-control {
            background: #ffffff;
            border: none;
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            padding: 12px;
        }

        .footer-section .footer1 .questions-form .form-control::placeholder {
            color: #999;
        }

        .footer-section .footer1 .questions-form textarea.form-control {
            height: 80px;
            resize: none;
        }

        .footer-section .footer1 .questions-form .btn {
            background: #555;
            color: #ffffff;
            border: none;
            padding: 12px 40px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background 0.3s;
        }

        .footer-section .footer1 .questions-form .btn:hover {
            background: #666;
        }

        .footer-section .footer1 .footer-logo h2 {
            color: #ffffff;
            font-size: 28px;
            font-weight: 700;
        }

        .footer-section .footer1 .footer-logo .wp {
            color: #d4af37;
            font-size: 14px;
            vertical-align: super;
        }

        .footer-section .footer1 .footer-about h3 {
            color: #ffffff;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .footer-section .footer1 .footer-about p {
            color: #b0b0b0;
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-section .footer1 .footer-discounts h3 {
            color: #ffffff;
            font-size: 18px;
            margin-bottom: 20px;
        }

        .footer-section .footer1 .footer-discounts .btn {
            background: #555;
            color: #ffffff;
            border: none;
            padding: 15px 40px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background 0.3s;
        }

        .footer-section .footer1 .footer-discounts .btn:hover {
            background: #666;
        }

        @media (max-width: 991px) {
            .footer-section .footer1 .footer-discounts {
                text-align: left !important;
                margin-top: 30px;
            }

            .footer-section .contact-strip {
                width: 90%;
            }
        }

        @media (max-width: 768px) {
            .footer-section .contact-strip {
                width: 95%;
            }

            .footer-section .contact-strip .strip-content {
                justify-content: center;
                text-align: center;
                padding: 0 20px;
            }

            .footer-section .contact-strip .message-text {
                text-align: center;
            }

            .footer-section .footer1 {
                padding-top: 180px;
            }
        }
