/* General Styling & Layout */
.nairobi-safari-package {
    font-family: 'Open Sans', sans-serif; /* A common Elementor font */
    background-color: #f8f8f8; /* Light background for the whole section */
    color: #333;
}

.nspp-header-bar {
    background-color: #333;
    color: #fff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}

/* Remove list dots from all icon lists */
.nspp-header-info-list .elementor-icon-list-items,
.nspp-amenities-grid .elementor-icon-list-items,
.nspp-info-list .elementor-icon-list-items {
    list-style-type: none !important;
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.nspp-header-info-list .elementor-icon-list-item,
.nspp-amenities-grid .elementor-icon-list-item,
.nspp-info-list .elementor-icon-list-item {
    list-style-type: none !important;
    list-style: none !important;
}

/* Ensure no list styles on any nested ul/li elements */
.nairobi-safari-package ul,
.nairobi-safari-package li {
    list-style-type: none !important;
    list-style: none !important;
}

/* Specifically target Elementor icon list elements */
.nairobi-safari-package .elementor-icon-list-items,
.nairobi-safari-package .elementor-icon-list-item {
    list-style-type: none !important;
    list-style: none !important;
}

/* Header section - force horizontal alignment always */
.nspp-header-info-list {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.nspp-header-info-list .elementor-icon-list-items {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    margin: 0 !important;
}

.nspp-header-info-list .elementor-icon-list-item {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    white-space: nowrap !important;
}

/* Ensure icons and text are inline within each item */
.nspp-header-info-list .elementor-icon-list-item .elementor-icon-list-icon {
    display: inline-flex !important;
    align-items: center !important;
    margin-right: 3px !important;
}

.nspp-header-info-list .elementor-icon-list-item .elementor-icon-list-text {
    display: inline-block !important;
}

/* Amenities section - horizontal alignment */
.nspp-amenities-grid .elementor-icon-list-items {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.nspp-amenities-grid .elementor-icon-list-item {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    white-space: nowrap !important;
}

.nspp-amenities-grid .elementor-icon-list-item .elementor-icon-list-icon {
    display: inline-flex !important;
    align-items: center !important;
    margin-right: 8px !important;
}

.nspp-amenities-grid .elementor-icon-list-item .elementor-icon-list-text {
    display: inline-block !important;
    align-self: center !important;
}

/* Tour info section - keep vertical alignment */
.nspp-info-list .elementor-icon-list-items {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.nspp-info-list .elementor-icon-list-item {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
}

.nspp-info-list .elementor-icon-list-item .elementor-icon-list-icon {
    display: inline-flex !important;
    align-items: center !important;
    margin-right: 8px !important;
}

.nspp-info-list .elementor-icon-list-item .elementor-icon-list-text {
    display: inline-block !important;
    align-self: center !important;
}

/* Legacy support for old structure */
.nspp-price-days {
    display: flex;
    align-items: center;
}
.nspp-price {
    margin-right: 20px;
    font-size: 24px;
}
.nspp-days i {
    margin-right: 8px;
}

/* Responsive Design for Header */
@media (max-width: 768px) {
    .nspp-header-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nspp-header-info-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .nspp-header-item {
        font-size: 14px;
    }
    
    .nspp-header-item.nspp-highlight {
        font-size: 20px;
    }
}
.nspp-booking-button {
    background-color: #f7b731; /* Orange */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}
.nspp-booking-button:hover {
    background-color: #e6a720;
}

.nspp-main-content {
    display: flex;
    gap: 30px; /* Space between columns */
    padding: 30px;
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
}

.nspp-left-column {
    flex: 2; /* Takes more space */
    min-width: 300px; /* Minimum width before wrapping */
}
.nspp-right-column {
    flex: 1; /* Takes less space */
    min-width: 280px; /* Minimum width before wrapping */
}

/* Section Titles */
.nspp-section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #f7b731; /* Orange underline */
    padding-bottom: 10px;
}

/* Image Carousel Section */
.nspp-featured-image-carousel {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.nspp-carousel-wrapper {
    position: relative;
    width: 100%;
}

.nspp-carousel-container {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
}

.nspp-carousel-slide {
    flex: 0 0 100%;
    position: relative;
}

.nspp-carousel-slide.nspp-stretch .nspp-carousel-image {
    object-fit: cover;
    height: 400px;
}

.nspp-carousel-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Carousel Navigation */
.nspp-carousel-prev,
.nspp-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.nspp-carousel-prev:hover,
.nspp-carousel-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.nspp-carousel-prev {
    left: 15px;
}

.nspp-carousel-next {
    right: 15px;
}

/* Carousel Dots */
.nspp-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.nspp-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nspp-carousel-dot.active,
.nspp-carousel-dot:hover {
    background: #f7b731;
}

/* Legacy support for old image structure */
.nspp-featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}
.nspp-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Overview Section */
.nspp-overview-section {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.nspp-subsection-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #555;
}
.nspp-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}
.nspp-read-more {
    background-color: #f7b731;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}
.nspp-read-more:hover {
    background-color: #e6a720;
}

/* Tour Plan Section (Accordion) */
.nspp-tour-plan-section {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.nspp-accordion-item {
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}
.nspp-accordion-header {
    background-color: #f9f9f9;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    font-size: 16px;
}
.nspp-accordion-header i {
    transition: transform 0.3s ease;
}
.nspp-accordion-item.active .nspp-accordion-header i {
    transform: rotate(45deg); /* Change plus to cross */
}
.nspp-accordion-content {
    padding: 15px 20px;
    background-color: #fff;
    display: none; /* Hidden by default */
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    border-top: 1px solid #eee;
}
.nspp-accordion-item.active .nspp-accordion-content {
    display: block; /* Show when active */
}

/* Price Table Section */
.nspp-price-table-section {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.nspp-price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}
.nspp-price-table td {
    padding: 10px 15px;
    border-bottom: 1px dashed #eee;
    font-size: 16px;
}
.nspp-price-table td:first-child {
    font-weight: bold;
    color: #333;
}
.nspp-price-table td:last-child {
    text-align: right;
    color: #555;
}
.nspp-group-size-info {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    margin-bottom: 15px;
    font-size: 16px;
}
.nspp-group-size-info .nspp-label {
    font-weight: bold;
}
.nspp-small-text {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* Tour Amenities Section */
.nspp-tour-amenities-section {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 30px; /* Ensure space before footer if this were last */
}
/* Amenities grid layout only - native spacing used */
.nspp-amenities-grid .elementor-icon-list-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* Legacy support */
.nspp-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}
.nspp-amenity-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #555;
}
.nspp-amenity-item i {
    margin-right: 10px;
    color: #f7b731;
    font-size: 18px;
}

/* Right Column - Booking Form */
.nspp-booking-form-wrapper {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border-top: 5px solid #f7b731; /* Orange top border */
}
.nspp-form-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}
.nspp-form-group {
    margin-bottom: 15px;
}
.nspp-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #555;
}
.nspp-form-group input[type="text"],
.nspp-form-group input[type="email"],
.nspp-form-group input[type="tel"],
.nspp-form-group input[type="number"],
.nspp-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    box-sizing: border-box; /* Include padding in width */
}
.nspp-date-pickers {
    display: flex;
    gap: 10px;
}
.nspp-date-pickers input {
    flex: 1;
}
.nspp-date-pickers label {
    width: 100%; /* Ensure labels span full width above inputs */
    margin-bottom: 5px;
}
.nspp-guests-inputs {
    display: flex;
    gap: 10px;
}
.nspp-guest-input {
    flex: 1;
}
.nspp-submit-button {
    width: 100%;
    background-color: #f7b731;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.nspp-submit-button:hover {
    background-color: #e6a720;
}

/* Tour Information Section */
.nspp-tour-information-section {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
/* Tour info uses native Elementor icon list styling */

/* Legacy support */
.nspp-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nspp-info-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
}
.nspp-info-list li i {
    margin-right: 10px;
    color: #f7b731;
    width: 20px;
    text-align: center;
}

/* Contact Information Section */
.nspp-contact-information-section {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.nspp-contact-information-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}
.nspp-contact-company {
    font-weight: bold;
    margin-bottom: 10px;
}

/* TripAdvisor Section */
.nspp-tripadvisor-section {
    text-align: center;
    padding: 20px;
}
.nspp-tripadvisor-logo {
    max-width: 200px;
    height: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nspp-main-content {
        flex-direction: column;
        gap: 20px;
    }
    .nspp-left-column, .nspp-right-column {
        flex: none;
        width: 100%;
    }
    .nspp-header-bar {
        flex-direction: column;
        padding: 15px;
    }
    .nspp-price-days {
        margin-bottom: 15px;
    }
}
