/* Custom Styles for Travel Inquiry Form */
.travel-form-wrap {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    color: #fff;
    width: 100%;
    max-width: 1200px;
}

.form-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.form-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.form-tab i {
    font-size: 18px;
}

.form-tab.active {
    background: #d39f24;
    /* Gold color from image */
    color: #fff;
}

.form-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.trip-type-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.radio-group {
    display: flex;
    gap: 25px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
}

.radio-item input {
    accent-color: #C5A059;
    width: 18px;
    height: 18px;
}

.form-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr auto;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.form-field {
    padding: 15px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.form-field:last-of-type {
    border-right: none;
}

.form-field label {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    font-weight: 700;
}

.form-field input,
.form-field select {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 0;
    height: auto;
}

.form-field input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-field .sub-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.btn-search {
    background: #d39f24;
    border: none;
    color: #fff;
    padding: 0 40px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search:hover {
    background: #b08d4a;
}

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

    .form-field {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .btn-search {
        grid-column: span 2;
        padding: 20px;
    }
}

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

    .btn-search {
        grid-column: span 1;
    }

    .trip-type-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Featured Tours Section */
.featured-tours-sec {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #0B1C2E;
    /* Dark blue from image */
}

.bg-text-featured {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -85%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.tour-card {
    background: #18161d;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: 0.3s;
    height: 100%;
    margin-bottom: 20px;
    padding: 20px;
}

.tour-card:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 312px;
    height: 312px;
    background: linear-gradient(261.14deg, #0e228f 20.53%, #1c46ff 69.42%);
    filter: blur(100px);
    -webkit-filter: blur(100px);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-card:hover:before {
    opacity: 1;
    visibility: visible;
}

.tour-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 13px;
}

.tour-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tour-wishlist:hover {
    background: #ff4d4d;
    color: #fff;
}

.tour-content {
    padding: 20px;
}

.tour-brand {
    display: block;
    margin-bottom: 10px;
    height: 20px;
}

.tour-brand img {
    height: 100%;
}

.tour-location {
    font-size: 12px;
    color: #0066cc;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.tour-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.tour-duration {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.tour-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tour-tag {
    font-size: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #0066cc;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.tour-price-wrap .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
}

.tour-price {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.tour-price span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.btn-view-deal {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: 0.3s;
}

.btn-view-deal:hover {
    background: #d39f24;
    color: #fff;
}

/* Swiper Nav Adjustments */
.featured-tours-sec .swiper-button-next,
.featured-tours-sec .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: #d39f24;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.featured-tours-sec .swiper-button-next:after,
.featured-tours-sec .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 900;
}

/*--------------------------------------------------
    12. Large Featured Deal Card (Monza)
---------------------------------------------------*/

.large-featured-card {
    background-color: #232228;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.large-featured-header {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 20px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    overflow: hidden;
}

.large-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 34, 65, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.large-featured-header-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.large-featured-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.large-featured-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.large-featured-price-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.duration-badge-big {
    display: flex;
    align-items: center;
    color: #ffd700;
    font-weight: 700;
}

.duration-badge-big .num {
    font-size: 64px;
    line-height: 1;
    margin-right: 10px;
}

.duration-badge-big .text-part {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.duration-badge-big .text-part small {
    font-size: 10px;
    text-transform: uppercase;
}

.price-amount-big {
    font-size: 80px;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
    display: flex;
    align-items: baseline;
}

.price-amount-big .currency {
    font-size: 40px;
    margin-right: 2px;
}

.price-amount-big .pp {
    font-size: 20px;
    margin-left: 2px;
}

.large-featured-tagline {
    font-size: 13px;
    font-weight: 400;
    color: #ccc;
    max-width: 80%;
    margin: 0 auto;
}

.large-featured-body {
    padding: 25px 30px;
    background-color: #232228;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.large-deal-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.large-deal-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.large-deal-info p {
    font-size: 14px;
    color: #a0a0a0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.large-deal-tags {
    display: flex;
    gap: 10px;
}

.large-deal-tags .deal-tag {
    background-color: #fff;
    color: #0b2241;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.large-deal-tags .deal-tag i {
    color: #0b2241;
}

.large-deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.large-deal-price-col {
    display: flex;
    flex-direction: column;
}

.large-deal-price-col .label {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 2px;
}

.large-deal-price-col h4 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.large-deal-price-col h4 small {
    font-size: 14px;
    font-weight: 400;
    color: #a0a0a0;
}

.btn-view-deal-large {
    background-color: #0d284f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-view-deal-large:hover {
    background-color: #1a427d;
    color: #fff;
}

.featured-tours-sec .swiper-button-next:hover,
.featured-tours-sec .swiper-button-prev:hover {
    background: #fff;
    color: #d39f24;
}

/*--------------------------------------------------
    13. Horizontal Travel Inquiry Form (Header)
---------------------------------------------------*/

.travel-form-wrap-horizontal {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px 30px;
    margin-top: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 15px;
}

.form-header-row .form-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.form-tabs-inline {
    display: flex;
    gap: 15px;
}

.form-tabs-inline .tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.form-tabs-inline .tab-btn i {
    font-size: 16px;
}

.form-tabs-inline .tab-btn.active,
.form-tabs-inline .tab-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.form-grid-horizontal {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.form-field-hz {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.form-field-hz.wide {
    flex: 1.5;
}

.form-field-hz:last-of-type {
    border-right: none;
    padding-right: 0;
}

.form-field-hz label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 8px;
}

.input-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-with-icon i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.input-with-icon input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    outline: none;
}

.input-with-icon input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-search-dark {
    background-color: #0b1a30;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    height: 52px;
    transition: 0.3s ease;
    white-space: nowrap;
}

.btn-search-dark:hover {
    background-color: #15315b;
}

@media (max-width: 991px) {
    .form-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .form-grid-horizontal {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .form-field-hz {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }

    .form-field-hz:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* ===== INSTAGRAM FEED GRID ===== */
.insta-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 80px);
    gap: 6px;
}

.insta-item {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 6px;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insta-item .insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(103, 65, 217, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    font-size: 1.3rem;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* ===== WE ACCEPT PAYMENT BADGES ===== */
.we-accept-title {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 14px 0 10px;
}

.we-accept-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 220px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #222;
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.payment-badge i {
    font-size: 1.3rem;
    color: #222;
}

.payment-badge.visa i       { color: #1a1f71; }
.payment-badge.mastercard i { color: #eb001b; }
.payment-badge.amex i       { color: #007bc1; }
.payment-badge.paypal i     { color: #003087; }
.payment-badge.applepay i   { color: #000; }
.payment-badge.googlepay i  { color: #4285f4; }
.payment-badge.klarna       { background: #ffb3c7; color: #000; }
.payment-badge.clearpay     { background: #b2fce4; color: #000; }
.payment-badge.link         { background: #625afa; color: #fff; }

/* Contact Us Dark Theme Support */
.contact-dark-sec {
    background-color: #0B1C2E;
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.contact-dark-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(30,58,138,0.2) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(211,159,36,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.contact-info-wrap {
    padding-right: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-info-wrap h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}
.contact-info-wrap h4 {
    color: #d39f24;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.contact-info-wrap p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 50px;
}
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    transition: transform 0.3s ease;
}
.contact-info-list li:hover {
    transform: translateX(5px);
}
.contact-info-list li:last-child {
    margin-bottom: 0;
}
.contact-info-list .icon {
    width: 65px;
    height: 65px;
    background: rgba(211, 159, 36, 0.1);
    border: 1px solid rgba(211, 159, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #d39f24;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.contact-info-list li:hover .icon {
    background: #d39f24;
    color: #fff;
}
.contact-info-list .info-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-info-list .info-body h5 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.contact-info-list .info-body p, 
.contact-info-list .info-body a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info-list .info-body a:hover {
    color: #d39f24;
}

/* Contact Form */
.contact-form-dark {
    background: #111e30;
    padding: 60px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.contact-form-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d39f24, #1c46ff);
}
.contact-form-dark h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}
.contact-form-dark > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    font-size: 16px;
}
.contact-form-dark .form-group {
    margin-bottom: 25px;
}
.contact-form-dark .form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-form-dark .form-group label span {
    color: #ff4d4d;
}
.contact-form-dark .form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    padding: 16px 24px;
    height: auto;
    font-size: 16px;
    transition: all 0.3s ease;
    font-weight: 500;
}
.contact-form-dark .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #d39f24;
    box-shadow: 0 0 0 4px rgba(211, 159, 36, 0.1);
    outline: none;
}
.contact-form-dark textarea.form-control {
    height: 160px;
    resize: none;
}
.contact-form-dark .btn-send {
    background: #d39f24;
    color: #fff;
    border: none;
    padding: 18px 45px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(211, 159, 36, 0.2);
}
.contact-form-dark .btn-send:hover {
    background: #b08d4a;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(211, 159, 36, 0.3);
}

@media (max-width: 991px) {
    .contact-info-wrap {
        padding-right: 0;
        margin-bottom: 60px;
    }
    .contact-form-dark {
        padding: 40px 30px;
    }
}