/* ==========================================
   TRIPBOOKEI PREMIUM FOOTER
========================================== */

.mega-footer{

    background:
        linear-gradient(
            180deg,
            #071326,
            #04101f
        );

    color:#ffffff;

    margin-top:120px;

    border-top:1px solid rgba(231,201,109,.25);

}

.footer-top{

    width:min(1400px,92%);

    margin:auto;

    display:grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr
        1.4fr;

    gap:55px;

    padding:90px 0 70px;

}

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

.footer-brand p{

    color:#c5d0df;

    line-height:1.9;

    font-size:16px;

}

.footer-column h3{

    color:#ffffff;

    font-size:22px;

    margin-bottom:28px;

    position:relative;

}

.footer-column h3::after{

    content:"";

    width:42px;

    height:3px;

    margin-top:10px;

    display:block;

    border-radius:5px;

    background:#e7c96d;

}

.footer-column{

    display:flex;

    flex-direction:column;

}

.footer-column a{

    color:#b8c7d8;

    text-decoration:none;

    margin-bottom:15px;

    transition:.35s;

}

.footer-column a:hover{

    color:#e7c96d;

    transform:translateX(8px);

}

.footer-social{

    display:flex;

    gap:16px;

    margin-top:35px;

}

.footer-social a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    text-decoration:none;

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.04);

    transition:.35s;

}

.footer-social a:hover{

    background:#2f6fff;

    transform:translateY(-5px);

}

.newsletter-form{

    margin-top:25px;

}

.newsletter-form input{

    width:100%;

    height:58px;

    border:none;

    border-radius:14px;

    padding:0 18px;

    margin-bottom:18px;

    background:rgba(255,255,255,.08);

    color:white;

}

.newsletter-form input::placeholder{

    color:#b8c6d5;

}

.newsletter-form button{

    width:100%;

    height:58px;

    border:none;

    cursor:pointer;

    border-radius:14px;

    font-weight:700;

    color:white;

    background:

        linear-gradient(
            135deg,
            #2f6fff,
            #1d57df
        );

    transition:.35s;

}

.newsletter-form button:hover{

    transform:translateY(-3px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    width:min(1400px,92%);

    margin:auto;

    padding:30px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:25px;

}

.footer-bottom p{

    color:#9fb2c9;

}

.footer-bottom div{

    display:flex;

    gap:30px;

}

.footer-bottom a{

    color:#9fb2c9;

    text-decoration:none;

}

.footer-bottom a:hover{

    color:#e7c96d;

}

@media(max-width:1200px){

.footer-top{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer-top{

grid-template-columns:1fr;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

.footer-bottom div{

flex-wrap:wrap;

justify-content:center;

}

}