:root {
    --primary: #FF6B6B;
    --secondary: #4D79FF;
    --dark: #1A1A2E;
    --light: #F5F5F5;
    --accent: #FFB74D;
    --text: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--text);
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    padding: 15px 5%;
    background-color: rgba(255, 255, 255, 0.98);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(-5deg);
}

.logo span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

nav ul li a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 10s linear;
    z-index: 1;
    transform: scale(1);
}

.hero-bg.active {
    opacity: 1;
    transform: scale(1.1);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-bg:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1464037866556-6812c9d1c72e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.hero-bg:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.hero-bg:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1518391846015-55a9cc003b25?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.hero-bg:nth-child(4) {
    background-image: url('https://images.unsplash.com/photo-1503917988258-f87a78e3c995?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    transform: translateY(50px);
    opacity: 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.search-box {
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.search-box::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    z-index: -1;
    border-radius: 60px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-box:hover::before {
    opacity: 1;
    animation: rotateGradient 3s linear infinite;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.search-box input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    outline: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box:hover input {
    transform: translateX(5px);
}

.search-box button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.search-box button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.search-box button:hover {
    background: #e04444;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.search-box button:hover::before {
    left: 100%;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* Categories */
.categories {
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1491466424936-e304919aada7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    transform: translateY(30px);
    opacity: 0;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    transition: width 0.5s ease;
}

.section-title:hover::after {
    width: 120px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform: translateY(50px);
    opacity: 0;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.7));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:nth-child(1) { transition-delay: 0.1s; }
.category-card:nth-child(2) { transition-delay: 0.2s; }
.category-card:nth-child(3) { transition-delay: 0.3s; }
.category-card:nth-child(4) { transition-delay: 0.4s; }

.category-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.category-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s ease;
}

.category-card:hover .category-img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.category-info {
    padding: 20px;
    position: relative;
    z-index: 2;
    background: white;
    transition: transform 0.3s ease;
}

.category-card:hover .category-info {
    transform: translateY(-10px);
}

.category-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.category-card:hover .category-info h3 {
    color: var(--primary);
}

.category-info p {
    color: #666;
    margin-bottom: 15px;
}

.explore-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.explore-btn:hover {
    background: #e04444;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.explore-btn:hover::before {
    left: 100%;
}

/* Featured Places */
.featured {
    padding: 100px 5%;
    background: #f9f9f9;
    position: relative;
}

.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1507608616759-54f48f0af0ee?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
}

.places-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 10px 25px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(20px);
    opacity: 0;
    border-radius: 50px;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(255, 107, 107, 0.1);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.tab-btn:hover::before {
    transform: scale(1);
    opacity: 1;
}

.tab-btn:nth-child(1) { transition-delay: 0.1s; }
.tab-btn:nth-child(2) { transition-delay: 0.2s; }
.tab-btn:nth-child(3) { transition-delay: 0.3s; }
.tab-btn:nth-child(4) { transition-delay: 0.4s; }
.tab-btn:nth-child(5) { transition-delay: 0.5s; }

.tab-btn.active {
    color: var(--primary);
    font-weight: 600;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.tab-btn:hover {
    color: var(--primary);
    transform: translateY(-3px) translateY(20px);
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.place-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0.95);
    opacity: 0;
    position: relative;
}

.place-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.7));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.place-card:hover::before {
    opacity: 1;
}

.place-card.animated {
    transform: scale(1);
    opacity: 1;
}

.place-card:hover {
    transform: translateY(-10px) scale(1.02) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.place-img-container {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.place-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s ease;
}

.place-card:hover .place-img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.place-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.place-info {
    padding: 20px;
    position: relative;
    z-index: 2;
    background: white;
    transition: transform 0.3s ease;
}

.place-card:hover .place-info {
    transform: translateY(-10px);
}

.place-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.place-card:hover .place-info h3 {
    color: var(--primary);
}

.place-location {
    display: flex;
    align-items: center;
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.place-location i {
    margin-right: 5px;
    color: var(--primary);
}

.place-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between;
}

.stars {
    color: var(--accent);
    margin-right: 10px;
}

.price {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 5%;
    background: var(--dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1491466424936-e304919aada7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-right: 30px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
}

.testimonial-card:last-child {
    margin-right: 0;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.5;
}

.testimonial-text::before {
    position: absolute;
    top: -20px;
    left: -15px;
}

.testimonial-text::after {
    position: absolute;
    bottom: -40px;
    right: -15px;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Newsletter */
.newsletter {
    padding: 100px 5%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1483729558449-99ef09a8c325?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0.3;
    z-index: 0;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    transform: translateY(30px);
    opacity: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
    transform: translateY(30px);
    opacity: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    transform: scale(0.9);
    opacity: 0;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.newsletter-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    z-index: -1;
    border-radius: 50px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.newsletter-form:hover::before {
    opacity: 1;
    animation: rotateGradient 3s linear infinite;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.newsletter-form button:hover {
    background: #e04444;
    transform: translateY(-2px);
}

.newsletter-form button:hover::before {
    left: 100%;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 100px 5% 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1507608616759-54f48f0af0ee?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    transform: translateY(30px);
    opacity: 0;
    display: inline-block;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-about p {
    opacity: 0.7;
    margin-bottom: 20px;
    line-height: 1.6;
    transform: translateY(30px);
    opacity: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    transform: translateY(30px);
    opacity: 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a:nth-child(1) { transition-delay: 0.1s; }
.social-links a:nth-child(2) { transition-delay: 0.2s; }
.social-links a:nth-child(3) { transition-delay: 0.3s; }
.social-links a:nth-child(4) { transition-delay: 0.4s; }

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-links h3:hover::after {
    width: 60px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links li:nth-child(1) { transition-delay: 0.1s; }
.footer-links li:nth-child(2) { transition-delay: 0.2s; }
.footer-links li:nth-child(3) { transition-delay: 0.3s; }
.footer-links li:nth-child(4) { transition-delay: 0.4s; }
.footer-links li:nth-child(5) { transition-delay: 0.5s; }

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    transform: translateY(30px);
    opacity: 0;
    position: relative;
    z-index: 1;
}

/* Animation Classes */
.animate {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }
    
    nav ul {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .search-box {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
    }
    
    .search-box input {
        margin-bottom: 10px;
        border-radius: 50px;
    }
    
    .search-box button {
        border-radius: 50px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 50px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 50px;
    }
    
    .testimonial-card {
        flex: 0 0 80%;
        padding: 30px;
    }
}
/* Special greeting element */
.greeting {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #121314;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 123, 255, 0.3);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards 1.5s;
    max-width: 300px;
}

.greeting::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #bac3cb transparent;
}
@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Button styles with pulse animation */
.btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
}

.btn:active {
    transform: translateY(1px);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}
