/* ====== Jeep Safari Page Styles ====== */
/* Mirrors camel-safari.css structure with js- prefix */

/* ====== Page Hero ====== */
.js-hero {
    position: relative;
    height: 70vh;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.js-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/jeep_safari_hero.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 12s ease;
}

.js-hero:hover .js-hero-image {
    transform: scale(1.05);
}

.js-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(44, 30, 19, 0.92) 0%, rgba(44, 30, 19, 0.45) 40%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
}

.js-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px 60px;
    max-width: 950px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.js-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    font-weight: 400;
}

.js-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.js-breadcrumb a:hover {
    color: var(--accent-hover);
}

.js-breadcrumb .separator {
    font-size: 0.75rem;
    opacity: 0.5;
}

.js-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: white;
    margin-bottom: 18px;
    line-height: 1.15;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
}

.js-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto;
}

/* ====== Intro Section ====== */
.js-intro {
    padding: 80px 0 60px;
    background: var(--primary-color);
}

.js-intro-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.js-intro-inner p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 15px;
}

.js-intro-inner p:last-child {
    margin-bottom: 0;
}

/* ====== Highlights Strip ====== */
.js-highlights {
    padding: 40px 0;
    background: var(--secondary-color);
    overflow: hidden;
}

.js-highlights-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.js-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.js-highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.js-highlight-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.1), rgba(230, 126, 34, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.js-highlight-item:hover .js-highlight-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    box-shadow: 0 6px 15px rgba(211, 84, 0, 0.3);
}

.js-highlight-text h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--footer-bg);
    margin-bottom: 2px;
}

.js-highlight-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ====== Safari Package Blocks ====== */
.js-packages {
    padding: 100px 0;
    background: var(--primary-color);
}

.js-packages .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.js-packages .section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

.js-package-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 100px;
    position: relative;
}

.js-package-block:last-child {
    margin-bottom: 0;
}

.js-package-block.reversed {
    direction: rtl;
}

.js-package-block.reversed > * {
    direction: ltr;
}

/* Package Image */
.js-package-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4 / 3;
}

.js-package-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.js-package-image-wrap:hover img {
    transform: scale(1.06);
}

.js-package-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    padding: 8px 22px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
    z-index: 2;
}

.js-package-block.reversed .js-package-badge {
    left: auto;
    right: 20px;
}

/* Package Content */
.js-package-content {
    padding: 10px 0;
}

.js-package-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.js-package-label i {
    font-size: 0.75rem;
}

.js-package-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--footer-bg);
    margin-bottom: 20px;
    line-height: 1.2;
}

.js-package-content p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 15px;
    font-size: 1rem;
}

.js-package-content .js-note {
    background: rgba(211, 84, 0, 0.06);
    border-left: 3px solid var(--accent-color);
    padding: 14px 18px;
    border-radius: 0 10px 10px 0;
    font-size: 0.9rem;
    color: var(--text-main);
    margin: 20px 0;
    font-style: italic;
    line-height: 1.6;
}

/* Package Quick Info */
.js-package-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 25px 0;
    padding: 22px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.js-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-main);
    font-weight: 500;
}

.js-meta-item i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(211, 84, 0, 0.08);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

/* ====== Itinerary Timeline ====== */
.js-itinerary {
    margin: 30px 0 25px;
}

.js-itinerary h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--footer-bg);
    margin-bottom: 20px;
}

.js-timeline {
    position: relative;
    padding-left: 30px;
}

.js-timeline::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 2px;
    height: calc(100% - 16px);
    background: linear-gradient(to bottom, var(--accent-color), rgba(211, 84, 0, 0.15));
    border-radius: 2px;
}

.js-timeline-item {
    position: relative;
    padding-bottom: 22px;
    padding-left: 20px;
}

.js-timeline-item:last-child {
    padding-bottom: 0;
}

.js-timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--accent-color);
    z-index: 1;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.js-timeline-item:hover::before {
    background: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(211, 84, 0, 0.15);
}

.js-timeline-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.js-timeline-item p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ====== Places Covered List ====== */
.js-places-list {
    margin: 20px 0;
}

.js-places-list h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--footer-bg);
    margin-bottom: 16px;
}

.js-places-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.js-place-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(211, 84, 0, 0.04);
    border-radius: 10px;
    font-size: 0.92rem;
    color: var(--text-main);
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
}

.js-place-item:hover {
    background: rgba(211, 84, 0, 0.1);
    transform: translateX(4px);
}

.js-place-item i {
    color: var(--accent-color);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ====== Important Notes Section ====== */
.js-notes-section {
    background: var(--secondary-color);
    padding: 80px 0;
}

.js-notes-inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.js-notes-inner h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--footer-bg);
    margin-bottom: 15px;
}

.js-notes-inner > p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.js-notes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
}

.js-note-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.js-note-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.js-note-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.1), rgba(230, 126, 34, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-color);
}

.js-note-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--footer-bg);
    margin-bottom: 6px;
}

.js-note-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ====== CTA Section ====== */
.js-cta {
    text-align: center;
    padding: 90px 0;
    background-image: url('../assets/jeep_safari_hero.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    z-index: 1;
}

.js-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 51, 32, 0.9), rgba(44, 30, 19, 0.95));
    z-index: -1;
}

.js-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.js-cta > .container > p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    max-width: 750px;
    margin: 0 auto 35px;
    line-height: 1.75;
}

.js-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.js-cta-buttons .btn-book {
    font-size: 1.1rem;
    padding: 16px 40px;
}

.js-cta-buttons .btn-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(8px);
}

.js-cta-buttons .btn-call:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ====== Book Button (reused from camel safari) ====== */
.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-book:hover {
    background: #1fb855;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    color: white;
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
    .js-hero {
        height: 55vh;
        min-height: 350px;
    }

    .js-hero-content h1 {
        font-size: 2.5rem;
    }

    .js-package-block {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .js-package-block.reversed {
        direction: ltr;
    }

    .js-package-content h2 {
        font-size: 1.9rem;
    }

    .js-highlights-grid {
        gap: 20px;
    }

    .js-notes-grid {
        grid-template-columns: 1fr;
    }

    .js-places-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .js-hero {
        height: 50vh;
        min-height: 300px;
    }

    .js-hero-content {
        padding-bottom: 40px;
    }

    .js-hero-content h1 {
        font-size: 1.9rem;
    }

    .js-hero-content p {
        font-size: 0.95rem;
    }

    .js-intro {
        padding: 50px 0 40px;
    }

    .js-packages {
        padding: 60px 0;
    }

    .js-package-block {
        margin-bottom: 60px;
    }

    .js-package-content h2 {
        font-size: 1.6rem;
    }

    .js-package-meta {
        gap: 12px;
    }

    .js-notes-section {
        padding: 60px 0;
    }

    .js-notes-inner h2 {
        font-size: 1.8rem;
    }

    .js-cta {
        padding: 60px 0;
    }

    .js-cta h2 {
        font-size: 2rem;
    }

    .js-highlights-grid {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .js-highlight-item {
        width: 100%;
        max-width: 350px;
    }
}
