<!--
@type: Call To Action (CTA)
@industry: Travel
@style: Light
@category: Page Section, Content, Sale
@framework: Tailwind
@license: Free
-->
<style>
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fadeInUp {
animation: fadeInUp 0.8s ease-out forwards;
}
.newsletter-input {
backdrop-filter: blur(10px);
transition: all 0.3s ease;
}
.newsletter-input:focus {
box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}
</style>
<section class="bg-gradient-to-br from-emerald-50 via-gray-50 to-emerald-50 relative overflow-hidden py-16 md:py-20">
<div class="relative z-10">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div
class="bg-gradient-to-br from-emerald-100 via-gray-50 to-red-100 rounded-3xl p-8 lg:p-12 border border-gray-300 shadow-xl backdrop-blur-sm animate-fadeInUp">
<div class="max-w-4xl mx-auto text-center">
<div
class="inline-flex items-center px-4 py-2 bg-white/80 backdrop-blur-sm rounded-full shadow-lg mb-6 border border-emerald-100">
<span class="w-2 h-2 bg-red-500 rounded-full mr-2"></span>
<span class="text-sm font-medium text-gray-700">Stay Updated</span>
</div>
<h3 class="text-3xl lg:text-4xl font-bold text-gray-900 mb-4">
Get <span class="text-emerald-600">Exclusive</span> Travel
<span class="text-red-500">Deals</span>
</h3>
<p class="text-lg text-gray-600 mb-8 max-w-2xl mx-auto">
Subscribe to our newsletter and be the first to know about amazing destinations, special offers, and
travel tips from our experts.
</p>
<div class="flex flex-col sm:flex-row gap-4 max-w-md mx-auto">
<input type="email" placeholder="Enter your email address"
class="newsletter-input bg-white border border-emerald-500 flex-1 px-6 py-4 rounded-full text-gray-700 placeholder-gray-500 focus:outline-none focus:ring-0">
<button
class="bg-gradient-to-r from-red-500 to-red-600 hover:from-red-600 hover:to-red-700 text-white font-semibold px-8 py-4 rounded-full shadow-lg hover:shadow-xl transform hover:scale-105 transition-all duration-300 whitespace-nowrap">
Subscribe Now
</button>
</div>
<p class="text-sm text-gray-500 mt-4">
Join 50,000+ travelers who trust us for the best deals. Unsubscribe anytime.
</p>
</div>
</div>
</div>
</div>
</section>