@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* Add custom heading font */
@font-face {
    font-family: 'Riccione Serial Medium';
    src: url('https://primeholidaytravels.com/wp-content/uploads/2026/03/Riccione-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Apply custom heading font */
.pkg-hero-wrapper h1,
.crystel-pkg-wrapper h1,
.crystel-pkg-wrapper h2,
.crystel-pkg-wrapper h3,
.crystel-pkg-wrapper h4,
.crystel-pkg-wrapper h5,
.crystel-pkg-wrapper h6,
.top-vacations-section h2,
.tv-header h2,
.tv-content-box h3,
.parallax-content-left h2,
.ub-content h2,
.phone-widget h4,
.pricing-widget h3,
.overview-title,
.pht-sidebar-header span,
.pht-filter-group label {
    font-family: 'Riccione Serial Medium', sans-serif !important;
    font-weight: normal !important;
}

/* Prevent horizontal scroll on windows caused by 100vw */
body.single-deal {
    overflow-x: hidden;
}

/* Hero section */
.pkg-hero-wrapper {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    box-sizing: border-box;
}

.pkg-hero-wrapper * {
    box-sizing: border-box;
}

.pkg-hero-wrapper h1 {
    font-size: 46px;
    font-weight: 800;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.pkg-hero-wrapper p {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .pkg-hero-wrapper {
        height: 250px;
    }

    .pkg-hero-wrapper h1 {
        font-size: 32px;
    }

    .pkg-hero-wrapper p {
        font-size: 14px;
    }
}

/* Main Content */
.crystel-pkg-wrapper {
    font-family: 'Montserrat', sans-serif;
    color: #082C50;
    /* Primary Brand Color: Deep Navy Blue */
    width: 100%;
    margin: 0;
    padding: 60px 0;
    /* Changed to use soft background wrapper properly */
    box-sizing: border-box;
    background-color: #F7F9FA;
    /* Section Background: Soft Sand / Off-White */
}

.crystel-pkg-wrapper * {
    box-sizing: border-box;
}

.crystel-pkg-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: flex-start;
}

.crystel-left-col {
    flex: 1;
    width: calc(100% - 380px);
}

/* Image Gallery */
.crystel-gallery {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.crystel-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crystel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 10;
    transition: transform 0.2s ease, color 0.2s ease;
}

.crystel-arrow:hover {
    color: #FFB81C;
    /* Tertiary Accent: Sun Yellow */
    transform: translateY(-50%) scale(1.1);
}

.crystel-arrow.left {
    left: 20px;
}

.crystel-arrow.right {
    right: 20px;
}

/* Section Title */
.overview-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
    color: #082C50;
    /* Primary Brand Color: Deep Navy Blue */
    margin-bottom: 25px;
}

.overview-title .icon-circle {
    background-color: #0085A8;
    /* Secondary Accent: Ocean Teal */
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

/* Tabs */
.crystel-tabs {
    display: flex;
    margin-bottom: 30px;
    align-items: stretch;
}

.crystel-tab {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    user-select: none;
}

.crystel-tab:hover {
    filter: brightness(1.05);
}

.crystel-tab:active {
    transform: scale(0.98);
}

.crystel-tab.active {
    background-color: #ffffff;
    color: #F38220;
    /* Primary Action Color: Vibrant Orange */
    border-bottom: 3px solid #F38220;
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

.crystel-tab.active i {
    color: #F38220;
    /* Primary Action Color: Vibrant Orange */
}

.crystel-tab.inactive {
    background-color: #0085A8;
    /* Secondary Accent: Ocean Teal */
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 3px solid transparent;
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
}

.crystel-tab.inactive:last-child {
    border-right: none;
}

/* Tab Content */
.tab-content-container {
    position: relative;
    min-height: 300px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 15px;
    margin-bottom: 40px;
    padding: 0 10px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #082C50;
    /* Primary Brand Color: Deep Navy Blue */
    text-transform: uppercase;
}

.amenity-item i {
    color: #0085A8;
    /* Secondary Accent: Ocean Teal */
    font-size: 32px;
}

/* Highlights */
.highlights-box {
    background-color: #ffffff;
}

.highlights-list {
    list-style: none;
    padding: 0 10px;
    margin: 0;
}

.highlights-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #082C50;
    /* Primary Brand Color: Deep Navy Blue */
    line-height: 1.6;
}

.highlights-list li::before {
    content: '\f111';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 6px;
    color: #FFB81C;
    /* Tertiary Accent: Sun Yellow */
    font-size: 8px;
}

.placeholder-content {
    padding: 20px 10px;
    color: #082C50;
    /* Primary Brand Color: Deep Navy Blue */
    font-size: 15px;
    line-height: 1.6;
}

/* Sidebar */
.crystel-right-col {
    width: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.pricing-widget {
    background-color: #082C50;
    /* Primary Brand Color: Deep Navy Blue */
    padding: 30px 25px;
    border-radius: 8px;
    color: #ffffff;
    margin-bottom: 25px;
}

.pricing-widget h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #F38220;
    /* Primary Action Color: Vibrant Orange */
}

.pricing-widget label {
    font-size: 12px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.pricing-widget select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 4px;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #333333;
    margin-bottom: 25px;
    appearance: none;
    background: #ffffff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="5" viewBox="0 0 10 5"><path fill="%23333" d="M0 0l5 5 5-5z"/></svg>') no-repeat right 15px center;
    background-size: 10px;
    cursor: pointer;
}

.pricing-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.pricing-perks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 500;
}

.pricing-perks li i {
    color: #0085A8;
    /* Secondary Accent: Ocean Teal */
    margin-top: 2px;
    font-size: 14px;
}

.btn-inquire {
    width: 100%;
    background-color: #F38220;
    /* Primary Action Color: Vibrant Orange */
    color: #ffffff !important;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-inquire:hover {
    background-color: #d66c11;
    /* Darker orange for hover */
}

.btn-inquire:active {
    transform: scale(0.98);
}

.dotted-divider {
    width: 100%;
    border-top: 2px dotted #cccccc;
    margin: 0 0 25px 0;
}

.phone-widget {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.phone-widget i {
    font-size: 24px;
    color: #0085A8;
    /* Secondary Accent: Ocean Teal */
    margin-bottom: 15px;
    transform: scaleX(-1);
}

.phone-widget h4 {
    font-size: 18px;
    font-weight: 600;
    color: #082C50;
    /* Primary Brand Color: Deep Navy Blue */
    margin: 0 0 15px 0;
}

.phone-widget .number {
    font-size: 20px;
    font-weight: 700;
    color: #F38220;
    /* Primary Action Color: Vibrant Orange */
    margin: 0 0 10px 0;
}

.phone-widget .hours {
    font-size: 12px;
    color: #082C50;
    /* Primary Brand Color: Deep Navy Blue */
    margin: 0;
}

/* Responsiveness */
@media (max-width: 992px) {
    .crystel-pkg-container {
        flex-direction: column;
    }

    .crystel-left-col {
        width: 100%;
    }

    .crystel-right-col {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .crystel-tabs {
        flex-wrap: wrap;
    }

    .crystel-tab {
        flex: 1 1 50%;
        border-right: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }

    .crystel-gallery {
        height: 300px;
    }
}

/* ============================================================
   DEAL SECTION CARDS (Shortcode Grid)
   ============================================================ */

.top-vacations-section {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f6f7;
    padding: 80px 5%;
    width: 100%;
    box-sizing: border-box;
}

.top-vacations-section * {
    box-sizing: border-box;
}

/* --- SECTION HEADER --- */
.tv-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.tv-header h2 {
    color: #082C50;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 15px 0;
}

.tv-header-line {
    width: 40px;
    height: 3px;
    background-color: #0085A8;
    margin: 0 auto 20px auto;
}

.tv-header p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- GRID LAYOUT --- */
.tv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- UNIFIED CARD STYLING --- */
.tv-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(8, 44, 80, 0.08);
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-bottom 0.4s ease;
    border-bottom: 4px solid transparent;
}

.tv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(8, 44, 80, 0.15);
    border-bottom: 4px solid #ea580c;
}

/* Top Image Section */
.tv-image-box {
    position: relative;
    width: 100%;
    height: 240px;
    background-color: #f8fafc;
    overflow: hidden;
}

.tv-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.tv-card:hover .tv-image-box img {
    transform: scale(1.08);
    /* Smooth zoom */
}

/* Corner Ribbon */
.tv-ribbon {
    position: absolute;
    top: 25px;
    left: -35px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    width: 150px;
    text-align: center;
    padding: 6px 0;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    transform: rotate(-45deg);
    z-index: 5;
    box-shadow: 0 4px 6px rgba(234, 88, 12, 0.3);
    letter-spacing: 0.1em;
}

/* Content Box */
.tv-content-box {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tv-content-box h3 {
    font-family: 'Riccione Serial Medium', serif !important;
    color: #082C50;
    font-size: 24px;
    font-weight: normal !important;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

/* Icons Block */
.tv-icons {
    display: flex;
    gap: 8px;
    color: #ea580c;
    font-size: 14px;
    margin-bottom: 16px;
    background: #fff7ed;
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: 9999px;
    border: 1px solid #ffedd5;
}

/* Duration Badge */
.tv-duration {
    background-color: #082C50;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 16px;
}

/* Description */
.tv-desc {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

/* Dashed Divider */
.tv-divider {
    border-top: 1px dashed #cbd5e1;
    margin: auto 0 16px 0;
}

/* Pricing */
.tv-price {
    color: #475569;
    font-size: 14px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.tv-price strong {
    font-size: 22px;
    font-weight: 800;
    color: #ea580c;
}

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

@media (max-width: 768px) {
    .tv-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* ============================================================
   VACATION STYLE CARDS (Used in [pht_all_vacations])
   ============================================================ */

.pht-styles-wrapper {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    background-color: #fafbfe;
    /* Matches the hero section background */
    padding: 60px 5% 100px;
    box-sizing: border-box;
}

.pht-styles-wrapper * {
    box-sizing: border-box;
}

/* --- SECTION HEADER --- */
.pht-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.pht-badge {
    display: inline-block;
    background-color: #fff7ed;
    color: #ea580c;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    border: 1px solid #ffedd5;
}

.pht-section-header h2 {
    font-family: 'Riccione Serial Medium', serif !important;
    color: #0f172a;
    font-size: 46px;
    font-weight: normal !important;
    margin: 0;
    line-height: 1.2;
}

/* --- GRID LAYOUT --- */
.pht-styles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

/* --- PREMIUM CARD DESIGN --- */
.pht-style-card {
    position: relative;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none !important;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
    cursor: pointer;
}

.pht-style-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(234, 88, 12, 0.25);
}

/* Background Image with Smooth Zoom */
.pht-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.pht-style-card:hover .pht-card-bg {
    transform: scale(1.08);
    /* Smoother zoom than 1.1 */
}

/* Dynamic Gradient Overlay */
.pht-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.5) 40%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 2;
    transition: background 0.5s ease, opacity 0.5s ease;
}

.pht-style-card:hover .pht-card-overlay {
    /* Subtle orange burn mixing into navy on hover */
    background: linear-gradient(to bottom, rgba(234, 88, 12, 0.3) 0%, rgba(15, 23, 42, 0.7) 40%, rgba(15, 23, 42, 0.98) 100%);
}

/* Card Content Structure */
.pht-card-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    color: #ffffff;
    width: 100%;
    text-align: left;
}

.pht-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pht-style-card:hover .pht-card-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-color: #ea580c;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.4);
}

.pht-card-title {
    font-family: 'Riccione Serial Medium', serif !important;
    font-size: 32px;
    font-weight: normal !important;
    letter-spacing: normal !important;
    margin: 0 0 8px 0;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    color: #ffffff !important;
    line-height: 1.1;
}

.pht-card-count {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fed7aa;
    /* Very light orange tailwind color */
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.pht-card-count::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ea580c;
    border-radius: 50%;
    margin-right: 8px;
}

/* Premium Pill Action Button Slide-Up */
.pht-card-action {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.pht-style-card:hover .pht-card-action {
    max-height: 60px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 24px;
}

.pht-explore-text {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    background: linear-gradient(to right, #ea580c, #f97316);
    padding: 12px 24px;
    border-radius: 9999px;
    /* full pill */
    box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
}

.pht-explore-text i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.pht-style-card:hover .pht-explore-text i {
    transform: translateX(6px);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .pht-styles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .pht-style-card {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .pht-section-header h2 {
        font-size: 34px;
    }

    .pht-styles-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .pht-style-card {
        height: 380px;
    }

    /* Lock action button visible on mobile since tap doesn't hold hover */
    .pht-card-action {
        max-height: 60px;
        opacity: 1;
        transform: translateY(0);
        margin-top: 20px;
    }
}

/* ============================================================
   SPECIAL DEAL PARALLAX SECTION (Shortcode)
   ============================================================ */

.parallax-section-wrapper {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    margin: 0;
    /* Adjust padding to increase/decrease section height */
    padding: 80px 5%;
    box-sizing: border-box;
    /* PARALLAX BACKGROUND SETUP */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-section-wrapper * {
    box-sizing: border-box;
}

.parallax-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

/* --- LEFT CONTENT --- */
.parallax-content-left {
    flex: 1;
    color: #ffffff;
}

.parallax-content-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.price-drop-text {
    color: #d1ab3e;
    /* Gold/Yellow color matching the image */
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 20px 0;
}

.parallax-desc {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 90%;
    color: #ffffff;
}

.parallax-btn {
    display: inline-block;
    background-color: #009A85;
    /* Brand Teal */
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.parallax-btn:hover {
    background-color: #007c6b;
}

/* --- RIGHT CONTENT (VIDEO THUMBNAIL) --- */
.parallax-content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-thumbnail-box {
    position: relative;
    width: 100%;
    max-width: 500px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    /* Subtle white border */
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.video-thumbnail-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-thumbnail-box:hover img {
    transform: scale(1.03);
    /* Slight zoom on hover */
}

/* Play Button Overlay */
.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: #009A85;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding-left: 5px;
    /* Centers the standard play icon visually */
}

.play-icon-overlay:hover {
    background-color: #007c6b;
    transform: translate(-50%, -50%) scale(1.1);
    /* Slightly enlarge on hover */
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .parallax-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .parallax-desc {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }

    .parallax-content-left h2 {
        font-size: 28px;
    }

    .price-drop-text {
        font-size: 26px;
    }
}

/* ============================================================
   MINI SPECIAL DEALS (Universal Banner)
   ============================================================ */

.universal-banner-wrapper {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    padding: 60px 5%;
    /* Adds breathing room around the banner */
    background-color: #ffffff;
    box-sizing: border-box;
}

.universal-banner-wrapper * {
    box-sizing: border-box;
}

.ub-container {
    display: flex;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    /* Rounded corners for the whole banner */
    overflow: hidden;
    /* Ensures the image doesn't break outside the rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Soft shadow to make it pop */
}

/* --- LEFT CONTENT --- */
.ub-content {
    flex: 1;
    background-color: #bed0ce;
    /* Matched the soft grey/teal background */
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ub-content h2 {
    color: #3a4141;
    /* Dark grey */
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.ub-content p {
    color: #3a4141;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.ub-btn {
    background-color: #009A85;
    /* Brand Teal */
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.ub-btn:hover {
    background-color: #007c6b;
}

/* --- RIGHT IMAGE --- */
.ub-image {
    flex: 1;
    min-height: 300px;
    /* Ensures the image area has height on smaller screens */
    position: relative;
    align-self: stretch;
}

.ub-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    /* Makes sure the image fills the space without stretching */
    display: block;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .ub-container {
        flex-direction: column;
    }

    .ub-image {
        min-height: 250px;
    }

    .ub-content h2 {
        font-size: 26px;
    }
}

/* ============================================================
   ALL VACATIONS FILTER SIDEBAR
   ============================================================ */

.pht-filter-layout {
    display: flex;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

/* --- Sidebar Container --- */
.pht-filter-sidebar {
    width: 280px;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px -5px rgba(8, 44, 80, 0.08);
    /* Modern soft shadow */
    overflow: hidden;
    position: sticky;
    top: 30px;
}

/* --- Navy Header Panel --- */
.pht-sidebar-header {
    background: linear-gradient(135deg, #082C50 0%, #0a3a6b 100%);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pht-sidebar-header i {
    color: #ea580c;
    font-size: 18px;
}

.pht-sidebar-header span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Filter Groups --- */
.pht-filter-group {
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    background-color: #ffffff;
    margin-bottom: 0;
    border: none;
}

.pht-filter-group:last-of-type {
    border-bottom: none;
}

.pht-filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    color: #082C50;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pht-filter-group label i {
    color: #ea580c;
    font-size: 14px;
}

/* --- Custom Select Dropdowns --- */
.pht-select-wrapper {
    position: relative;
    border: 1.5px solid #e2e8f0;
    border-left: 3px solid #ea580c;
    border-radius: 8px;
    background-color: #f8fafc;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.pht-select-wrapper:hover {
    border-color: #ea580c;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.08);
}

.pht-select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #ea580c;
    font-size: 13px;
    transition: transform 0.2s ease;
}

.pht-filter-sidebar select {
    width: 100%;
    padding: 12px 35px 12px 14px;
    border: none;
    outline: none;
    appearance: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #082C50;
    cursor: pointer;
}

.pht-filter-sidebar select:focus {
    box-shadow: none;
}

.pht-select-wrapper:focus-within {
    border-color: #ea580c;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
    background-color: #ffffff;
}

/* --- Vacation Styles Group --- */
.pht-styles-group {
    padding: 20px 24px;
}

.pht-styles-group .pht-styles-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pht-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* --- Custom Checkbox Styling --- */
.pht-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    cursor: pointer;
    margin: 0 !important;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.pht-checkbox-label:hover {
    background-color: #fff7ed;
    color: #082C50 !important;
}

/* Hide native checkbox */
.pht-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Custom checkbox visual */
.pht-checkbox-text {
    position: relative;
    padding-left: 32px;
    order: 1;
    line-height: 1.4;
    user-select: none;
}

.pht-checkbox-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    background-color: #ffffff;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Checkmark icon */
.pht-checkbox-text::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    font-size: 11px;
    color: #ffffff;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Checked state */
.pht-checkbox-label input[type="checkbox"]:checked+.pht-checkbox-text::before {
    background-color: #ea580c;
    border-color: #ea580c;
    box-shadow: 0 4px 8px rgba(234, 88, 12, 0.3);
}

.pht-checkbox-label input[type="checkbox"]:checked+.pht-checkbox-text::after {
    transform: translateY(-50%) scale(1);
}

.pht-checkbox-label input[type="checkbox"]:checked+.pht-checkbox-text {
    color: #082C50;
    font-weight: 800 !important;
}

/* Hover on checkbox visual */
.pht-checkbox-label:hover .pht-checkbox-text::before {
    border-color: #ea580c;
}

/* --- Results Summary --- */
.pht-filter-results-summary {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 24px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    border-top: 1px solid #e2e8f0;
    margin: 0;
    border: none;
}

.pht-filter-results-summary #pht_results_count {
    display: inline-block;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    min-width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 50%;
    text-align: center;
    margin-bottom: 8px;
    box-shadow: 0 6px 15px -3px rgba(234, 88, 12, 0.4);
}

/* --- Clear Button --- */
.pht-clear-btn {
    display: block !important;
    width: calc(100% - 48px) !important;
    margin: 0 auto 24px auto !important;
    background-color: #082C50 !important;
    background: linear-gradient(135deg, #082C50 0%, #0a3a6b 100%) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 14px 15px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    cursor: pointer !important;
    border-radius: 9999px !important;
    /* Pill shape */
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    outline: none !important;
    box-shadow: 0 4px 6px -1px rgba(8, 44, 80, 0.2) !important;
}

.pht-clear-btn:hover,
.pht-clear-btn:focus,
.pht-clear-btn:active {
    background-color: #0a3a6b !important;
    background: linear-gradient(135deg, #0a3a6b 0%, #082C50 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px -5px rgba(8, 44, 80, 0.4) !important;
    transform: translateY(-2px) !important;
    outline: none !important;
}

.pht-clear-btn:active {
    transform: translateY(0) !important;
}

/* --- No Styles Message --- */
.pht-no-styles {
    color: #a0aec0;
    font-size: 13px;
    font-style: italic;
    padding: 10px 0;
    margin: 0;
}

/* --- Results Grid within Layout --- */
.pht-filter-results {
    flex: 1;
    transition: opacity 0.3s ease;
    min-width: 0;
}

.pht-filter-results .tv-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .pht-filter-layout {
        flex-direction: column;
    }

    .pht-filter-sidebar {
        width: 100%;
        max-width: 420px;
        margin: 0 auto 30px auto;
        position: static;
    }

    .pht-filter-results .tv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pht-filter-results .tv-grid {
        grid-template-columns: 1fr;
    }

    .pht-sidebar-header {
        padding: 18px 20px;
    }

    .pht-filter-group {
        padding: 16px 20px;
    }
}

/* ============================================================
   SINGLE DEAL NEW FIELDS (General Info & Itinerary)
   ============================================================ */

.pht-general-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
}

.pht-general-info .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pht-general-info .info-item i {
    color: #e21a22;
    /* Optional secondary accent */
    font-size: 18px;
    min-width: 20px;
    text-align: center;
}

.pht-tour-description {
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 15px;
    color: #444;
}

.pht-itinerary-timeline {
    padding: 10px 0;
}

.itinerary-day {
    margin-bottom: 25px;
    border-left: 3px solid #e21a22;
    padding-left: 20px;
    position: relative;
}

.itin-circle {
    position: absolute;
    left: -12px;
    top: 2px;
    width: 20px;
    height: 20px;
    background: #e21a22;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #fff;
}

.itinerary-day h4 {
    margin-top: 0;
    color: #082C50;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.itin-meta {
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.itin-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.itin-meta i {
    color: #0085A8;
}

.itin-desc {
    line-height: 1.6;
    color: #444;
    font-size: 14px;
}

/* ============================================================
   DESTINATION AUTO-SLIDER (BENTO GRID)
   ============================================================ */
.pht-dest-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 5%;
    box-sizing: border-box;
    position: relative;
    /* Clean natural height mapping using Grid */
}

/* Layer Slides using Grid cell */
.pht-slides-wrapper {
    display: grid;
}

.pht-ds-slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
    position: relative; 
}

.pht-ds-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Header Styles */
.pht-ds-header {
    margin-bottom: 30px;
    text-align: left;
}

.pht-ds-subtitle {
    color: #F38220;
    /* Orange */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.pht-ds-title {
    font-family: 'Riccione Serial Medium', serif !important;
    font-size: 42px;
    font-weight: normal;
    color: #082C50;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.pht-ds-title .highlight {
    color: #F38220;
}

.pht-ds-desc {
    font-family: 'Montserrat', sans-serif;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
    margin: 0;
}

/* Bento Grid System */
.pht-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 220px;
    gap: 12px;
    margin-bottom: 30px;
}

/* Grid Item Placements (Default 5 items) */
.pht-bento-item.item-0 { grid-column: 1 / 3; grid-row: 1 / 2; }
.pht-bento-item.item-1 { grid-column: 3 / 4; grid-row: 1 / 2; }
.pht-bento-item.item-2 { grid-column: 1 / 2; grid-row: 2 / 3; }
.pht-bento-item.item-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
.pht-bento-item.item-4 { grid-column: 3 / 4; grid-row: 2 / 3; }

/* Grid Item Placements (4 items) */
.count-4 .pht-bento-item.item-0 { grid-column: 1 / 4; grid-row: 1 / 2; }
.count-4 .pht-bento-item.item-1 { grid-column: 1 / 2; grid-row: 2 / 3; }
.count-4 .pht-bento-item.item-2 { grid-column: 2 / 3; grid-row: 2 / 3; }
.count-4 .pht-bento-item.item-3 { grid-column: 3 / 4; grid-row: 2 / 3; }

/* Grid Item Placements (3 items) */
.count-3 .pht-bento-item.item-0 { grid-column: 1 / 3; grid-row: 1 / 3; }
.count-3 .pht-bento-item.item-1 { grid-column: 3 / 4; grid-row: 1 / 2; }
.count-3 .pht-bento-item.item-2 { grid-column: 3 / 4; grid-row: 2 / 3; }

/* Grid Item Placements (2 items) */
.count-2 .pht-bento-item.item-0 { grid-column: 1 / 3; grid-row: 1 / 3; }
.count-2 .pht-bento-item.item-1 { grid-column: 3 / 4; grid-row: 1 / 3; }

/* Grid Item Placements (1 item) */
.count-1 .pht-bento-item.item-0 { grid-column: 1 / 4; grid-row: 1 / 3; }

/* Item Styling */
.pht-bento-item {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pht-bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
}

.pht-bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%);
    z-index: 1;
    transition: background 0.3s ease;
}

.pht-bento-item:hover .pht-bento-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 60%);
}

.pht-bento-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
}

.pht-bento-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.item-0 .pht-bento-content h3 {
    font-size: 22px;
}

/* Main image gets bigger text */

.pht-bento-meta {
    display: flex;
    gap: 15px;
    color: #f8fafc;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.pht-bento-meta i {
    color: #ffffff;
    margin-right: 5px;
}

/* Footer Button */
.pht-ds-footer {
    text-align: center;
}

.pht-ds-btn {
    display: inline-block;
    background-color: #F38220;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none !important;
    transition: background-color 0.3s ease;
}

.pht-ds-btn:hover {
    background-color: #d66c11;
}

/* Slider Controls - Bottom Control Bar */
.pht-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px; /* Safe space from 'All Tours' button */
    padding-bottom: 20px;
}

.pht-slider-dots {
    display: flex;
    gap: 12px;
}

.pht-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pht-dot:hover {
    background-color: #94a3b8;
}

.pht-dot.active {
    background-color: #F38220;
    transform: scale(1.3);
}

/* Responsive Grid */
@media (max-width: 992px) {
    .pht-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 250px 200px 200px;
    }

    .pht-bento-item.item-0 {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .pht-bento-item.item-1 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .pht-bento-item.item-2 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .pht-bento-item.item-3 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .pht-bento-item.item-4 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .pht-dest-slider-container {
        min-height: 950px;
    }
}

@media (max-width: 768px) {
    .pht-ds-title {
        font-size: 32px;
    }

    .pht-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    .pht-bento-item {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .pht-dest-slider-container {
        min-height: 1350px;
    }

    /* Ensures container doesn't collapse during mobile slide shifts */
}