/* Add these new 3D animation styles to your existing CSS */

/* 3D Card Animations */
.category-card {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: perspective(1000px) rotateX(0) rotateY(0) translateZ(0);
}

.category-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateZ(20px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 100px rgba(59, 130, 246, 0.2);
}

/* Feature Cards 3D Effect */
.feature-card {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: perspective(800px) rotateX(0) rotateY(0) translateZ(0);
}

.feature-card:hover {
    transform: perspective(800px) rotateX(8deg) rotateY(-5deg) translateZ(30px);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.4),
        -20px -20px 60px rgba(255, 255, 255, 0.05);
}

/* Deal Cards 3D Flip */
.deal-card {
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.deal-card:hover {
    transform: perspective(1000px) rotateY(10deg) rotateX(5deg) translateZ(30px);
}

.deal-card:hover::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg,
            rgba(59, 130, 246, 0.1),
            rgba(139, 92, 246, 0.1),
            rgba(236, 72, 153, 0.1));
    border-radius: 1.25rem;
    z-index: -1;
    transform: translateZ(-20px);
    filter: blur(20px);
}

/* Travel Cards 3D Depth */
.travel-card {
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.travel-card:hover {
    transform: perspective(1200px) rotateX(-8deg) rotateY(8deg) translateZ(40px);
}

.travel-card .travel-icon {
    transform: translateZ(30px);
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.travel-card:hover .travel-icon {
    transform: translateZ(60px) scale(1.2);
}

/* CTA Button 3D Press Effect */
.cta-button {
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%,
            rgba(0, 0, 0, 0.1) 100%);
    border-radius: 2rem;
    transform: translateZ(-10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: perspective(500px) translateZ(15px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4),
        0 0 60px rgba(139, 92, 246, 0.3);
}

.cta-button:active {
    transform: perspective(500px) translateZ(5px);
    transition: transform 0.1s ease;
}

/* WhatsApp Widget 3D Tilt */
.chat-container {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: perspective(1000px) rotateX(0) rotateY(0);
}

.chat-container:hover {
    transform: perspective(1000px) rotateX(3deg) rotateY(-3deg);
}

/* Hero Section 3D Parallax */
.hero-content {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-title {
    transform: translateZ(50px);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    transform: translateZ(30px);
}

/* Stats Counter 3D Pop */
.stat-item {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-item:hover {
    transform: perspective(800px) translateZ(20px);
}

.stat-number {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-item:hover .stat-number {
    transform: scale(1.2) translateZ(30px);
}

/* 3D Floating Animation for Badges */
.badge {
    transform-style: preserve-3d;
    animation: float3d 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.badge:hover {
    animation-play-state: paused;
    transform: perspective(500px) rotateX(10deg) translateZ(20px);
}

@keyframes float3d {

    0%,
    100% {
        transform: perspective(500px) translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }

    33% {
        transform: perspective(500px) translate3d(0, -10px, 10px) rotateX(5deg) rotateY(5deg);
    }

    66% {
        transform: perspective(500px) translate3d(0, 5px, -5px) rotateX(-3deg) rotateY(-3deg);
    }
}

/* 3D Card Stack Effect for Steps */
.step-card {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.step-card:hover {
    transform: perspective(1000px) rotateY(15deg) translateZ(40px);
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.2);
}

.step-card:nth-child(2):hover {
    transform: perspective(1000px) rotateY(-15deg) translateZ(40px);
    box-shadow: 20px 0 40px rgba(0, 0, 0, 0.2);
}

.step-card:nth-child(3):hover {
    transform: perspective(1000px) rotateX(15deg) translateZ(40px);
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.2);
}

/* 3D Process Icons */
.process-step {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.process-step:hover {
    transform: perspective(800px) translateZ(30px);
}

.process-icon {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.process-step:hover .process-icon {
    transform: perspective(800px) rotateY(180deg) translateZ(40px);
}

/* 3D Navigation Menu */
.nav-link {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0) translateZ(-10px);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link:hover {
    transform: perspective(500px) translateZ(10px);
}

.nav-link:hover::before {
    transform: scaleX(1) translateZ(0);
    transform-origin: left;
}

/* 3D Social Links */
.social-link {
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        background 0.3s ease;
    position: relative;
}

.social-link:hover {
    transform: perspective(500px) rotateY(180deg) translateZ(20px);
}

.social-link i {
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.social-link:hover i {
    transform: rotateY(-180deg) translateZ(10px);
}

/* 3D Logo Animation */
.logo {
    transform-style: preserve-3d;
    perspective: 500px;
}

.logo-icon {
    transform-style: preserve-3d;
    animation: logoSpin 20s linear infinite;
    transform-origin: center;
}

@keyframes logoSpin {
    0% {
        transform: perspective(500px) rotateY(0deg) rotateX(0deg);
    }

    25% {
        transform: perspective(500px) rotateY(90deg) rotateX(10deg);
    }

    50% {
        transform: perspective(500px) rotateY(180deg) rotateX(0deg);
    }

    75% {
        transform: perspective(500px) rotateY(270deg) rotateX(-10deg);
    }

    100% {
        transform: perspective(500px) rotateY(360deg) rotateX(0deg);
    }
}

/* 3D Mobile Menu */
.mobile-menu.active {
    transform-style: preserve-3d;
    animation: menuSlideIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes menuSlideIn {
    0% {
        transform: perspective(1000px) rotateX(-90deg) translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: perspective(1000px) rotateX(0deg) translateY(0);
        opacity: 1;
    }
}

/* 3D Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1000;
}

.scroll-indicator:hover {
    transform: perspective(500px) rotateX(15deg) rotateY(15deg) translateZ(20px);
    background: rgba(59, 130, 246, 0.3);
}

.scroll-indicator i {
    transform-style: preserve-3d;
    animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateZ(0) translateY(0);
    }

    50% {
        transform: translateZ(10px) translateY(-5px);
    }
}

/* 3D Gradient Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    transform-style: preserve-3d;
    animation: gradientMove 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes gradientMove {

    0%,
    100% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    }

    25% {
        transform: perspective(1000px) rotateX(5deg) rotateY(10deg);
    }

    50% {
        transform: perspective(1000px) rotateX(-5deg) rotateY(-10deg);
    }

    75% {
        transform: perspective(1000px) rotateX(10deg) rotateY(5deg);
    }
}

/* Add 3D effect to animated text */
#animatedExample {
    display: inline-block;
    transform-style: preserve-3d;
    animation: text3d 3s ease-in-out infinite;
}

@keyframes text3d {

    0%,
    100% {
        transform: perspective(500px) translateZ(0) rotateX(0deg);
    }

    50% {
        transform: perspective(500px) translateZ(20px) rotateX(10deg);
    }
}

/* Responsive adjustments for 3D effects */
@media (max-width: 768px) {

    /* Reduce 3D intensity on mobile */
    .category-card:hover,
    .feature-card:hover,
    .deal-card:hover,
    .travel-card:hover {
        transform: perspective(800px) rotateX(3deg) rotateY(3deg) translateZ(10px);
    }

    .cta-button:hover {
        transform: perspective(500px) translateZ(8px);
    }

    /* Disable complex 3D on very small screens */
    @media (max-width: 480px) {

        .category-card,
        .feature-card,
        .deal-card,
        .travel-card {
            transform-style: flat;
        }

        .category-card:hover,
        .feature-card:hover,
        .deal-card:hover,
        .travel-card:hover {
            transform: translateY(-5px);
        }
    }
}

/* Performance optimization for 3D */
.category-card,
.feature-card,
.deal-card,
.travel-card,
.cta-button {
    will-change: transform, box-shadow;
    backface-visibility: hidden;
}





/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: #f1f5f9;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #60a5fa;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 4rem;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: flex;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 10rem 0 6rem;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-title span {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.animated-text-container {
    margin: 2rem auto;
    max-width: 28rem;
}

.search-example {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 1rem 1.5rem;
}

.example-text {
    font-size: 1rem;
    color: #94a3b8;
}

@media (min-width: 768px) {
    .example-text {
        font-size: 1.125rem;
    }
}

.example-query {
    color: #60a5fa;
    font-weight: 600;
    min-width: 12rem;
    text-align: left;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0 3rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .badge {
        font-size: 1rem;
    }
}

.badge i {
    color: #10b981;
}

.whatsapp-widget {
    max-width: 24rem;
    margin: 2rem auto 3rem;
}

.chat-container {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
}

.message.user {
    background: rgba(59, 130, 246, 0.2);
    align-self: flex-end;
    border-bottom-right-radius: 0.25rem;
}

.message.bot {
    background: rgba(30, 41, 59, 0.7);
    align-self: flex-start;
    border-bottom-left-radius: 0.25rem;
}

.chat-input {
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 0.75rem 1.25rem;
    color: white;
    font-size: 0.875rem;
}

.chat-input button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 50%;
    width: 2.75rem;
    height: 2.75rem;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 2rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.5);
}

/* Search Categories */
.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 3rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.category-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.category-name {
    font-weight: 600;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .category-name {
        font-size: 1rem;
    }
}

/* Features Section */
.features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.25rem;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* How It Works */
.steps-container {
    position: relative;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .steps-container {
        padding: 4rem 0;
    }
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    transform: translateY(-50%);
    display: none;
}

@media (min-width: 768px) {
    .timeline-line {
        display: block;
    }
}

.steps-grid {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.step-desc {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.step-example {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 0.75rem;
    padding: 0.75rem;
    font-size: 0.875rem;
    color: #cbd5e1;
}

/* Live Deals */
.deals-process {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .deals-process {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-step {
    text-align: center;
}

.process-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.process-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.deals-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .deals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.deal-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s;
}

.deal-card.animated {
    animation: fadeInUp 0.6s ease-out forwards;
}

.deal-header {
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
    text-align: center;
}

.deal-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.deal-name {
    font-weight: 600;
}

.deal-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #fbbf24;
}

.deal-desc {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.deal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #94a3b8;
}

.deal-button {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    border-radius: 0.75rem;
    padding: 0.75rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

/* Benefits */
.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-desc {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Travel Services */
.travel-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .travel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .travel-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.travel-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
}

.travel-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.25rem;
}

.travel-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.travel-query {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 0.75rem;
    padding: 0.75rem;
    font-size: 0.875rem;
    color: #cbd5e1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
    border-radius: 2rem;
    margin: 2rem 0;
}

.final-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .final-title {
        font-size: 2.5rem;
    }
}

.final-subtitle {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #60a5fa;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: background 0.3s;
}

.social-link:hover {
    background: #3b82f6;
    color: white;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}