/* ================= LOCAL DETAIL PAGE COMMON STYLES ================= */

/* PAGE HEADER */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.166), rgba(0, 0, 0, 0.7)),
        url('../../images/slide/slide2.jpg') center/cover no-repeat;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    border-bottom: 2px solid rgba(201, 163, 78, 0.4);
    overflow: hidden;
}

/* Luxury Overlay Effect */
.page-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -5%;
    width: 110%;
    height: 100px;
    background: #000;
    transform: rotate(-2deg);
    z-index: 1;
}

.container.relative {
    position: relative;
    z-index: 5;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

.page-title span {
    color: #c9a34e;


    display: inline-block;
}

/* BREADCRUMB PREMIUM STYLING */
.breadcrumb {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    display: inline-flex;
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.breadcrumb-item a:hover {
    color: #c9a34e;
}

.breadcrumb-item.active {
    color: #c9a34e;
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: "\F285";
    /* Bootstrap Icon Chevron Right */
    font-family: "bootstrap-icons";
    font-size: 12px;
}

/* ANIMATIONS */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* ================= CARAVAN DETAILS SECTION ================= */
.caravan-details-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;

    /* NEW BACKGROUND */
    background: url('../images/loca-bg-img.png') no-repeat center center;
    background-size: cover;
}

/* Optional overlay for better readability */
.caravan-details-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.633); /* adjust opacity if needed */
    z-index: 0;
}

/* Make content appear above overlay */
.caravan-details-section .container {
    position: relative;
    z-index: 2;
}

.premium-tag-v2 {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 163, 78, 0.1);
    color: #c9a34e;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    border-left: 4px solid #c9a34e;
    margin-bottom: 25px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-title span {
    color: #c9a34e;
}

.section-desc {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #c9a34e;
}

.feature-item i {
    font-size: 24px;
    color: #c9a34e;
}

.feature-item span {
    font-weight: 600;
    font-size: 14px;
    color: #222;
}

/* CTA BUTTONS */
.details-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-premium-wa {
    background: #25d366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-premium-call {
    background: #000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.btn-premium-wa:hover,
.btn-premium-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.btn-premium-call:hover {
    background: #fff;
    color: #000;
    border-color: #000;
}


/* ================= PREMIUM BOOKING CARD ================= */
.premium-booking-card {
    background: #0a0a0a;
    padding: 45px;
    border-radius: 30px;
    color: #fff;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(201, 163, 78, 0.2);
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #c9a34e;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: #888;
    margin-bottom: 35px;
}

.form-input-group {
    margin-bottom: 22px;
}

.form-input-group label {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 500;
}

.field {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    transition: 0.3s;
}

.field:focus-within {
    border-color: #c9a34e;
    background: rgba(201, 163, 78, 0.05);
}

.field i {
    color: #c9a34e;
    margin-right: 15px;
    font-size: 18px;
}

.field input {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    outline: none;
    font-size: 14px;
}

.field input::placeholder {
    color: #666;
}

.btn-submit-premium {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #c9a34e, #e2b553);
    border: none;
    border-radius: 15px;
    color: #000;
    font-weight: 800;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(201, 163, 78, 0.4);
    background: #fff;
}

.form-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 12px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ================= PREMIUM FEATURES SECTION (DARK) ================= */
.premium-features-section {
    padding: 100px 0;
    background: #0a0a0a;
    color: #fff;
    position: relative;
    border-top: 1px solid rgba(201, 163, 78, 0.2);
}

.premium-features-section .section-heading h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
}

.premium-features-section .section-heading p {
    color: #888;
    max-width: 700px;
    margin: 0 auto;
}

.feature-card-v2 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 163, 78, 0.1), transparent);
    opacity: 0;
    transition: 0.4s;
}

.feature-card-v2:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 163, 78, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card-v2:hover::before {
    opacity: 1;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(201, 163, 78, 0.15);
    color: #c9a34e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 32px;
    margin-bottom: 25px;
    transition: 0.4s;
    border: 1px solid rgba(201, 163, 78, 0.2);
}

.feature-card-v2:hover .icon-box {
    background: #c9a34e;
    color: #000;
    transform: rotateY(180deg);
}

.feature-card-v2 h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card-v2 p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin: 0;
}

/* ================= HOW IT WORKS SECTION (WHITE) ================= */
.how-it-works-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    z-index: 10;
}

.how-it-works-section .section-heading h2 {
    color: #000;
}

.step-card {
    text-align: center;
    padding: 40px 20px;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(201, 163, 78, 0.3);
    background: #fff;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(201, 163, 78, 0.1);
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 163, 78, 0.1);
    color: #c9a34e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 32px;
    margin: 0 auto 30px;
    transition: 0.4s;
}

.step-card:hover .step-icon {
    background: #c9a34e;
    color: #fff;
    transform: rotateY(180deg);
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}




/* ================= TESTIMONIALS SECTION ================= */
.testimonials-section {
    padding: 100px 0;
    background: #fff;
}

.testimonial-card {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 163, 78, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.quote-icon {
    font-size: 48px;
    color: rgba(201, 163, 78, 0.15);
    line-height: 1;
    margin-bottom: 20px;
}

.star-rating {
    margin-bottom: 20px;
    color: #c9a34e;
    font-size: 14px;
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.user-details span {
    font-size: 13px;
    color: #888;
}

/* ================= FINAL CTA SECTION ================= */
.cta-section {
    padding-bottom: 100px;
    background: #fff;
}

.cta-box {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 163, 78, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(201, 163, 78, 0.05);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 17px;
    color: #ccc;
    line-height: 1.7;
    margin: 0;
}

.cta-action {
    text-align: right;
}

.booking-trigger {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #c9a34e;
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(201, 163, 78, 0.3);
}

.booking-trigger:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.cta-users {
    margin-top: 20px;
    color: #c9a34e;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .testimonials-section, .cta-section {
        padding: 60px 0;
    }

    .cta-box {
        padding: 40px 30px;
        text-align: center;
    }

    .cta-action {
        text-align: center;
        margin-top: 30px;
    }

    .cta-content h2 {
        font-size: 30px;
    }
}
/* ================= TRUST STATS SECTION ================= */
.trust-stats-section {
    padding: 30px 0;
    background: #fff;
    position: relative;
    z-index: 20;
    margin-top: -50px; /* Overlap effect */
}

.stats-wrapper {
   
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(201, 163, 78, 0.3);
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 20px;
    height: 100%;
}

.stat-icon {
    font-size: 35px;
    color: #c9a34e;
    line-height: 1;
}

.stat-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: black;
    margin: 0;
    line-height: 1.2;
}

.stat-info p {
    font-size: 13px;
    color: #aaa;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.border-left-lg {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}



/* RESPONSIVE */
@media (max-width: 991px) {
    .trust-stats-section {
        padding: 60px 0;
        margin-top: 0;
    }

    .stats-wrapper {
        padding: 30px 15px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px 10px;
    }

    .border-left-lg {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}
