/* ===============================================
   STUNNING TOUR PAGE - SENSE OF AFRICA STYLE
   =============================================== */

.jps-tour-page {
    background: #fff;
}

/* Hero Section */
.jps-tour-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.jps-tour-hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.jps-tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.jps-tour-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    width: 100%;
    color: white;
}

.jps-breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.jps-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.jps-breadcrumb a:hover {
    opacity: 0.7;
}

.jps-breadcrumb span {
    margin: 0 10px;
    opacity: 0.6;
}

.jps-breadcrumb .current {
    opacity: 0.8;
}

.jps-tour-hero-title {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 25px;
    line-height: 1.2;
    max-width: 900px;
}

.jps-tour-meta-bar {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.jps-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
}

.jps-meta-item svg {
    opacity: 0.9;
}

.jps-price-highlight {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 16px;
}

.jps-price-highlight strong {
    font-weight: 800;
}

/* Main Layout */
.jps-tour-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.jps-tour-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    margin: 60px 0;
}

/* Main Content */
.jps-tour-main {
    min-width: 0;
}

.jps-section {
    margin-bottom: 60px;
}

.jps-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 30px;
    position: relative;
    padding-bottom: 15px;
}

.jps-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #d4af37;
}

/* Overview Section */
.jps-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.jps-overview-card {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.jps-overview-card:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.jps-overview-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.jps-overview-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.jps-overview-value {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

/* About Section */
.jps-content-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.jps-content-text p {
    margin-bottom: 20px;
}

/* Highlights */
.jps-highlights-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.jps-highlights-list li {
    padding: 15px 15px 15px 45px;
    background: #f8f8f8;
    border-radius: 8px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.jps-highlights-list li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 15px;
    width: 24px;
    height: 24px;
    background: #2c5f2d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Includes/Excludes */
.jps-includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.jps-include-box {
    padding: 30px;
    border-radius: 12px;
}

.jps-include-yes {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-left: 4px solid #2c5f2d;
}

.jps-include-no {
    background: linear-gradient(135deg, #ffebee 0%, #fce4ec 100%);
    border-left: 4px solid #d32f2f;
}

.jps-include-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.jps-check-icon {
    font-size: 24px;
}

.jps-include-box ul {
    list-style: none;
    padding: 0;
}

.jps-include-box li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 15px;
}

.jps-include-box li:last-child {
    border-bottom: none;
}

/* Gallery */
.jps-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.jps-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.jps-photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.jps-gallery-photo {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.jps-gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.jps-gallery-photo:hover img {
    transform: scale(1.05);
}

/* Map */
.jps-map-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

/* FAQs */
.jps-faq-accordion {
    max-width: 800px;
}

.jps-faq-item {
    margin-bottom: 10px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.jps-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: background 0.3s;
}

.jps-faq-question:hover {
    background: #f8f8f8;
}

.jps-faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: #d4af37;
    min-width: 30px;
    text-align: center;
}

.jps-faq-answer {
    display: none;
    padding: 0 25px 20px;
}

.jps-faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: #666;
}

/* Sidebar */
.jps-tour-sidebar {
    position: relative;
}

.jps-sticky-wrapper {
    position: sticky;
    top: 100px;
}

/* Enquire Box */
.jps-enquire-box {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.jps-enquire-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.jps-enquire-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 25px;
    line-height: 1.6;
}

.jps-form-group {
    margin-bottom: 18px;
}

.jps-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.jps-form-group input,
.jps-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s;
}

.jps-form-group input:focus,
.jps-form-group textarea:focus {
    border-color: #2c5f2d;
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.jps-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.jps-enquire-btn {
    width: 100%;
    background: linear-gradient(135deg, #2c5f2d, #1f4420);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.jps-enquire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.3);
}

.jps-enquire-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.jps-form-response {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

.jps-form-response.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.jps-form-response.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Box */
.jps-contact-box {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 25px;
}

.jps-contact-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
}

.jps-contact-box p {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px;
}

.jps-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.jps-contact-icon {
    font-size: 20px;
}

.jps-contact-item a {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.jps-contact-item a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .jps-tour-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .jps-sticky-wrapper {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .jps-tour-container {
        padding: 0 20px;
    }
    
    .jps-tour-hero-title {
        font-size: 36px;
    }
    
    .jps-tour-meta-bar {
        gap: 15px;
    }
    
    .jps-section-title {
        font-size: 26px;
    }
    
    .jps-overview-grid,
    .jps-includes-grid,
    .jps-highlights-list,
    .jps-photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .jps-form-row {
        grid-template-columns: 1fr;
    }
    
    .jps-enquire-box {
        padding: 20px;
    }
}
