﻿
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');


.new-packages-section {
    padding: 40px 0;
}

.new-packages-title {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 55px;
}
.new-packages-title h2 {
    font-size: 38px;
    font-weight: 700;
}
.new-packages-title p {
    font-size: 16px;
    color: #6b7280;
    margin-top: 12px;
}

/* ================= PACKAGE GRID ================= */
.new-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.new-packages-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    transition: .3s ease;
}
.new-packages-card:hover {
    transform: translateY(-6px);
}

.new-packages-image {
    position: relative;
}
.new-packages-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.new-packages-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #dc2626;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.new-packages-body {
    padding: 22px;
}
.new-packages-body h5 {
    font-size: 18px;
    font-weight: 600;
}
.new-packages-meta {
    font-size: 14px;
    color: #6b7280;
    margin: 8px 0;
}
.new-packages-date {
    font-size: 13px;
    color: #374151;
}
.new-packages-price {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.new-packages-price span {
    font-size: 24px;
    font-weight: 700;
    color: #b91c1c;
}
.new-packages-price small {
    font-size: 12px;
    color: #6b7280;
}

/* ================= SEARCH CTA ================= */
.new-packages-search {
    background: linear-gradient(135deg,#1d4ed8,#1e3a8a);
    border-radius: 26px;
    padding: 55px;
    color: #fff;
}
.new-packages-search h3 {
    font-size: 30px;
    font-weight: 700;
}
.new-packages-search p {
    font-size: 16px;
    opacity: .9;
    margin: 15px 0 25px;
}
.new-packages-search a {
    background: #fff;
    color: #1e3a8a;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
}

/* ================= INFO ================= */
.new-packages-info p {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
}

/* ================= BRAND ================= */
.new-packages-brand {
    background: #fff;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
    height: 100%;
}
.new-packages-brand img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 18px;
}
.new-packages-brand h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

/* ================= DESTINATION ================= */
.new-packages-destination img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
}


.new-packages-hotel-card {
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}
.new-packages-hotel-card:hover {
    transform:translateY(-6px);
}

.new-packages-hotel-img img {
    width:100%;
    height:200px;
    object-fit:cover;
}

.new-packages-hotel-body {
    padding:20px;
}

.new-packages-price {
    font-size:22px;
    font-weight:700;
    color:#dc2626;
}

.new-packages-perk-card {
    position:relative;
    border-radius:18px;
    overflow:hidden;
}
.new-packages-perk-card img {
    width:100%;
    height:220px;
    object-fit:cover;
}
.new-packages-perk-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.7),transparent);
    color:#fff;
    padding:25px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}
/* ================= FAQ SECTION ================= */

.new-packages-faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.new-packages-faq-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    text-align: left;
}

/* Accordion container */
.new-packages-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ card */
.new-packages-faq-item {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    overflow: hidden;
}

/* Header */
.new-packages-faq-header {
    margin: 0;
}

/* Button */
.new-packages-faq-button {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 26px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    text-align: left;
    position: relative;
    cursor: pointer;
}

.new-packages-faq-button::after {
    content: "+";
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 600;
    color: #2563eb;
    transition: transform .3s ease;
}

.new-packages-faq-button:not(.collapsed)::after {
    content: "−";
}

