﻿


.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: #ffa400;
    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: #171002;
    padding: 25px 20px;
    color: #ffffff;
}

.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: 16px;
    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: 30px;
    border: none;
    outline: none;
    font-size: 14px;
}

.all_new_footer .subscribe-box button {
    background: #faaa15;
    border: none;
    padding: 0 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
}

.all_new_footer .promo-text {
    font-size: 16px;
    margin-bottom: 0px;
}
.subscribe_bg{  
    margin-bottom: 16px;}



.all_new_footer .promo-text span {
    background: #faaa15;
    padding: 4px 8px;
    border-radius: 30px;
    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;
}

.contact-info ul li{margin-bottom:10px;}

.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: #faaa15;
}

.payment_methodsnew{margin:0;display: flex;
    padding: 0;
    list-style: none;}
.payment_methodsnew img{width:58px;}

.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: #faaa15;
    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: 15px;
    text-align: center;
}

.links_heading{font-size:18px;}
.contact-info ul li a{color: #fff;
    text-decoration: none;    font-size: 18px;
    font-weight: 600;}

.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; padding-bottom:1rem;}


/*<<<<<<<<<<<<<<<-------------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;
}




.tour_categories{
padding:50px 0;
}


.tour_header{
text-align:left;
margin-bottom:40px;

}

.tour_title h2{
font-size:46px;
font-weight:600;
margin-bottom:8px;
color:#333;
}

.tour_title p{
color:#6c757d;
font-size:18px;
color:#666;
}

.tour_view_btn{
background:black;
color:white;
padding:14px 28px;
border-radius:40px;
text-decoration:none;
font-weight:600;
}

/* grid */

.tour_grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* card */

.tour_card{
    background: #f9ba48;
border-radius:28px;
padding:18px;
transition:.3s;
border:1px solid #e6e6e6;
}

.tour_card:hover{
transform:translateY(-6px);
}

.tour_card img{
width:100%;
height:160px;
object-fit:cover;
border-radius:18px;
margin-bottom:16px;
}

.tour_card_content{
display:flex;
justify-content:space-between;
align-items:center;
}

.tour_card h4{
font-size:20px;
margin-bottom:6px;
}

.tour_card p{
color:#7a7a7a;
font-size:14px; display:none;
}

.tour_arrow{
width:36px;
height:36px;
background:#f0f0f0;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:16px;
}

/* responsive */

@media(max-width:1100px){

.tour_grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.tour_title h2{
font-size:32px;
}

.tour_grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:500px){

.tour_grid{
grid-template-columns:1fr;
}

}


.new_why_section{
background:#f6f7fb;
padding-top: 9rem;
}


/* title */

.new_why_title{
text-align:center;
margin-bottom:60px;
}

.new_why_title h2{
font-size:42px;
font-weight:700;
margin-bottom:10px;
}

.new_why_title p{
color:#7a7a7a;
font-size:16px;
}

/* layout */

.new_why_grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
}

/* images */

.new_why_images{
position:relative;
height:420px;
}

.new_img_big img{
width:340px;
height:340px;
object-fit:cover;
border-radius:50%;
}

.new_img_small{
position:absolute;
bottom:-10px;
right:40px;
}

.new_img_small img{
width:260px;
height:260px;
object-fit:cover;
border-radius:50%;
border:10px solid #f6f7fb;
}

/* content */

.new_why_item{
display:flex;
gap:20px;
margin-bottom:30px;
align-items:flex-start;
}

.new_badge{
padding:6px 14px;
border-radius:20px;
font-weight:600;
font-size:14px;
color:white;
}

