/* Trip Map Shortcode Styles */
.trip-map-container {
    margin: 20px auto;
    text-align: center;
    max-width: 100%;
}

.trip-map-img {
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
}

.trip-map-img:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.trip-map-caption {
    margin-top: 10px;
    font-style: italic;
    color: #666;
    font-size: 0.9em;
}

.trip-map-link {
    display: inline-block;
    text-decoration: none;
}

.trip-map-link:hover .trip-map-img {
    opacity: 0.9;
}

/* Widget Container */
.triply-trip-map-widget {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}

/* Title Styling */
.triply-trip-map-widget .elementor-heading-title {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.2;
}

/* Image Styling */
.triply-trip-map-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.triply-trip-map-img:hover {
    transform: scale(1.01);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .triply-trip-map-widget .elementor-heading-title {
        font-size: 20px;
    }
}

/* Tour Highlights Styles */
.triply-tour-highlights {
    margin: 20px 0;
    padding: 15px;

    border-radius: 5px;
}

.tour-highlights-title {
    margin-bottom: 15px;
    font-size: 1.5em;
    color: #333;
}

.tour-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
}

.tour-highlight-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.tour-highlight-icon {
    margin-right: 10px;
    font-size: 1.2em;
    flex-shrink: 0;
}

.tour-highlight-text {
    flex-grow: 1;
}