﻿
@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;
}
}