{% extends "base.html" %} {% block title %}Special Tours - Lanka Travel Bee{% endblock %} {% block description %}Discover our exclusive special tours in Sri Lanka. Experience unique destinations and adventures with Lanka Travel Bee.{% endblock %} {% block inner_hero_title %}Special Tours{% endblock %} {% block inner_hero_subtitle %}Experience extraordinary adventures with our specially curated tour packages{% endblock %} {% block inner_hero_background %}{{ url_for('static', filename='images/special-tours-hero.jpg') }}{% endblock %} {% block content %}
{% if not tours_by_category %}

Coming Soon

We are currently preparing some amazing special tours for you. Please check back later or contact us for custom tour arrangements.

Contact Us
{% else %} {% for category, tours in tours_by_category.items() %}

{{ category.name }}

{% for tour in tours %}
{% if tour.image %} {{ tour.title }} {% else %} {{ tour.title }} {% endif %}
{{ tour.title }}

{{ tour.subtitle or tour.description[:100] + '...' }}

{% if tour.duration %}

Duration: {{ tour.duration }}

{% endif %}
{% endfor %}
{% endfor %} {% endif %}
{% endblock %}