<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @font-face {
            font-family: 'Super Comic';
            src: url('fonts/SuperComic-qZg62.ttf') format('truetype');
        }

        .kukdukoo-footer {
            position: relative;
            background: #c5efff;
            padding: 55px 40px 25px;
            font-family: 'Super Comic', sans-serif;
            overflow: hidden;
            min-height: 280px;
        }

        /* TOP GRASS */

        .kukdukoo-footer-top {
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
            z-index: 1;
        }

        .kukdukoo-footer-top img {
            width: 100%;
            display: block;
            transform: translateY(-40px);
        }

        /* CONTENT */

        .footer-inner{
    position:relative;
    z-index:2;
    width:92%;
    max-width:1800px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:clamp(40px,4vw,100px);
}

        /* LEFT MENU */

        .footer-links {
            width: 32%;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            font-size: 20px;
            font-weight: 200;
            color: #000;
            line-height: 1;
        }

        .footer-links a:hover {
            opacity: .8;
        }

        /* CENTER */

        .footer-center {
            width: 30%;
            text-align: center;
        }

        .footer-logo {
            width: 160px;
            margin: auto;
            display: block;
        }

        .book-btn {
            position: relative;
            display: inline-block;
            margin-top: 10px;
        }


        .book-btn img {
            width: 220px;
            display: block;
        }

        .book-btn span {
            position: absolute;
            top: 50%;
            left: 44%;
            transform: translate(-50%, -50%);
            font-family: 'Super Comic', sans-serif;
            font-size: 16px;
            font-weight: 200;
            color: #fff;
            white-space: nowrap;
            line-height: 1;
            pointer-events: none;
        }

        /* RIGHT */

        .footer-right {
            width: 32%;
            text-align: center;
        }

        .footer-title {
            font-size: 24px;
            font-weight: 200;
            color: #000;
            line-height: 1;
            margin-bottom: 12px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .social-icons a {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border: 2px solid #444;
            font-size: 22px;
            color: #000;
        }

        .social-line {
            width: 180px;
            height: 2px;
            background: #000;
            margin: 0 auto 20px;
        }

        .contact-btn {
            display: inline-block;
            position: relative;
        }

        .contact-btn img {
            width: 220px;
            display: block;
        }

        .contact-btn span {
            position: absolute;
            top: 50%;
            left: 45%;
            transform: translate(-50%, -50%);
            font-size: 16px;
            font-weight: 400;
            color: #fff;
            white-space: nowrap;
        }

        .footer-links {
            padding-top: 140px;
        }

        .footer-center {
            padding-top: 130px;
        }

        .footer-right {
            padding-top: 140px;
        }
        
        
        
       
        /* =========================================
   Large Desktop (27" / 2K / 2560px+)
========================================= */

@media (min-width: 1920px){

    .kukdukoo-footer{
        padding:80px 60px 40px;
        min-height:480px;
    }

    /* Top Grass */
    .kukdukoo-footer-top{
        top:70px;
    }

    .kukdukoo-footer-top img{
        transform:translateY(-60px);
    }

    /* Main Container */
    .footer-inner{
        max-width:1800px;
        gap:80px;
    }

    /* Left Menu */
    .footer-links{
        width:33%;
        padding-top:190px;
    }

    .footer-links li{
        margin-bottom:18px;
    }

    .footer-links a{
        font-size:28px;
        gap:14px;
    }

    /* Center */
    .footer-center{
        width:34%;
        padding-top:180px;
    }

    .footer-logo{
        width:240px;
    }

    .book-btn{
        margin-top:18px;
    }

    .book-btn img{
        width:320px;
    }

    .book-btn span{
        font-size:24px;
    }

    /* Right */
    .footer-right{
        width:33%;
        padding-top:190px;
    }

    .footer-title{
        font-size:34px;
        margin-bottom:20px;
    }

    .social-icons{
        gap:20px;
        margin-bottom:25px;
    }

    .social-icons a{
        width:70px;
        height:70px;
        font-size:30px;
    }

    .social-line{
        width:260px;
        margin-bottom:30px;
    }

    .contact-btn img{
        width:320px;
    }

    .contact-btn span{
        font-size:24px;
    }

}
 /* FOOTER TABLET RESPONSIVENESS */
        @media (max-width: 1024px) {
            .footer-links a {
                font-size: 16px;
            }

            .footer-title {
                font-size: 16px;
            }

            .social-icons a {
                width: 44px;
                height: 44px;
                font-size: 18px;
            }

            .book-btn img,
            .contact-btn img {
                width: 180px;
            }

            .book-btn span,
            .contact-btn span {
                font-size: 13px;
            }
        }
        /* MOBILE */

        @media(max-width:767px) {

            .kukdukoo-footer {
                padding: 80px 15px 40px;
            }

            /* Top bushes */
            .kukdukoo-footer-top img {
                width: 100%;
                display: block;
                transform: translateY(-20px);
            }

            /* Layout */
            .footer-inner {
                display: grid;
                grid-template-columns: 1fr 1fr;
                grid-template-areas:
                    "logo logo"
                    "menu social"
                    "book contact";
                align-items: start;
                gap: 15px;
                max-width: 100%;
                margin-top: 15px;
            }

            /* Center Logo */
            .footer-center {
                grid-area: logo;
                width: 100%;
                text-align: center;
                padding-top: 20px;
            }

            .footer-logo {
                width: 95px;
                margin: 0 auto;
            }

            /* Left Menu */
            .footer-links {
                grid-area: menu;
                width: 100%;
                padding-top: 10px;
            }

            .footer-links ul {
                padding: 0;
            }

            .footer-links li {
                margin-bottom: 8px;
            }

            .footer-links a {
                justify-content: flex-start;
                font-size: 14px;
                gap: px;
            }

            /* Right Social */
            .footer-right {
                grid-area: social;
                width: 100%;
                padding-top: 10px;
                text-align: center;
            }

            .footer-title {
                font-size: 14px;
                margin-bottom: 10px;
            }

            .social-icons {
                gap: 6px;
                margin-bottom: 10px;
            }

            .social-icons a {
                width: 34px;
                height: 34px;
                font-size: 14px;
            }

            .social-line {
                width: 90px;
                margin: 0 auto 10px;
            }

            /* Buttons Row */
            .book-btn {
                grid-area: book;
                justify-self: center;
                margin-top: 5;
            }

            .contact-btn {
                grid-area: contact;
                justify-self: center;
            }

            .book-btn img,
            .contact-btn img {
                width: 145px;
            }

            .book-btn span,
            .contact-btn span {
                font-size: 11px;
            }

        }
         /* ==========================================================
   Small Phones (360px)
========================================================== */

@media (max-width:360px){

     .kukdukoo-footer{
    position:relative;
    background:#D8FB63;
    padding:25px 10px 80px;
    height:auto !important;
    min-height:auto !important;
    overflow:visible !important;
}
    .footer-inner{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .footer-center{
        order:1;
        width:100%;
        padding-top:0;
    }

    .footer-links{
        order:2;
        width:100%;
            font-size:11px !important;
        padding-top:20px;
        Marging-left: -10px !important;
    }

    .footer-right{
        order:3;
        width:100%;
        padding-top:20px;
    }

}
       
    </style>