.green{background:#1ab394;}
.yellow{background:#ffb100;}
.purple{background:#6c63ff;}
.blue{background:#1e73be;}

.new_why_item h4{
font-size:18px;
margin-bottom:6px;
}

.new_why_item p{
font-size:14px;
color:#7a7a7a;
line-height:1.6;
max-width:430px;
}

/* responsive */

@media(max-width:900px){

.new_why_grid{
grid-template-columns:1fr;
gap:50px;
}

.new_why_images{
height:auto;
text-align:center;
}

.new_img_small{
position:relative;
right:auto;
bottom:auto;
margin-top:-80px;
}

}


.sky_deals_section{
padding:40px 0;
}

.sky_deal_card{
background:#f2f2f2;
border-radius:16px;
padding:24px;
border:1px solid #eee;
height:100%;
display:flex;
flex-direction:column;
justify-content:space-between;
transition:all .25s ease;
}

.sky_deal_card:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* route */

.sky_route{
font-size:16px;
font-weight:600;
color:#333;
line-height:1.4;
margin-bottom:8px;
}

/* depart */

.sky_depart{
font-size:14px;
color:#666;
margin-bottom:8px;
}

/* price */

.sky_price{
font-size:28px;
font-weight:700;
color:#000;
margin-bottom:18px;
}

.sky_price span{
font-size:14px;
color:#999;
margin-left:2px;
}

/* button */

.sky_book_btn{
background:#006189;
color: #fff;
border:none;
padding:10px 16px;
border-radius:28px;
font-size:15px;
font-weight:700;
cursor:pointer;
transition:all .25s ease;
}
.sky_book_btn:hover{background:#4DA3D9;}

.skyfaq_section_main{padding:1.2rem;border-radius:12px;margin-bottom:1.5rem;}
.skyfaq_title{
text-align:center;
font-size:38px;
font-weight:700;
margin-bottom:50px;
}



/* question */

.skyfaq_question{
width:100%;
background:none;
border:none;
display:flex;
justify-content:space-between;
align-items:center;
padding:16px 10px;
font-size:18px;
font-weight:600;
cursor:pointer;
}

/* icon */

.skyfaq_icon{
font-size:22px;
transition:.3s;
}

/* answer */

.skyfaq_answer{
max-height:0;
overflow:hidden;
transition:max-height .35s ease;
padding:0 24px;
}

.skyfaq_answer p{
padding-bottom:20px;
color:#555;
line-height:1.6;
}

/* active */

.skyfaq_item.active .skyfaq_answer{
max-height:200px;
}

.skyfaq_item.active .skyfaq_icon{
transform:rotate(45deg);
}

.new_whychoose{
    
       padding-top: 2rem;
    padding-bottom: 2rem;
}

.new_whychoose_heading h2{
    font-size:36px;
    font-weight:600;
    margin-bottom:10px;
}

.new_whychoose_heading p{
    color:#666;
    margin:auto;
    margin-bottom:50px;
}

.new_choose_card{
    background:#f7f7f7;
    padding:20px;
    border-radius:20px;
    height:100%;
    transition:0.3s;
    border:1px solid #eee;
    text-align:left;
}

.new_choose_card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.new_choose_icon{
   font-size: 26px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    outline: 1px solid #f7f7f7;
    margin-bottom: 16px;
}
.icon1{background:#e8f3ff !important;}
.icon2{background:#e9f9f0 !important;}
.icon3{background:#fff3e6 !important;}
.icon4{background:#f3e9ff !important;}


.new_choose_icon svg{width:30px;height:30px;stroke:#000;stroke-width:1.2;}
.new_choose_card h3{
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
}

.new_choose_card p{
    font-size:14px;
    color:#000000;
    line-height:1.6;
}




/* left image */

.skyfaq_image img{
    width:100%;
    border-radius:20px;
    object-fit:cover;
}

/* heading */

.skyfaq_header h2{
    font-size:36px;
    font-weight:600;
    margin-bottom:10px;
}

.skyfaq_header p{
    color:#6c757d;
    margin-bottom:30px;
}

/* faq */

.skyfaq_wrap{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.skyfaq_item{
    background:#fff;
    overflow:hidden;
        border-bottom: 1px solid #dadada;
}

.skyfaq_section{background: aliceblue;}

.skyfaq_question{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
    background:none;
    border:none;
    font-size:16px;
    font-weight:500;
    cursor:pointer;
}

.skyfaq_icon{
    font-size:20px;
    transition:0.3s;
}

.skyfaq_answer{
    max-height:0;
    overflow:hidden;
    transition:0.35s ease;
}

.skyfaq_answer p{
  
    margin:0;
    color:#6c757d;
    line-height:1.6;
}

.skyfaq_item.active .skyfaq_answer{
    max-height:200px;
}

.skyfaq_item.active .skyfaq_icon{
    transform:rotate(45deg);
}




.skycta_card{
    position:relative;
    background:linear-gradient(135deg,#0F3D3E,#184f50);
    border-radius:24px;
      padding: 14px 20px;
    text-align:center;
    overflow:hidden;
}

/* decorative glow */

.skycta_card::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.skycta_card::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(255,255,255,0.06);
    border-radius:50%;
    bottom:-120px;
    left:-120px;
}

/* text */

.skycta_heading{
    font-size:38px;
    font-weight:600;
    color:#fff;
    margin-bottom:12px;
}

.skycta_text{
    color:#d4e4e4;
    font-size:16px;
    margin-bottom:14px;
}

/* button */

.skycta_callbtn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    background:#fff;
    color:#0F3D3E;
    font-weight:600;
    border-radius:40px;
    text-decoration:none;
    transition:0.3s;
}

.skycta_callbtn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* icon */

.skycta_icon{
    font-size:18px;
}

/* responsive */

@media (max-width:768px){

.skycta_heading{
    font-size:28px;
}

.skycta_card{
    padding:50px 25px;
}

}
.new_Destinations_img{position:relative;overflow:hidden;border-bottom:4px solid #B90308;}
.new_Destinations_img img{width:100%;transition:0.5s;height:225px;object-fit:cover;}
.new_Destinations_main{width:100%;background:linear-gradient(to bottom,#5c8dad,#6fa0bc,#8fb7cf,#ffffff);border-radius:12px;overflow:hidden;margin-bottom:0.9rem;box-shadow:0 0 12px 2px #e1e1e15c;}
.new_Destinations_text{display:flex;justify-content:space-between;padding:12px 12px;align-items:center;}
.new_Destinations_left strong{font-size:20px;font-weight:700;color:#333;}
.new_Destinations_right{width:35px;height:35px;background:#4DA3D9;border-radius:100%;display:flex;justify-content:center;align-items:center;}
.new_Destinations_right svg{stroke:#ffffff;}
.new_Destinations_right:hover svg{transform:rotate(45deg);transition:0.5s;}
.new_Destinations_left span{font-size:20px;font-weight:700;color:#4DA3D9;}
.new_Destinations_left p{color:#666;font-size:15px;font-weight:400;display:none;}
.new_Destinations_main:hover .new_Destinations_img img{transform:scale(1.2)}
.new_Destinations_big img{height:520px;object-fit:cover;}
.zxq_cta_section_921{
    width:100%;
    padding:40px 20px;
    background: linear-gradient(135deg,#006189,#4DA3D9);
    border-radius:20px;
    margin:20px auto;
}

.zxq_cta_container_921{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px;
}

.zxq_cta_text_921 h2{
    color:#fff;
    font-size:36px;
    font-weight:700;
    margin-bottom:10px;
}

.zxq_cta_text_921 p{
    color:#e9f3ff;
    font-size:18px;
}

.zxq_cta_button_921 a{
    display:inline-block;
    padding:16px 35px;
    background:#ffffff;
    color:#006189;
    font-size:18px;
    font-weight:600;
    border-radius:40px;
    text-decoration:none;
    transition:0.3s;
}

.zxq_cta_button_921 a:hover{
    background:#006189;
    color:#fff;
}
@media(max-width:768px){

.zxq_cta_container_921{
    flex-direction:column;
    text-align:center;
}

.zxq_cta_text_921 h2{
    font-size:28px;
}

.zxq_cta_text_921 p{
    font-size:16px;
}

}

.rf_price_area button{display:none;}


.flight_deals_section{
    padding:40px 0;
}

.flight_deals_grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.deal_card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 25px;
    border-radius:16px;
    background:linear-gradient(90deg, #f6f6f6, #ededed);
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.deal_left{
    display:flex;
    align-items:center;
    gap:40px;
}

.deal_city h3{
    font-size:26px;
    font-weight:700;
    margin:0;
}

.deal_city span{
    font-size:14px;
    color:#6b7280;
}

.deal_flight{
    text-align:center;
}

.deal_icon{
    display:block;
    color:#faaa15;
    font-size:18px;
}

.deal_date{
    font-size:14px;
    color:#6b7280;
}

.deal_right{
    display:flex;
    align-items:center;
    gap:25px;
}

.deal_price{
    text-align:right;
}

.old_price{
    display:none;
    font-size:14px;
    color:#9ca3af;
    text-decoration:line-through;
}

.new_price{
    font-size:28px;
    font-weight:700;
    color:#248cd0!important;
}

.deal_btn{
    background:#faaa15;
    padding:12px 22px;
    border-radius:25px;
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.deal_btn:hover{
    transform:translateY(-2px);
    box-shadow:0 5px 12px rgba(0,0,0,0.2);
}

@media(max-width:768px){
    .flight_deals_grid{
        grid-template-columns:1fr;
    }

    .deal_left{
        gap:20px;
    }

    .deal_city h3{
        font-size:22px;
    }
}


.deal_section_new{
    padding:30px 0px;
}



.deal_grid_new{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.deal_card_new{
    background:#eeeeee;
    padding:25px 20px;
    border-radius:20px;
    text-align:center;
    transition:0.3s;
}

.deal_card_new h3{
    font-size:18px;
    color:#222;
    margin-bottom:10px;
    font-weight:600;
}

.deal_date_new{
    font-size:14px;
    color:#6b7a8c;
    margin-bottom:12px;
}

.deal_price_new{
    font-size:26px;
    font-weight:700;
    color:#2f5fb8;
    margin-bottom:15px;
}

.deal_btn_new{
    display:inline-block;
    background:#006189;
    color:#fff;
    padding:10px 18px;
    border-radius:20px;
    text-decoration:none;
    font-weight:600;
}

.deal_btn_new:hover{
    background:#b9241c;
}

/* Responsive */

@media (max-width:992px){
.deal_grid_new{
grid-template-columns:repeat(2,1fr);
}
}

@media (max-width:576px){
.deal_grid_new{
grid-template-columns:1fr;
}
}


