* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
    color: #fff;
}

/* ====== Top Header ====== */
.top-banner {
    background: #e31e24;
    /* red color */
    color: #fff;
    width: 100%;
    font-size: 14px;
}

.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.banner-item span {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.icon {
    font-size: 14px;
}

.divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.5);
}

/* Tablet */
@media (max-width: 768px) {
    .container {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .divider {
        display: none;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .banner-item {
        width: 100%;
        justify-content: center;
        font-size: 18px;
    }
}

/* ====== Top Header ====== */

/* ====== Hero Section ====== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #1a2a44;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.content {
    position: relative;
    max-width: 900px;
    padding: 20px;
}

h1 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #1a2a44;
}

.highlight {
    color: #fff;
    font-weight: bold;
}

.small-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #1a2a44;
    font-weight: bold;
    font-size: 20px;
}

.features {
    color: #fff;
    list-style: none;
    margin-bottom: 10px;
    text-align: left;
    display: inline-block;
}

.features li {
    margin: 5px 0;
    line-height: 30px;
    font-size: 20px;
}

.buttons {
    margin: 10px 0;
}

.btn {
    display: inline-block;
    padding: 14px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    margin: 10px;
    transition: 0.3s;
}

.btn.red {
    background: linear-gradient(#ff3b3b, #c40000);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn.blue {
    background: linear-gradient(#2d6cdf, #0d3c91);
    color: #fff;
}

.btn:hover {
    transform: scale(1.05);
}

.trusted {
    margin-top: 15px;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
}

.plane {
    position: absolute;
    right: 10%;
    top: 10%;
    width: 180px;
}

/* 📱 Tablet */
@media (max-width: 768px) {
    h1 {
        font-size: 30px;
    }

    .subtitle {
        font-size: 18px;
    }

    .plane {
        width: 120px;
        top: 15%;
        right: 5%;
    }

    .blue {
        font-size: 28px;
    }
}

/* 📱 Mobile */
@media (max-width: 480px) {
    .hero {
        height: auto;
        padding: 40px 0;
    }

    h1 {
        font-size: 24px;
    }

    .plane {
        display: none;
    }

    .btn {
        width: 100%;
        display: block;
    }
}

/* ===== Hero Section ====== */


/* ===== Serach Form Section ====== */
section.relative {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(#c0cccf, #ced6d8);
}

/* Heading */
section.relative h1 {
    width: 100%;
    max-width: 1200px;
    font-size: 42px;
    font-weight: bold;
    text-align: center;
}

/* Booking Box */
.booking-box {
    width: 100%;
    max-width: 1200px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Trip Type */
.trip-type {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.trip-type label {
    font-weight: 600;
    font-size: 14px;
}

/* Form Grid */
.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Input Boxes */
.input-box,
.date-box,
.traveler-wrapper {
    flex: 1 1 150px;
    min-width: 140px;
    position: relative;
}

.input-box input,
.date-box input,
.traveler-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 38px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #f9f9f9;
    transition: 0.3s;
}

/* Icons */
.input-box i,
.date-box i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
}

/* Focus */
.input-box input:focus,
.date-box input:focus,
.traveler-wrapper input:focus {
    border-color: #1c92d2;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(28, 146, 210, 0.2);
}

/* Button */
.search-btn1 {
    flex: 1 1 150px;
    min-width: 140px;
    padding: 12px;
    border: none;
    background: linear-gradient(#ff3b3b, #c40000);
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.search-btn1:hover {
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .form-grid {
        gap: 12px;
    }

    .input-box,
    .date-box,
    .traveler-wrapper,
    .search-btn1 {
        flex: 1 1 45%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .form-grid {
        flex-direction: column;
    }

    .input-box,
    .date-box,
    .traveler-wrapper,
    .search-btn1 {
        width: 100%;
    }

    section.relative h1 {
        font-size: 28px;
    }

    .search-btn1 {
        padding: 14px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {

    .input-box input,
    .date-box input,
    .traveler-wrapper input {
        font-size: 13px;
        padding: 10px 10px 10px 35px;
    }
}

/* ===== Serach Form Section ====== */

/* ===== Why Call Us Section ====== */
.banner {
    margin: 10px auto;
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.banner-title {
    background: #e53935;
    color: #fff;
    display: inline-block;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 42px;
    width: 100%;
}

.features1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.feature-box {
    flex: 1;
    padding: 20px;
    border-right: 1px solid #eee;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-box:last-child {
    border-right: none;
}

.feature-box img {
    width: 80px;
    margin-bottom: 12px;
}

.feature-box h3 {
    color: #0d3c91;
    margin: 5px 0;
    font-size: 20px;
    font-weight: bold;
}

.feature-box p {
    color: #0d3c91;
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.feature-box img {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-box {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .feature-box:last-child {
        border-bottom: none;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .features1 {
        flex-direction: row;
        gap: 0px;
    }

    .feature-box img {
        width: 50px;
        margin-bottom: 12px;
    }

    .feature-box p {
        font-size: 14px;
    }

    .feature-box h3 {
        font-size: 14px;
    }
}

/* ===== Why Call Us Section ====== */

/* ===== Benefits of Calling a Travel Expert Section ====== */

.benefits {
    background: linear-gradient(to top, #5286b4, #183652);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.benefits h1 {
    margin-bottom: 30px;
    font-size: 42px;
}

.features-be {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.feature-be {
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
    min-width: 200px;
    padding: 20px;
    background: white;
    color: #333;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.feature-be img {
    width: 60px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.feature-be p {
    font-weight: bold;
    font-size: 20px;
    color: #0d3c91;
}

.feature-be:hover {
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .feature-be {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .feature-be {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        min-width: unset;
    }

    .benefits h1 {
        font-size: 28px;
    }

    .feature-be img {
        width: 45px;
    }

    .feature-be p {
        font-size: 18px;
    }
}

/* ===== Benefits of Calling a Travel Expert Section ====== */

/* ===== Limited offer Section ====== */
.banner-limited {
    overflow: hidden;
    padding: 20px;
}

/* Top Bar */
.top-bar-limit {
    background: #d62828;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 42px;
    border-radius: 10px;
    line-height: 40px;
}

/* Main Content */
.content-limit {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-top: 15px;
}

.content-limit h1 {
    font-size: 26px;
    color: #d62828;
    margin-bottom: 10px;
}

.content-limit h1 span {
    color: #003049;
}

.content-limit p {
    font-size: 16px;
    color: #003049;
    font-weight: bold;
    margin-bottom: 15px;
}

/* CTA Button */
.cta-btn-limit {
    display: inline-block;
    background: linear-gradient(to bottom, #ffd60a, #fca311);
    color: #442306;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn-limit:hover {
    transform: scale(1.05);
}

/* Reviews Box */
.reviews-limit {
    margin-top: 20px;
    background: #f1f1f1;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
}

.review-limit {
    color: #003049;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 20px;
}

.star {
    color: gold;
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .content-limit h1 {
        font-size: 20px;
    }

    .cta-btn-limit {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .banner-limited {
        padding: 10px;
    }

    .review-limit {
        font-size: 16px;
    }

    .content-limit {
        padding: 15px;
    }
}

/* ===== Limited offer Section ====== */

/* ===== Footer Section ====== */
.banner-footer {
    background: linear-gradient(to right, #0d4c9c, #1e73d8);
    color: white;
    padding: 20px;
    text-align: center;
}

.banner-footer h2 {
    margin: 0 0 15px;
    font-weight: bold;
    font-size: 42px;
}

.cta-btn-footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to bottom, #ffd84d, #ffb300);
    color: #442306;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    font-size: 28px;
}

.cta-btn-footer:hover {
    transform: scale(1.05);
}

.phone-icon-footer {
    font-size: 28px;
}

@media (max-width: 768px) {
    .banner-footer h2 {
        font-size: 42px;
    }

    .cta-btn-footer {
        padding: 10px 18px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .banner-footer {
        padding: 15px;
    }

    .banner-footer h2 {
        font-size: 42px;
    }

    .cta-btn-footer {
        font-size: 20px;
        gap: 5px;
    }
}

/* ===== Footer Section ====== */


/* ------------------
Footer Call Mobile 
--------------------*/
/* Default hide */
.footerttf {
    display: none;
}

/* Mobile only */
@media (max-width: 767px) {
    .footerttf {
        display: block;
        position: fixed;
        bottom: -100px;
        /* hidden initially */
        left: 0;
        width: 100%;
        background: linear-gradient(to bottom, #ffd84d, #ffb300);
        z-index: 9999;
        border-radius: 30px;
        transition: bottom 0.4s ease;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    }

    .footerttf.show {
        bottom: 0;
    }

    .footerTfn a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 15px;
        text-decoration: none;
        color: #442306;
        font-size: 28px;
    }

    .footerTfn svg {
        width: 34px;
        height: 34px;
        flex-shrink: 0;
    }

    .footCont span {
        font-size: 13px;
        display: block;
        line-height: 1.2;
    }

    .footCont h3 {
        margin: 0;
        font-size: 32px;
        font-weight: 900;
        color: #442306;
        align-items: center;
    }

    #my-footer {
        padding-left: 30px;
    }
}