.new-packages-faq-body {
    padding: 0 26px 26px;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

.new-packages-faq-button:focus {
    outline: none;
    box-shadow: none;
}

@media (max-width: 575px) {
    .new-packages-faq-title {
        font-size: 24px;
    }

    .new-packages-faq-button {
        padding: 18px 20px;
        font-size: 15px;
    }

    .new-packages-faq-body {
        padding: 0 20px 22px;
    }
}


/* ================= PACKAGE ENGINE ================= */

.new_package_engine-wrapper {
    padding: 60px 0;
}

.new_package_engine-header h1 {
    font-size: 38px;
    font-weight: 700; color:#fff;
}

.new_package_engine-header p {
    color: #fff;
    margin-top: 10px;
}

/* Form */
.new_package_engine-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

/* Fields */
.new_package_engine-field label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.new_package_engine-field input,
.new_package_engine-field select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

.new_package_engine-field input:focus,
.new_package_engine-field select:focus {
    border-color: #2563eb;
    outline: none;
}

/* Submit */
.new_package_engine-submit {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg,#2563eb,#1e40af);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

/* Thank You Popup */
.new_package_engine-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.new_package_engine-popup {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    max-width: 420px;
    text-align: center;
    position: relative;
}

.new_package_engine-popup img {
    max-width: 120px;
    margin-bottom: 20px;
}

.new_package_engine-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 26px;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 575px) {
    .new_package_engine-header h1 {
        font-size: 28px;
    }

    .new_package_engine-form {
        padding: 25px;
    }
}

.badge {display:none;
}
.new_package_engine-field{    margin-top: -15px;}

.packagie_home {
    background:linear-gradient(rgb(4 4 4 / 56%) 3.04%, rgb(0 0 0 / 9%) 34.3%, rgb(27 29 32 / 7%) 82.23%), url(/images/package.jpg);
    background-size: cover !important;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 500px;
    position: relative;
    background-position: center;
}


/* ================= GROUP SECTION ================= */

.new-packages-group-intro h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.new-packages-group-intro p {
    max-width: 850px;
    margin: 0 auto;
    color: #4b5563;
    line-height: 1.7;
}

.new-packages-group-start {
    margin-top: 40px;
}

.new-packages-group-start h4 {
    font-weight: 600;
}

.new-packages-group-start p {
    color: #374151;
}

.new-packages-group-tips {
    margin: 40px auto;
    max-width: 600px;
}

.new-packages-group-tips h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.new-packages-group-tips ul {
    padding-left: 18px;
}

.new-packages-group-tips li {
    margin-bottom: 6px;
}

/* Table */
.new-packages-group-table-wrapper {
    overflow-x: auto;
    margin: 50px 0;
}

.new-packages-group-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.new-packages-group-table th {
    background: #4547c0;
    color: #fff;
    padding: 14px;
    text-align: left;
}

.new-packages-group-table td {
    border: 1px solid #e5e7eb;
    padding: 12px 14px;
    font-size: 14px;
}

/* Cards */
.new-packages-group-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    padding: 20px;
    height: 100%;
}

.new-packages-group-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 15px;
}

.new-packages-group-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.new-packages-group-card p {
    font-size: 14px;
    color: #4b5563;
}

/* Mobile */
@media (max-width: 575px) {
    .new-packages-group-intro h2 {
        font-size: 26px;
    }
}


@media (max-width: 992px){.new_package_engine-wrapper
 {
    padding: 16px 0px; padding-bottom:40px;
}
.packagie_home{height:auto;}
.new-packages-title h2 {
    font-size: 22px;
    font-weight: 700;
}
.new-packages-section {
    padding: 30px 0;
}
}




.all_new_footer {
    background:linear-gradient(180deg, #05076d, #070844);
    padding: 25px 20px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.all_new_footer .footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;padding-top: 14px;
}

/* Links */
.all_new_footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0; padding-top:14px;
}

.all_new_footer .footer-links li {
    margin-bottom: 14px;
}

.all_new_footer .footer-links a {
    color: #f3f3f3;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.all_new_footer .footer-links a::before {
    content: "›";
    margin-right: 10px;
    opacity: 0.6;
}

.all_new_footer .footer-links a:hover {
    opacity: 1;
    padding-left: 6px;
}

/* Right Column */
.all_new_footer .footer-right h3 {
    font-size: 22px;
    margin-bottom: 18px;
}

.all_new_footer .subscribe-box {
    display: flex;
    margin-bottom: 15px;
}

.all_new_footer .subscribe-box input {
    flex: 1;
    padding: 14px;
    border-radius: 6px 0 0 6px;
    border: none;
    outline: none;
    font-size: 14px;
}

.all_new_footer .subscribe-box button {
    background: #021f74;
    border: none;
    padding: 0 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 6px 6px 0;
}

.all_new_footer .promo-text {
    font-size: 14px;
    margin-bottom: 25px;
}

