* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* GLOBAL */
.container {
    max-width: 1200px;
    padding: 0 16px;
    margin: auto;
}

/* HEADER */
.header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: #3d8bfd;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
nav a.active,
nav a:hover {
    color: #3d8bfd;
}
.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
}

/* HERO */
.hero {
    background:  url(Background.webp);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.search-box {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.search-box input,
.search-box button {
    padding: 12px;
    border-radius: 6px;
    border: none;
}

.search-box input {
    width: 200px;
}

.search-box button {
    background: #fff;
    color: #3d8bfd;
    font-weight: 600;
    cursor: pointer;
}

/* SERVICES */
.services {
    padding: 60px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.card {
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fff;
}

/* DISCLAIMER */
.disclaimer {
    background: #f8f9fa;
    padding: 16px 0;
    text-align: center;
    font-size: 14px;
}

/* FOOTER */
.footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
}

/* MOBILE */
@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        background: #fff;
        top: 64px;
        left: 0;
        width: 100%;
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid #eee;
    }

    nav a {
        margin: 10px 0;
    }

    .menu-btn {
        display: block;
    }
}
/* POPUP OVERLAY */
.call-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* POPUP BOX */
.popup-box {
    background: #fff;
    width: 90%;
    max-width: 360px;
    padding: 24px;
    border-radius: 14px;
    text-align: center;
    position: relative;
    animation: popupFade 0.3s ease;
}

/* CLOSE BUTTON */
.popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* CALL BUTTON */
.popup-call-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 20px;
    background: #3d8bfd;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

/* DISCLAIMER TEXT */
.popup-note {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    color: #777;
}

/* ANIMATION */
@keyframes popupFade {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.logo-link {
    text-decoration: none;
    color: inherit;
    font: inherit;
}

/* TRAVEL DEALS */
.travel-deals {
    padding: 70px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 600;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.deal-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    animation: floatRotate 6s ease-in-out infinite;
}

.deal-card:nth-child(2) {
    animation-delay: 1s;
}
.deal-card:nth-child(3) {
    animation-delay: 2s;
}
.deal-card:nth-child(4) {
    animation-delay: 3s;
}

.deal-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.deal-card:hover img {
    transform: scale(1.1);
}

.deal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: #fff;
}

.deal-info h3 {
    margin: 0;
    font-size: 20px;
}

.price {
    display: inline-block;
    margin-top: 6px;
    background: #3d8bfd;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

 

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .deal-card img {
        height: 330px;
    }
}
/* PRICE + CALL BUTTON ROW */
.deal-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

/* CALL BUTTON */
.deal-call {
    background: #3d8bfd;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.deal-call:hover {
    background: #2c6adf;
    transform: scale(1.1);
}

/* DISCLAIMER SECTION */
.disclaimer-section {
    background: rgba(61, 139, 253, 0.08); /* soft blue background */
    border-top: 1px solid rgba(61, 139, 253, 0.25);
    border-bottom: 1px solid rgba(61, 139, 253, 0.25);
    padding: 22px 0;
}

.disclaimer-section p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #1f3b73;
    text-align: center;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-section strong {
    color: #3d8bfd; /* primary brand color */
    font-weight: 600;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .disclaimer-section p {
        font-size: 13px;
        padding: 0 16px;
    }
}
/* SERVICES SHOWCASE */
.services-showcase {
    padding: 80px 0;
    background: #f8faff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1c2d4a;
}

.section-title p {
    color: #6c7a99;
    font-size: 15px;
    margin-top: 8px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* CARD */
.service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* CONTENT */
.service-content {
    padding: 22px;
    text-align: center;
}

.service-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1c2d4a;
}

.service-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
}

/* CALL BUTTON */
.call-animate-btn {
    display: inline-block;
    background: #3d8bfd;
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    animation: pulseCall 1.8s infinite;
    transition: background 0.3s ease;
}

.call-animate-btn:hover {
    background: #2c6fe0;
}

/* PULSE ANIMATION */
@keyframes pulseCall {
    0% {
        box-shadow: 0 0 0 0 rgba(61, 139, 253, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(61, 139, 253, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(61, 139, 253, 0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 180px;
    }
}


/* TRUST SECTION */
.trust-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa, #ffffff);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
}

/* IMAGE FRAME */
.trust-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: #ffffff;
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.trust-images img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

/* TEXT */
.trust-content h2 {
    font-size: 1.9rem;
    margin-bottom: 12px;
}

.trust-content p {
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.trust-highlight {
    font-weight: 600;
    color: #0d6efd;
}

/* ANIMATED CALL BUTTON */
.trust-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 13px 22px;
    background: #0d6efd;
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    animation: pulseCall 1.8s infinite;
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.45);
}

.trust-call-btn:hover {
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(13, 110, 253, 0.6);
}

/* PULSE ANIMATION */
@keyframes pulseCall {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(13, 110, 253, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trust-images img {
        height: 140px;
    }

    .trust-call-btn {
        justify-content: center;
    }
}

/* TOP STICKY BAR */
.top-sticky-call {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #0d6efd;
    animation: slideDown 0.6s ease;
}

/* LINK */
.top-call-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* FLAG */
.top-call-link .flag {
    font-size: 20px;
}

/* CALL ICON */
.call-icon {
    animation: ring 1.6s infinite;
}

/* TEXT */
.call-text strong {
    font-weight: 700;
}

/* HOVER */
.top-call-link:hover {
    background: #0b5ed7;
}

/* ANIMATIONS */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(0); }
    100% { transform: rotate(0); }
}

/* MOBILE */
@media (max-width: 768px) {
    .call-text {
        font-size: 0.9rem;
    }
}

 