/* ====== Camel Safari Page Styles ====== */

/* ====== Page Hero ====== */
.cs-hero {
    position: relative;
    height: 70vh;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cs-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/camel_safari_hero.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 12s ease;
}

.cs-hero:hover .cs-hero-image {
    transform: scale(1.05);
}

.cs-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;
}

.cs-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px 60px;
    max-width: 950px;
    animation: fadeIn 1s ease-out;
}

.cs-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;
}

.cs-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.cs-breadcrumb a:hover {
    color: var(--accent-hover);
}

.cs-breadcrumb .separator {
    font-size: 0.75rem;
    opacity: 0.5;
}

.cs-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);
}

.cs-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 ====== */
.cs-intro {
    padding: 80px 0 60px;
    background: var(--primary-color);
}

.cs-intro-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cs-intro-inner p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 15px;
}

.cs-intro-inner p:last-child {
    margin-bottom: 0;
}

/* ====== Safari Highlights Strip ====== */
.cs-highlights {
    padding: 40px 0;
    background: var(--secondary-color);
    overflow: hidden;
}

.cs-highlights-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cs-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);
}

.cs-highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.cs-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;
}

.cs-highlight-item:hover .cs-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);
}

.cs-highlight-text h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--footer-bg);
    margin-bottom: 2px;
}

.cs-highlight-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ====== Safari Package Blocks ====== */
.cs-packages {
    padding: 100px 0;
    background: var(--primary-color);
}

.cs-packages .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.cs-packages .section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

.cs-package-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 100px;
    position: relative;
}

.cs-package-block:last-child {
    margin-bottom: 0;
}

.cs-package-block.reversed {
    direction: rtl;
}

.cs-package-block.reversed > * {
    direction: ltr;
}

/* Package Image */
.cs-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;
}

.cs-package-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cs-package-image-wrap:hover img {
    transform: scale(1.06);
}

.cs-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;
}

.cs-package-block.reversed .cs-package-badge {
    left: auto;
    right: 20px;
}

/* Package Content */
.cs-package-content {
    padding: 10px 0;
}

.cs-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;
}

.cs-package-label i {
    font-size: 0.75rem;
}

.cs-package-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--footer-bg);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cs-package-content p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 15px;
    font-size: 1rem;
}

.cs-package-content .cs-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 */
.cs-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);
}

.cs-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-main);
    font-weight: 500;
}

.cs-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 ====== */
.cs-itinerary {
    margin: 30px 0 25px;
}

.cs-itinerary h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--footer-bg);
    margin-bottom: 20px;
}

.cs-timeline {
    position: relative;
    padding-left: 30px;
}

.cs-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;
}

.cs-timeline-item {
    position: relative;
    padding-bottom: 22px;
    padding-left: 20px;
}

.cs-timeline-item:last-child {
    padding-bottom: 0;
}

.cs-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;
}

.cs-timeline-item:hover::before {
    background: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(211, 84, 0, 0.15);
}

.cs-timeline-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.cs-timeline-item p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ====== What to Bring Section ====== */
.cs-what-to-bring {
    background-image: url('../assets/camel_safari_hero.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding: 120px 0;
    z-index: 1;
}

.cs-what-to-bring::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;
}

.cs-wtb-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cs-wtb-inner h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cs-wtb-inner > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 50px;
    line-height: 1.7;
}

.cs-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
    max-width: 750px;
    margin: 0 auto;
}

.cs-checklist-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.cs-checklist-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.cs-checklist-item i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(211, 84, 0, 0.3);
}

.cs-checklist-item span {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ====== CTA Section ====== */
.cs-cta {
    text-align: center;
    padding: 90px 0;
    background: var(--secondary-color);
}

.cs-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--footer-bg);
    margin-bottom: 20px;
}

.cs-cta > .container > p {
    color: var(--text-light);
    font-size: 1.08rem;
    max-width: 750px;
    margin: 0 auto 35px;
    line-height: 1.75;
}

.cs-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cs-cta-buttons .btn-book {
    font-size: 1.1rem;
    padding: 16px 40px;
}

.cs-cta-buttons .btn-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    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);
}

.cs-cta-buttons .btn-call:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 84, 0, 0.25);
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
    .cs-hero {
        height: 55vh;
        min-height: 350px;
    }

    .cs-hero-content h1 {
        font-size: 2.5rem;
    }

    .cs-package-block {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .cs-package-block.reversed {
        direction: ltr;
    }

    .cs-package-content h2 {
        font-size: 1.9rem;
    }

    .cs-checklist {
        grid-template-columns: 1fr 1fr;
    }

    .cs-highlights-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cs-hero {
        height: 50vh;
        min-height: 300px;
    }

    .cs-hero-content {
        padding-bottom: 40px;
    }

    .cs-hero-content h1 {
        font-size: 1.9rem;
    }

    .cs-hero-content p {
        font-size: 0.95rem;
    }

    .cs-intro {
        padding: 50px 0 40px;
    }

    .cs-packages {
        padding: 60px 0;
    }

    .cs-package-block {
        margin-bottom: 60px;
    }

    .cs-package-content h2 {
        font-size: 1.6rem;
    }

    .cs-package-meta {
        gap: 12px;
    }

    .cs-what-to-bring {
        padding: 80px 0;
    }

    .cs-wtb-inner h2 {
        font-size: 2rem;
    }

    .cs-checklist {
        grid-template-columns: 1fr;
    }

    .cs-cta {
        padding: 60px 0;
    }

    .cs-cta h2 {
        font-size: 2rem;
    }

    .cs-highlights-grid {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .cs-highlight-item {
        width: 100%;
        max-width: 350px;
    }
}