.all_new_footer .promo-text span {
    background: #021f74;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.all_new_footer h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Social Icons */
.all_new_footer .social-icons {
    display: flex;
    gap: 14px;
    margin-bottom: 25px;
}

.all_new_footer .social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.all_new_footer .social-icons a:hover {
    background: #021f74;
}

.payment_methodsnew{margin:0;display: flex;
    padding: 0;
    list-style: none;}
.payment_methodsnew img{width:40px;}

.all_new_footer .contact-info p {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.all_new_footer .contact-info i {
    color: #021f74;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 992px) {
    .all_new_footer .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .all_new_footer .footer-container {
        grid-template-columns: 1fr;
    }
    .all_new_footer .footer-container{    gap: 20px;}
      .all_new_footer {
        padding: 20px 15px;
    }
}


@media (max-width: 480px){    .all_new_footer {
        padding-bottom: 4rem;
    }}

.copyrights {
    padding: 1rem 0;
    color: #fff;
    opacity: 0.5;
    font-size: 13px;
    text-align: center;
}

.contact-info ul li a{color: #fff;
    text-decoration: none;}

.contact-info ul{padding:0; margin:0; list-style:none;}


.stay_social {
    display: flex;
    align-items: center; /* KEY */
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.stay_social li {
    display: flex;
    align-items: center;
}

/* Icon wrapper = equal box */
.stay_social a {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG normalization */
.social_svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    display: block;
}

/* Fine-tune visual balance */
.social_svg[data-icon="youtube"] {
    width: 20px;
}

.social_svg[data-icon="pinterest"] {
    width: 17px;
}

.social_svg[data-icon="instagram"] {
    width: 17px;
}

.stay_social a:hover .social_svg {
    opacity: 0.75;
    transform: translateY(-2px);
    transition: 0.25s ease;
}


.stay_touch_wrap h3 {
    font-size: 16px;
    margin-bottom: 6px !important;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
}

.contact-info{    padding-top: 1rem;    line-height: 28px;}


/*<<<<<<<<<<<<<<<-------------cheapflight_banner------------->>>>>>>>>>>>>>*/

.new_deals_banner {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 16px 0;
    display:none;
}

.new_deals_banner .logo{
    margin-bottom:20px;
}

.new_deals_banner .logo img{
    max-width:200px;
}

.new_deals_banner .agent{
    margin:20px 0;
}

.new_deals_banner .agent img {
    width: 255px;
    height: 120px;
    object-fit: contain;
}

.new_deals_banner h1{
    font-size:20px;
    line-height:1.4;
    color:#111;
    margin:20px 0 25px;
    font-weight:700;
}

.new_deals_banner .call-btn2{
    display:block;
    background:#FF5722;
    color:#ffffff;
    text-decoration:none;
    padding:6px 18px;
    border-radius:8px;
    font-size:18px;
    font-weight:700;
    margin-bottom:14px;
}

.call-btn2 img{width:25px;}

.new_deals_banner .call-btn2 span{
    display:block;
    font-size:16px;
    margin-top:4px;
    font-weight:600;
}

.new_deals_banner .verified{
    font-size:13px;
    color:#333333;
    margin-bottom:22px;
}

.new_deals_banner .verified span{
  font-size: 14px;
    color: #010101;
    margin-bottom: 22px;
}

.new_deals_banner .btn-group{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
    margin-bottom:28px;
}

.new_deals_banner .small-btn{
    background:#0b5ed7;
    color:#ffffff;
    padding:8px 14px;
    border-radius:5px;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
}

.new_deals_banner .why-box{
    border:1px solid #e5e7eb;
    border-radius:8px;
    padding:18px;
    text-align:left;
}

.new_deals_banner .why-box h2{
    text-align:left;
    font-size:16px;
    margin-bottom:14px;
    color:#111111;
}

.new_deals_banner .why-box ul{
    list-style:none;
    padding-left:0;
    margin:0;
}

.new_deals_banner .why-box li{
    font-size:13px;
    color:#333333;
    margin-bottom:10px;
    line-height:1.4;
}

.new_deals_banner .why-box li span{
    color:#22a447;
    font-weight:700;
    margin-right:6px;
}





.hero-section {
    background: linear-gradient(180deg, #dfe7f7 0%, #f2ddd0 45%, #f7e6d8 70%, #ffffff 100%);
  
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
  }
  .hero-wing-img { position: absolute; top: 40px; right: -40px; width: 55%; max-width: 620px; opacity: 0.95; pointer-events: none; display:none; }
  .hero-heading { font-size: 46px; font-weight: 800; line-height: 1.15; color: #16213e; }
  .hero-heading .accent { color: #4F46E5; }
  .hero-sub { font-size: 15.5px; color: #5b6684; margin-top: 14px; max-width: 380px; }
 
  /* ===== Search Card ===== */
  .search-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(30, 41, 90, 0.14);
    padding: 22px 26px 18px;
    margin-top: -70px;
    position: relative;
    z-index: 10;
  }
  .trip-tab { border: none; background: transparent; font-size: 14px; font-weight: 500; color: #7c8598; padding: 6px 14px; border-radius: 16px; }
  .trip-tab.active { background: #eef0fd; color: #4F46E5; font-weight: 600; }
  .field-box { border-right: 1px solid #ececf3; padding: 4px 16px; }
  .field-box:last-of-type { border-right: none; }
  .field-label { font-size: 11.5px; color: #94a0b8; font-weight: 600; letter-spacing: .3px; text-transform: uppercase; }
  .field-value { font-size: 16px; font-weight: 700; color: #16213e; margin-top: 2px; }
  .field-sub { font-size: 12.5px; color: #94a0b8; }
  .swap-icon { width: 30px; height: 30px; border-radius: 50%; background: #eef0fd; color: #4F46E5; display: flex; align-items: center; justify-content: center; margin: 0 auto; font-size: 13px; }
  .btn-search-flight { background: linear-gradient(135deg, #6366f1, #7c3aed); color: #fff; border: none; border-radius: 12px; font-weight: 600; padding: 14px 10px; font-size: 15px; width: 100%; }
  .btn-search-flight:hover { opacity: .92; color: #fff; }
  .recent-chip { border: 1px solid #ececf3; border-radius: 14px; padding: 4px 12px; font-size: 12.5px; color: #5b6684; margin-right: 8px; display: inline-block; }
  .promo-link { font-size: 13px; color: #4F46E5; font-weight: 600; }
 
  /* ===== Trust badges ===== */
  .trust-strip { padding: 50px 0 40px; }
  .trust-icon { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
  .trust-title { font-size: 14.5px; font-weight: 700; color: #16213e; margin-bottom: 2px; }
  .trust-text { font-size: 12.5px; color: #8590a6; }
 
  /* ===== Section heading ===== */
  .section-heading { font-size: 22px; font-weight: 800; color: #16213e; }
  .view-all-link { font-size: 13.5px; font-weight: 600; color: #4F46E5; display:none; }
 
  /* ===== Deal Cards ===== */
  .deal-card { border-radius: 16px; overflow: hidden; border: 1px solid #f0f1f7; box-shadow: 0 6px 18px rgba(20,25,60,.05); background: #fff; height: 100%; }
  .deal-img-wrap { position: relative; height: 160px; overflow: hidden; }
  .deal-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
  .off-badge { position: absolute; top: 10px; left: 10px; background: #1FAA59; color: #fff; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 6px; }
  .deal-body { padding: 14px 16px 16px;     text-align: left;}
  .deal-city { font-size: 15.5px; font-weight: 700; color: #16213e; }
  .deal-code { font-size: 12px; color: #94a0b8; margin-bottom: 6px; }
  .deal-price-row { display: flex; gap:10px; align-items: baseline; }
  .deal-price { font-size: 17px; font-weight: 800; color: #16213e; }
  .deal-strike { font-size: 12.5px; color: #b3bacb; text-decoration: line-through; }
  .deal-meta { font-size: 12px; color: #8590a6; margin-top: 6px; }
 
  /* ===== Destination cards ===== */
  .dest-card { border-radius: 14px; overflow: hidden; position: relative; height: 190px; }
  .dest-card img { width: 100%; height: 100%; object-fit: cover; }
  .dest-heart { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; color: #ff4d6d; font-size: 14px; }
  .dest-name { font-size: 14.5px; font-weight: 700; color: #16213e; margin-top: 10px; margin-bottom: 0; padding-left: 10px;}
  .dest-country { font-size: 12px; color: #8590a6; }
  .dest-price { font-size: 12.5px; color: #4F46E5; font-weight: 600; }
 
  .nav-arrow-circle { display:none !important; width: 34px; height: 34px; border-radius: 50%; border: 1px solid #e4e7f0; display: flex; align-items: center; justify-content: center; color: #33415c; background: #fff; }
 
  /* ===== Why Book ===== */
  .why-book-box { background: #f7f8fc; border-radius: 20px; padding: 46px 30px; }
  .why-title { text-align: center; font-size: 22px; font-weight: 800; color: #16213e; }
  .why-title .underline { display: block; width: 46px; height: 3px; background: #4F46E5; margin: 8px auto 0; border-radius: 2px; }
  .why-icon { width: 48px; height: 48px; border-radius: 50%; background: #ffffff; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: #4F46E5; font-size: 20px; box-shadow: 0 4px 10px rgba(20,25,60,.06); }
  .why-item-title { font-size: 14px; font-weight: 700; color: #16213e; }
  .why-item-text { font-size: 12px; color: #8590a6; }
 
  /* ===== About ===== */
  .about-img { border-radius: 18px; width: 100%; height: 300px; object-fit: cover; }
  .about-eyebrow { font-size: 12.5px; font-weight: 700; color: #4F46E5; letter-spacing: .5px; }
  .about-heading { font-size: 26px; font-weight: 800; color: #16213e; margin-top: 6px; }
  .about-text { font-size: 14.5px; color: #5b6684; margin-top: 12px; line-height: 1.7; }
  .btn-learn-more { border: 1px solid #4F46E5; color: #4F46E5; border-radius: 8px; padding: 10px 22px; font-weight: 600; font-size: 14px; background: #fff; }
  .btn-learn-more:hover { background: #4F46E5; color: #fff; }
 
  /* ===== Testimonials ===== */
  .testimonial-card { background: #f7f8fc; border-radius: 16px; padding: 22px; height: 100%; }
  .testimonial-stars { color: #FFB700; font-size: 13px; margin-bottom: 10px; }
  .testimonial-text { font-size: 13.5px; color: #444d66; font-style: italic; margin-bottom: 16px; }
  .testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
  .testimonial-name { font-size: 13.5px; font-weight: 700; color: #16213e; }
  .testimonial-loc { font-size: 11.5px; color: #8590a6; }
 
  /* ===== Newsletter ===== */
  .newsletter-banner { background: linear-gradient(135deg, #4F46E5, #7c3aed); border-radius: 20px; padding: 36px 40px; }
  .newsletter-icon-circle { width: 54px; height: 54px; border-radius: 14px; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; flex-shrink: 0; }
  .newsletter-title { color: #fff; font-weight: 800; font-size: 18px; margin-bottom: 2px; }
  .newsletter-sub { color: #e4e2fb; font-size: 13px; }
  .newsletter-input { border-radius: 10px 0 0 10px; border: none; padding: 12px 16px; font-size: 13.5px; min-width: 260px; }
  .btn-subscribe { background: #16213e; color: #fff; border: none; border-radius: 0 10px 10px 0; padding: 12px 24px; font-weight: 600; font-size: 13.5px; }
 
  /* ===== Footer ===== */
  .flyora-footer { background: #0d1330; color: #aeb4cc; padding: 56px 0 0; }
  .footer-logo { color: #fff; font-size: 20px; font-weight: 800; }
  .footer-logo i { color: #7c8cff; margin-right: 6px; }
  .footer-desc { font-size: 13px; color: #8891ad; margin-top: 12px; max-width: 260px; }
  .footer-social { width: 32px; height: 32px; border-radius: 50%; background: #1a2148; display: flex; align-items: center; justify-content: center; color: #fff; margin-right: 8px; font-size: 13px; }
  .footer-heading { color: #fff; font-size: 14.5px; font-weight: 700; margin-bottom: 16px; }
  .footer-link { display: block; color: #8891ad; font-size: 13px; margin-bottom: 10px; }
  .footer-link:hover { color: #fff; }
  .footer-bottom { border-top: 1px solid #1a2148; margin-top: 40px; padding: 18px 0; font-size: 12.5px; color: #7580a0; }
  .footer-bottom a { color: #7580a0; margin-left: 18px; }
 
  @media (max-width: 991px) {
      .hero-section{padding-bottom: 6px;}
    .hero-wing-img { display: none; }
    .field-box { border-right: none; border-bottom: 1px solid #ececf3; padding: 12px 4px; }
  }
  @media (max-width: 767px) {
    .hero-heading { font-size: 32px; }
    .search-card { margin-top: 20px; }
    .newsletter-banner { text-align: center; }
    .newsletter-input { min-width: 0; width: 100%; border-radius: 10px; margin-bottom: 10px; }
    .btn-subscribe { width: 100%; border-radius: 10px; }
  }


   @media (min-width: 768px) {
    .col-md-2point4 { flex: 0 0 auto; width: 20%; }
  }
  @media (min-width: 992px) {
    .col-lg-2point4 { flex: 0 0 auto; width: 20%; }
  }





  :root{
    --ink:#16302E;
    --ocean:#0E5C52;
    --ocean-deep:#0A423B;
    --coral:#F2643B;
    --coral-deep:#C74B27;
    --sun:#F4B942;
    --sand:#FBF5E9;
    --paper:#FFFFFF;
    --line:#E4D9BE;
    --line-soft:#EFE7D3;
    --muted:#6E6152;
  }
 
  /* ---------- CATEGORY GRID ---------- */
  .section{padding:20px 0 72px;}
  .section-head{
    display:flex;align-items:flex-end;justify-content:space-between;
    margin-bottom:26px;flex-wrap:wrap;gap:12px;
  }
  .section-title{
    font-weight:600;font-size:26px;letter-spacing:-0.01em;
  }
  .section-note{font-size:13px;color:var(--muted);font-family:'Space Mono',monospace;}
 
  .cat-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:16px;
  }
  .cat-grid .cat-card:nth-child(4),
  .cat-grid .cat-card:nth-child(5){grid-column:span 1.5 / span 3;}
  .cat-grid{grid-template-columns:repeat(6,1fr);}
  .cat-grid .cat-card:nth-child(1),
  .cat-grid .cat-card:nth-child(2),
  .cat-grid .cat-card:nth-child(3){grid-column:span 2;}
  .cat-grid .cat-card:nth-child(4),
  .cat-grid .cat-card:nth-child(5){grid-column:span 3;}
 
  .cat-card{
    position:relative;border-radius:16px;overflow:hidden;height:210px;
    display:flex;align-items:flex-end;
    isolation:isolate;
    box-shadow:0 1px 0 rgba(22,48,46,0.03);text-decoration: none;
  }
  .cat-card img{
    position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2;
    transition:transform .6s cubic-bezier(.2,.7,.2,1);
  }
  .cat-card:hover img{transform:scale(1.06);}
  .cat-card::after{
    content:'';position:absolute;inset:0;z-index:-1;
    background:linear-gradient(180deg,rgba(10,20,19,0) 35%,rgba(10,20,19,.78) 100%);
  }
  .cat-tag{
    position:absolute;top:14px;left:14px;
    font-family:'Space Mono',monospace;font-size:10.5px;letter-spacing:0.06em;
    text-transform:uppercase;background:rgba(251,245,233,0.92);color:var(--ink);
    padding:5px 10px;border-radius:20px;
  }
  .cat-body{padding:18px 20px;color:#fff;position:relative;}
  .cat-name{font-weight:600;font-size:19px;margin:0 0 4px;}
  .cat-desc{font-size:12.5px;color:rgba(255,255,255,0.78);margin:0;max-width:230px;line-height:1.4;}
  .cat-arrow{
    position:absolute;top:16px;right:16px;width:30px;height:30px;border-radius:50%;
    background:rgba(255,255,255,0.16);display:flex;align-items:center;justify-content:center;
    color:#fff;font-size:14px;opacity:0;transform:translate(-4px,4px);
    transition:opacity .25s ease, transform .25s ease;
  }
  .cat-card:hover .cat-arrow{opacity:1;transform:translate(0,0);}
 
  /* ---------- FILTER TABS ---------- */
  .filters{display:flex;gap:8px;margin-bottom:28px;flex-wrap:wrap;}
  .filter-pill{
    font-size:13px;font-weight:600;padding:9px 16px;border-radius:20px;
    border:1px solid var(--line);background:var(--paper);color:var(--muted);cursor:pointer;
    transition:all .18s ease;
  }
  .filter-pill.active{background:var(--ink);color:var(--sand);border-color:var(--ink);}
  .filter-pill:hover:not(.active){border-color:var(--ocean);color:var(--ocean);}
 
  /* ---------- TICKET DEAL CARDS ---------- */
  .deal-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:22px;
  }
  .ticket{
    background:var(--paper);border-radius:18px;border:1px solid var(--line);
    overflow:hidden;transition:transform .25s ease, box-shadow .25s ease;
    display:flex;flex-direction:column;
  }
  .ticket:hover{transform:translateY(-4px);box-shadow:0 18px 34px -18px rgba(22,48,46,0.35);}
  .ticket-media{position:relative;height:168px;}
  .ticket-media img{width:100%;height:100%;object-fit:cover;display:block;}
  .badge-incl{
    position:absolute;top:12px;left:12px;background:var(--coral);color:#fff;
    font-size:10.5px;font-weight:700;letter-spacing:0.05em;text-transform:uppercase;
    padding:5px 10px;border-radius:6px;
  }
  .badge-save{
    position:absolute;top:12px;right:12px;background:var(--sun);color:#4A3105;
    font-size:11px;font-weight:700;padding:5px 10px;border-radius:6px;
  }
  .perf{
    position:relative;height:0;border-top:2px dashed var(--line);
  }
  .perf::before,.perf::after{
    content:'';position:absolute;top:-9px;width:18px;height:18px;border-radius:50%;
    background:var(--sand);
  }
  .perf::before{left:-9px;}
  .perf::after{right:-9px;}
 
  .ticket-body{padding:18px 20px 20px;flex:1;display:flex;flex-direction:column;}
  .ticket-name{font-weight:600;font-size:18px;margin:0 0 8px;line-height:1.25;}
  .ticket-meta{display:flex;align-items:center;gap:6px;font-size:12.5px;color:var(--muted);margin-bottom:4px;}
  .stars{color:var(--sun);letter-spacing:1px;}
  .ticket-route{font-size:12.5px;color:var(--muted);margin-bottom:14px;display:flex;align-items:center;gap:6px;}
  .ticket-route .pin{color:var(--coral);}
 
  .ticket-dates{
    font-family:'Space Mono',monospace;font-size:11px;color:var(--muted);
    text-transform:uppercase;letter-spacing:0.03em;margin-bottom:2px;
  }
  .ticket-dates b{color:var(--ink);font-weight:700;}
 
  .ticket-foot{
    margin-top:auto;padding-top:14px;border-top:1px solid var(--line-soft);
    display:flex;align-items:flex-end;justify-content:space-between;
  }
  .nights{font-size:12px;color:var(--muted);}
  .price{text-align:right;}
  .price .amt{font-weight:700;font-size:24px;color:var(--ocean-deep);}
  .price .per{font-size: 11px;
    color: var(--muted);
    display: block;
    margin-top: -2px;
    width: unset;    background: #fff;
    height: unset;
    font-weight: 300;}
 

  @media (max-width:860px){
    .wrap{padding:0 20px;}
    .cat-grid{grid-template-columns:repeat(2,1fr) !important;}
    .cat-grid .cat-card{grid-column:span 1 !important;}
    .deal-grid{grid-template-columns:1fr;}
    .cta-banner{padding:36px 26px;}
    .topnav{display:none;}
  }


    .new_faqsection {
        width: 100%;
        padding: 55px 0;
        background: #ffffff;
    }

    .new_faqsection_container {
        width: 100%;
        max-width: 1160px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header */

    .new_faqsection_header {
        margin-bottom: 28px;
    }

    .new_faqsection_title {
        margin: 0;
        color: #171717;
        font-size: 28px;
        line-height: 1.25;
        font-weight: 700;
        letter-spacing: -0.3px;
    }

    .new_faqsection_subtitle {
        max-width: 650px;
        margin: 12px 0 0;
        color: #666666;
        font-size: 13px;
        line-height: 1.6;
    }


    /* FAQ */

    .new_faqsection_list {
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

    .new_faqsection_item {
        overflow: hidden;
        border: 1px solid transparent;
        border-radius: 6px;
        background: #f5f5f5;
        transition:
            background-color 0.25s ease,
            border-color 0.25s ease,
            box-shadow 0.25s ease;
    }

    .new_faqsection_question {
        width: 100%;
        min-height: 55px;
        padding: 0 17px;
        border: 0;
        outline: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
           background: #f7f8fc;
    color: #101010;
        font-family: inherit;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.4;
        text-align: left;
        cursor: pointer;
    }

    .new_faqsection_question_text {
        flex: 1;
    }

    .new_faqsection_icon {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #222222;
        font-size: 19px;
        font-weight: 400;
        line-height: 1;
        transition: transform 0.25s ease;
    }


    /* Active FAQ */

    .new_faqsection_item_active {
     border-color: rgb(207 215 249);
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .new_faqsection_item_active .new_faqsection_question {
        color: #202020;
        font-weight: 600;
    }

    .new_faqsection_item_active .new_faqsection_icon {
        transform: rotate(0deg);
    }


    /* Answer */

    .new_faqsection_answer {
        display: grid;
        grid-template-rows: 0fr;
        opacity: 0;
        transition:
            grid-template-rows 0.3s ease,
            opacity 0.25s ease;
    }

    .new_faqsection_answer_inner {
        min-height: 0;
        overflow: hidden;
    }

    .new_faqsection_answer p {
        margin: 0;
        padding: 0 17px 18px;
        color: #4e4e4e;
        font-size: 13px;
        line-height: 1.65;
    }

    .new_faqsection_item_active .new_faqsection_answer {
        grid-template-rows: 1fr;
        opacity: 1;
    }


    /* Contact */

    .new_faqsection_contact {
        min-height: 78px;
        margin-top: 28px;
        padding: 13px 17px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 25px;
        border-radius: 6px;
        background: #eeeeee;
    }

    .new_faqsection_contact_content {
        display: flex;
        align-items: flex-start;
        gap: 11px;
    }

    .new_faqsection_info_icon {
        width: 17px;
        height: 17px;
        flex: 0 0 17px;
        margin-top: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #222222;
        color: #ffffff;
        font-size: 11px;
        font-weight: 700;
        line-height: 1;
    }

    .new_faqsection_contact_text h3 {
        margin: 0 0 7px;
        color: #202020;
        font-size: 17px;
        line-height: 1.2;
        font-weight: 700;
    }

    .new_faqsection_contact_text p {
        margin: 0;
        color: #6a6a6a;
        font-size: 11px;
        line-height: 1.4;
    }

    .new_faqsection_contact_action {
        display: flex;
        align-items: center;
        gap: 16px;
    }


    /* Document Icon */

    .new_faqsection_document_icon {
        width: 27px;
        height: 34px;
        position: relative;
        border: 2px solid #222222;
        border-radius: 3px;
        transform: rotate(7deg);
    }

    .new_faqsection_document_icon::before {
        content: "";
        position: absolute;
        width: 22px;
        height: 27px;
        top: -6px;
        left: -7px;
        border: 2px solid #222222;
        border-radius: 3px;
        background: #eeeeee;
    }

    .new_faqsection_document_icon span {
        position: absolute;
        z-index: 2;
        top: 10px;
        left: 7px;
        width: 11px;
        height: 2px;
        background: #222222;
        box-shadow:
            0 5px 0 #222222,
            0 10px 0 #222222;
    }


    /* Contact Button */

    .new_faqsection_contact_button {
     
            padding: 10px 13px;
        border: 1px solid #999999;
        border-radius: 16px;
        background: transparent;
        color: #333333;
        font-family: inherit;
        font-size: 11px;
        line-height: 1;
        cursor: pointer;
        transition:
            background-color 0.2s ease,
            border-color 0.2s ease;
    }

    .new_faqsection_contact_button:hover {
        background: #ffffff;
        border-color: #777777;
    }

       .new_faqsection_contact_button a{text-decoration:none;}

    /* Mobile */

    @media (max-width: 767px) {

        .new_faqsection {
            padding: 40px 0;
        }

        .new_faqsection_container {
            padding: 0 15px;
        }

        .new_faqsection_title {
            font-size: 23px;
        }

        .new_faqsection_subtitle {
            margin-top: 9px;
            font-size: 12px;
        }

        .new_faqsection_header {
            margin-bottom: 22px;
        }

        .new_faqsection_question {
            min-height: 52px;
            padding: 0 14px;
            font-size: 14px;
        }

        .new_faqsection_answer p {
            padding: 0 14px 16px;
            font-size: 12px;
            line-height: 1.6;
        }

        .new_faqsection_contact {
            padding: 14px;
            gap: 12px;
        }

        .new_faqsection_contact_text h3 {
            font-size: 15px;
        }

        .new_faqsection_contact_text p {
            font-size: 10px;
        }

        .new_faqsection_document_icon {
            display: none;
        }

        .new_faqsection_contact_action {
            gap: 0;
        }

        .new_faqsection_contact_button {
            white-space: nowrap;
        }
    }