Wanderlust Chronicles - Services
:root {
--primary-blue: #1A4376;
--accent-orange: #FF9900;
--secondary-beige: #F5F5DC;
--forest-green: #228B22;
--cloud-white: #FFFFFF;
--text-dark: #333333;
--text-light: #666666;
}
body {
font-family: 'Lato', sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: var(--secondary-beige);
color: var(--text-dark);
}
.container {
max-width: 1200px;
margin: 2rem auto;
padding: 0 1rem;
}
.section-title {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
color: var(--primary-blue);
text-align: center;
margin-bottom: 3rem;
}
.section {
background-color: var(--cloud-white);
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 3rem 2rem;
margin-bottom: 3rem;
}
.section h2 {
font-family: 'Playfair Display', serif;
font-size: 2.2rem;
color: var(--primary-blue);
text-align: center;
margin-bottom: 2rem;
}
.section p {
font-size: 1.1rem;
color: var(--text-dark);
text-align: center;
max-width: 800px;
margin: 0 auto 2rem auto;
}
/* Travel Destinations Section */
.destinations-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.destination-card {
background-color: var(--secondary-beige);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
position: relative;
}
.destination-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.destination-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, transparent, rgba(255, 153, 0, 0.1));
opacity: 0;
transition: opacity 0.3s ease;
z-index: 1;
}
.destination-card:hover::before {
opacity: 1;
}
.destination-card img {
width: 100%;
height: 200px;
object-fit: cover;
}
.destination-card-content {
padding: 1.5rem;
position: relative;
z-index: 2;
}
.destination-card h3 {
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
color: var(--primary-blue);
margin-bottom: 0.5rem;
}
.destination-card p {
font-size: 0.95rem;
color: var(--text-light);
margin-bottom: 1rem;
text-align: left;
}
.destination-card .btn {
display: inline-block;
background-color: var(--accent-orange);
color: var(--cloud-white);
padding: 0.75rem 1.5rem;
border-radius: 5px;
text-decoration: none;
font-weight: 700;
font-size: 0.9rem;
transition: background-color 0.3s ease;
}
.destination-card .btn:hover {
background-color: #e68a00;
}
/* Travel Packages Section */
.packages-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.package-card {
background-color: var(--secondary-beige);
border-radius: 8px;
padding: 2rem;
text-align: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.package-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.package-card::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s ease;
}
.package-card:hover::after {
left: 100%;
}
.package-card.featured {
border: 3px solid var(--accent-orange);
transform: scale(1.05);
}
.package-card.featured::before {
content: "Most Popular";
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
background-color: var(--accent-orange);
color: var(--cloud-white);
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 700;
}
.package-card h3 {
font-family: 'Playfair Display', serif;
font-size: 1.8rem;
color: var(--primary-blue);
margin-bottom: 1rem;
}
.package-price {
font-size: 2.5rem;
font-weight: 700;
color: var(--accent-orange);
margin-bottom: 0.5rem;
}
.package-duration {
font-size: 1rem;
color: var(--text-light);
margin-bottom: 1.5rem;
}
.package-features {
list-style: none;
padding: 0;
margin-bottom: 2rem;
}
.package-features li {
margin-bottom: 0.75rem;
font-size: 0.95rem;
color: var(--text-dark);
}
.package-features li::before {
content: "✓";
color: var(--forest-green);
font-weight: 700;
margin-right: 0.5rem;
}
.package-card .btn {
display: inline-block;
background-color: var(--primary-blue);
color: var(--cloud-white);
padding: 1rem 2rem;
border-radius: 5px;
text-decoration: none;
font-weight: 700;
transition: background-color 0.3s ease;
width: 100%;
box-sizing: border-box;
}
.package-card .btn:hover {
background-color: #123456;
}
/* Custom Travel Plans Section */
.custom-plans-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.custom-plan-card {
background-color: var(--secondary-beige);
border-radius: 8px;
padding: 2rem;
text-align: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.custom-plan-card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.custom-plan-card::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: radial-gradient(circle, rgba(34, 139, 34, 0.1), transparent);
transition: all 0.3s ease;
transform: translate(-50%, -50%);
border-radius: 50%;
}
.custom-plan-card:hover::before {
width: 300px;
height: 300px;
}
.custom-plan-card svg {
width: 60px;
height: 60px;
fill: var(--primary-blue);
margin-bottom: 1rem;
position: relative;
z-index: 2;
transition: transform 0.3s ease;
}
.custom-plan-card:hover svg {
transform: scale(1.1);
}
.custom-plan-card h3 {
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
color: var(--primary-blue);
margin-bottom: 1rem;
position: relative;
z-index: 2;
}
.custom-plan-card p {
font-size: 0.95rem;
color: var(--text-light);
margin-bottom: 1.5rem;
text-align: center;
position: relative;
z-index: 2;
}
.custom-plan-card .btn {
display: inline-block;
background-color: var(--forest-green);
color: var(--cloud-white);
padding: 0.75rem 1.5rem;
border-radius: 5px;
text-decoration: none;
font-weight: 700;
font-size: 0.9rem;
transition: all 0.3s ease;
position: relative;
z-index: 2;
}
.custom-plan-card .btn:hover {
background-color: #1e7a1e;
}
/* Call to Action Section */
.cta-section {
background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
color: var(--cloud-white);
text-align: center;
padding: 3rem 2rem;
border-radius: 8px;
margin-top: 3rem;
}
.cta-section h2 {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
margin-bottom: 1rem;
}
.cta-section p {
font-size: 1.2rem;
margin-bottom: 2rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.cta-section .btn {
display: inline-block;
background-color: var(--cloud-white);
color: var(--primary-blue);
padding: 1rem 2rem;
border-radius: 5px;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
transition: all 0.3s ease;
}
.cta-section .btn:hover {
background-color: var(--secondary-beige);
transform: translateY(-2px);
}
@media (max-width: 768px) {
.section-title {
font-size: 2rem;
}
.section h2 {
font-size: 1.8rem;
}
.section {
padding: 2rem 1rem;
}
.package-card.featured {
transform: none;
}
.destinations-grid,
.packages-grid,
.custom-plans-grid {
grid-template-columns: 1fr;
}
}
Our Travel Services
Featured Travel Destinations
Discover the world's most captivating destinations through our carefully curated collection. From hidden gems to iconic landmarks, we showcase places that inspire authentic travel experiences and create lasting memories.
Adventure Destinations
Explore breathtaking mountain ranges, pristine wilderness areas, and thrilling outdoor adventures across the globe.
Explore Adventures
Cultural Immersion
Dive deep into local traditions, ancient history, and vibrant communities that define the soul of each destination.
Discover Culture
Sustainable Destinations
Visit eco-friendly locations that prioritize conservation and support local communities through responsible tourism.
Go Sustainable
Luxury Escapes
Indulge in extraordinary experiences at world-class resorts and exclusive destinations that redefine luxury travel.
Experience Luxury
Travel Packages
Choose from our thoughtfully designed travel packages that cater to different budgets and travel styles. Each package includes expert guidance, curated experiences, and comprehensive support throughout your journey.
Explorer
$1,299
7-10 Days
- Budget-friendly accommodations
- Local transportation guidance
- Cultural activity recommendations
- 24/7 travel support
- Digital travel guide
- Group travel discounts
Choose Explorer
Adventurer
$2,499
10-14 Days
- Mid-range accommodations
- Guided adventure activities
- Cultural immersion experiences
- Professional photography session
- Sustainable tourism focus
- Personalized itinerary
- Travel insurance included
Choose Adventurer
Connoisseur
$4,999
14-21 Days
- Luxury accommodations
- Private guided experiences
- Exclusive access opportunities
- Gourmet dining experiences
- Personal travel concierge
- Premium transportation
- Comprehensive travel coverage
Choose Connoisseur
Custom Travel Plans
Let us create a personalized travel experience tailored to your interests, budget, and travel style. Our custom plans are built around our five core travel categories to ensure an authentic and meaningful journey.
Adventure & Outdoors
Custom adventure itineraries featuring hiking, climbing, water sports, and outdoor exploration tailored to your skill level and interests.
Plan Adventure
Cultural Immersion
Deep cultural experiences connecting you with local communities, traditions, festivals, and authentic cultural exchanges.
-
Explore Culture
Sustainable Tourism
Eco-conscious travel plans that minimize environmental impact while supporting local communities and conservation efforts.
Go Green
Budget & Solo Travel
Cost-effective solo travel plans with safety guidance, budget optimization, and confidence-building resources for independent travelers.
Travel Solo
Luxury & Unique Experiences
Exclusive luxury experiences and once-in-a-lifetime opportunities that emphasize value, uniqueness, and exceptional service.
-
Experience Luxury
Ready to Start Your Journey?
Let us help you create unforgettable travel experiences that align with your passions, values, and dreams. Contact our travel experts today to begin planning your next adventure.
Get Started Today