.text-primary-custom {
    color: var(--primary-color) !important;
}

.btn-theme {
    background: linear-gradient(45deg, var(--primary-color), var(--addtional-color));
    color: var(--white-color) !important;
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(210, 70, 37, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-theme:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 70, 37, 0.6);
    color: #fff;
}

/* --- Parallax Hero Section --- */
.page-header {
    background: linear-gradient(rgba(44, 86, 157, 0.85), rgba(44, 86, 157, 0.7)), url('https://chilljoytravels.com/images/chill-joy/car-bg.jpg');
    background-attachment: fixed;
    /* Parallax Effect */
    background-size: cover;
    background-position: center;
    padding: 140px 0 100px;
    color: var(--white-color);
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    margin-bottom: 60px;
}

.breadcrumb-custom .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

/* --- Content Styling --- */
.service-details-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
    transition: transform 0.5s ease;
}

.service-details-img:hover {
    transform: scale(1.02);
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s;
}

.section-title:hover::before {
    width: 100%;
}

/* --- Premium Inclusion Cards --- */
.inclusion-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.inclusion-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 86, 157, 0.05) 0%, rgba(210, 70, 37, 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: 0.4s;
}

.inclusion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.inclusion-card:hover::after {
    opacity: 1;
}

.icon-circle-tour-package {
    width: 70px;
    height: 70px;
    background: rgba(210, 70, 37, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    transition: 0.4s;
}

.inclusion-card:hover .icon-circle-tour-package {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(360deg);
}

/* --- Timeline Itinerary (New Feature) --- */
.timeline {
    position: relative;
    border-left: 3px solid rgba(44, 86, 157, 0.2);
    margin-left: 15px;
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -39px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--white-color);
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    transition: 0.3s;
}

.timeline-item:hover .timeline-dot {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.3);
}

.day-badge {
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: inline-block;
}

/* --- Booking Sidebar (Sticky & Glass) --- */
.sidebar-card {
    background: var(--white-color);
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border-left: 6px solid var(--primary-color);
    font-family: "Libre Baskerville", serif;
}

/* BUTTON STYLES UPDATED */
.btn-sidebar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white-color);
    color: var(--black-color);
    font-weight: 600;
    border-radius: 50px;
    border: none;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.438);
    transition: all 0.35s ease-in-out;
    font-family: "Libre Baskerville", serif;
}

.btn-sidebar:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0px 6px 22px rgba(210, 70, 37, 0.25);
}

/* ICON CIRCLE PERFECT CENTER */
.btn-sidebar .icon-circle {
    background: var(--primary-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
}


/* BRAND COLORS */
.whatsapp .icon-circle {
    background: #25D366;
}

.facebook .icon-circle {
    background: #1877f2;
}

.instagram .icon-circle {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}

.linkedin .icon-circle {
    background: #0077b5;
}

.twitter .icon-circle {
    background: #000;
}

.mail .icon-circle {
    background: var(--secondary-color);
}

/* PROMO IMAGE CARD */
.promo-image-card {
    overflow: hidden;
    border-radius: 18px;
}

.promo-image-card img {
    width: 100%;
    border-radius: 18px;
    transition: transform 0.4s ease;
}

.promo-image-card img:hover {
    transform: scale(1.08);
}

/* BOOK NOW CTA */
.btn-book-now {
    background: var(--addtional-color);
    color: #fff;
    padding: 14px 20px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(199, 32, 39, 0.25);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-book-now:hover {
    transform: translateY(-4px) scale(1.03);
    background: var(--secondary-color);
    color: #fff;
}


.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(210, 70, 37, 0.15);
}

/* --- FAQ Custom --- */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    background: transparent;
}

.accordion-button {
    background: #fff;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 8px 20px rgba(44, 86, 157, 0.3);
}

.accordion-button::after {
    background-size: 1rem;
    transition: 0.3s;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: #fff;
    border-radius: 0 0 10px 10px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: none;
}

/* --- Footer Callout --- */
.help-card {
    background: linear-gradient(135deg, var(--secondary-color), #1a3c75);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.help-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    opacity: 0.8;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
        clip-path: none;
    }

    .timeline {
        margin-left: 0;
        padding-left: 20px;
    }

    .sidebar-wrapper {
        position: static;
        margin-top: 40px;
    }
}