* { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --primary-yellow: #FFD700;
            --secondary-orange: #FFA500;
            --success-green: #10B981;
            --bg-light: #FFFFFF;
            --bg-light-alt: #F8F9FA;
            --bg-dark: #000000;
            --bg-dark-alt: #1A1A1A;
            --text-light: #000000;
            --text-light-secondary: #666666;
            --text-dark: #FFFFFF;
            --text-dark-secondary: #AEAEAE;
            --border-light: #E0E0E0;
            --border-dark: #333333;
        }
        
        html { scroll-behavior: smooth; }
        body { font-family: 'Inter', sans-serif; overflow-x: hidden; background: var(--bg-light); color: var(--text-light); transition: all 0.3s ease; }
        body.dark-mode { background: var(--bg-dark); color: var(--text-dark); }
        
        /* Loading Animation */
        .page-loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, #FFD700, #FFA500); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.5s ease, visibility 0.5s ease; }
        .page-loader.hidden { opacity: 0; visibility: hidden; }
        .loader-logo { font-size: 48px; font-weight: 900; color: #000; margin-bottom: 20px; animation: pulse-loader 1.5s ease-in-out infinite; }
        @keyframes pulse-loader { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
        .loader-spinner { width: 60px; height: 60px; border: 5px solid rgba(0,0,0,0.1); border-top: 5px solid #000; border-radius: 50%; animation: spin 1s linear infinite; }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        .loader-text { margin-top: 20px; font-size: 16px; font-weight: 600; color: #000; animation: blink-text 1.5s ease-in-out infinite; }
        @keyframes blink-text { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
        
        /* Scroll Animations */
        .reveal { opacity: 0; transform: translateY(50px); transition: all 0.6s ease; }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.6s ease; }
        .reveal-left.active { opacity: 1; transform: translateX(0); }
        .reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.6s ease; }
        .reveal-right.active { opacity: 1; transform: translateX(0); }
        .reveal-scale { opacity: 0; transform: scale(0.8); transition: all 0.6s ease; }
        .reveal-scale.active { opacity: 1; transform: scale(1); }
        
        /* Header */
        header { position: fixed; top: 0; left: 0; right: 0; background: var(--bg-dark); padding: 0.7rem 4%; display: flex; justify-content: space-between; align-items: center; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.15); animation: slideDown 0.5s ease; }
        @keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
        .logo-container img { height: 36px; width: auto; max-width: 160px; object-fit: contain; transition: transform 0.3s ease; }
        .logo-container img:hover { transform: scale(1.05); }
        nav { display: flex; gap: 2rem; align-items: center; }
        nav a { color: #FFF; text-decoration: none; font-weight: 500; font-size: 14px; transition: all 0.3s ease; position: relative; }
        nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--primary-yellow); transition: width 0.3s ease; }
        nav a:hover { color: var(--primary-yellow); transform: translateY(-2px); }
        nav a:hover::after { width: 100%; }
        .header-right { display: flex; align-items: center; gap: 0.8rem; }
        .theme-toggle { width: 50px; height: 26px; background: #333; border-radius: 30px; cursor: pointer; position: relative; transition: all 0.3s ease; }
        .theme-toggle:hover { transform: scale(1.05); }
        .theme-toggle::before { content: '☀️'; position: absolute; left: 5px; top: 50%; transform: translateY(-50%); font-size: 11px; }
        .theme-toggle::after { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: var(--primary-yellow); border-radius: 50%; transition: all 0.3s ease; }
        body.dark-mode .theme-toggle { background: var(--primary-yellow); }
        body.dark-mode .theme-toggle::before { content: '🌙'; left: auto; right: 5px; }
        body.dark-mode .theme-toggle::after { transform: translateX(24px); background: #000; }
        .btn-book { background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-orange)); color: #000; padding: 9px 18px; border-radius: 8px; font-weight: 700; font-size: 13px; border: none; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; }
        .btn-book:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,215,0,0.4); }
        .mobile-menu-btn { display: none; background: none; border: none; color: #FFF; font-size: 20px; cursor: pointer; }
        
        /* AI Chatbot */
        .chatbot-container { position: fixed; bottom: 25px; right: 25px; z-index: 999; }
        .chatbot-button { width: 65px; height: 65px; background: linear-gradient(135deg, #FFD700, #FFA500); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 8px 30px rgba(255,215,0,0.6); transition: all 0.3s ease; animation: float-chat 3s ease-in-out infinite; position: relative; }
        @keyframes float-chat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
        .chatbot-button:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0 12px 40px rgba(255,215,0,0.8); }
        .chatbot-button i { font-size: 30px; color: #000; }
        .chatbot-badge { position: absolute; top: -5px; right: -5px; width: 24px; height: 24px; background: #EF4444; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #FFF; border: 3px solid #FFF; animation: pulse-badge 2s ease-in-out infinite; }
        @keyframes pulse-badge { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }
        .chatbot-window { position: absolute; bottom: 85px; right: 0; width: 380px; height: 550px; background: #FFF; border-radius: 20px; box-shadow: 0 15px 60px rgba(0,0,0,0.4); display: none; flex-direction: column; overflow: hidden; animation: slideUp 0.3s ease; }
        @keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
        body.dark-mode .chatbot-window { background: #1A1A1A; box-shadow: 0 15px 60px rgba(255,215,0,0.4); }
        .chatbot-window.active { display: flex; }
        .chatbot-header { background: linear-gradient(135deg, #FFD700, #FFA500); padding: 1.2rem; display: flex; align-items: center; justify-content: space-between; }
        .chatbot-header-left { display: flex; align-items: center; gap: 12px; }
        .chatbot-avatar { width: 45px; height: 45px; background: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #FFD700; }
        .chatbot-info h4 { font-size: 16px; font-weight: 700; color: #000; margin-bottom: 2px; }
        .chatbot-status { font-size: 12px; color: #000; display: flex; align-items: center; gap: 5px; }
        .status-dot { width: 8px; height: 8px; background: #10B981; border-radius: 50%; animation: blink-dot 1.5s infinite; }
        @keyframes blink-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
        .chatbot-close { background: none; border: none; color: #000; font-size: 24px; cursor: pointer; padding: 5px; transition: transform 0.3s ease; }
        .chatbot-close:hover { transform: rotate(90deg); }
        .chatbot-messages { flex: 1; padding: 1.5rem; overflow-y: auto; background: #FFF; }
        body.dark-mode .chatbot-messages { background: #000; }
        .message { margin-bottom: 1rem; display: flex; gap: 10px; animation: messageSlide 0.3s ease; }
        @keyframes messageSlide { from { transform: translateX(-20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
        .message.bot { flex-direction: row; }
        .message.user { flex-direction: row-reverse; }
        .message-avatar { width: 35px; height: 35px; background: linear-gradient(135deg, #FFD700, #FFA500); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #000; flex-shrink: 0; }
        .message.user .message-avatar { background: #E5E7EB; }
        .message-content { max-width: 70%; padding: 0.8rem 1rem; border-radius: 15px; font-size: 14px; line-height: 1.5; }
        .message.bot .message-content { background: #F3F4F6; color: #000; border-bottom-left-radius: 4px; }
        body.dark-mode .message.bot .message-content { background: #1A1A1A; color: #FFF; }
        .message.user .message-content { background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; border-bottom-right-radius: 4px; }
        .quick-replies { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
        .quick-reply-btn { padding: 0.5rem 1rem; background: #FFF; border: 2px solid #FFD700; border-radius: 20px; font-size: 13px; font-weight: 600; color: #000; cursor: pointer; transition: all 0.3s ease; }
        body.dark-mode .quick-reply-btn { background: #1A1A1A; color: #FFF; }
        .quick-reply-btn:hover { background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; transform: translateY(-2px); }
        .chatbot-input-area { padding: 1rem; border-top: 1px solid #E0E0E0; display: flex; gap: 0.8rem; }
        body.dark-mode .chatbot-input-area { border-top-color: #333; }
        .chatbot-input { flex: 1; padding: 0.8rem 1rem; border: 2px solid #E0E0E0; border-radius: 25px; font-size: 14px; outline: none; transition: all 0.3s ease; background: #FFF; color: #000; }
        body.dark-mode .chatbot-input { background: #000; border-color: #333; color: #FFF; }
        .chatbot-input:focus { border-color: #FFD700; box-shadow: 0 0 0 3px rgba(255,215,0,0.1); }
        .chatbot-send-btn { width: 45px; height: 45px; background: linear-gradient(135deg, #FFD700, #FFA500); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; }
        .chatbot-send-btn:hover { transform: scale(1.1) rotate(15deg); }
        .chatbot-send-btn i { font-size: 16px; color: #000; }
        .typing-indicator { display: flex; gap: 5px; padding: 0.8rem 1rem; }
        .typing-dot { width: 8px; height: 8px; background: #9CA3AF; border-radius: 50%; animation: typing 1.4s infinite; }
        .typing-dot:nth-child(2) { animation-delay: 0.2s; }
        .typing-dot:nth-child(3) { animation-delay: 0.4s; }
        @keyframes typing { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-10px); } }
        
        /* Hero Section */
        .hero { margin-top: 60px; padding: 2.5rem 5% 2rem; background: var(--bg-light); min-height: 90vh; display: flex; align-items: center; }
        body.dark-mode .hero { background: var(--bg-dark); }
        .hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 1400px; margin: 0 auto; }
        .hero-content h1 { font-family: 'Poppins', sans-serif; font-size: 48px; font-weight: 900; line-height: 1.1; margin-bottom: 1rem; }
        .hero-content h1 .highlight { background: linear-gradient(135deg, #FFD700, #FFA500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero-content p { font-size: 16px; line-height: 1.7; color: var(--text-light-secondary); margin-bottom: 1.2rem; }
        body.dark-mode .hero-content p { color: var(--text-dark-secondary); }
        .hero-price { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 1.2rem; }
        .hero-price .price { font-size: 28px; font-weight: 800; color: #FFD700; }
        .hero-price .note { font-size: 12px; color: var(--text-light-secondary); }
        .hero-buttons { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
        .btn-primary, .btn-secondary { padding: 13px 26px; border-radius: 10px; font-weight: 700; font-size: 14px; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
        .btn-primary { background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; box-shadow: 0 4px 15px rgba(255,215,0,0.3); }
        .btn-primary:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 6px 20px rgba(255,215,0,0.5); }
        .btn-secondary { background: transparent; color: var(--text-light); border: 2px solid #E0E0E0; }
        body.dark-mode .btn-secondary { color: var(--text-dark); border-color: #333; }
        .btn-secondary:hover { background: var(--bg-light-alt); transform: translateY(-3px); }
        body.dark-mode .btn-secondary:hover { background: var(--bg-dark-alt); }
        .hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
        .stat-item { transition: transform 0.3s ease; }
        .stat-item:hover { transform: translateY(-5px); }
        .stat-item .number { font-size: 32px; font-weight: 800; background: linear-gradient(135deg, #FFD700, #FFA500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; }
        .stat-item .label { font-size: 12px; color: var(--text-light-secondary); font-weight: 500; }
        body.dark-mode .stat-item .label { color: var(--text-dark-secondary); }
        .hero-image { position: relative; animation: float 6s ease-in-out infinite; }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
        .hero-image img { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); transition: all 0.3s ease; }
        .hero-image img:hover { transform: scale(1.05); box-shadow: 0 25px 70px rgba(255,215,0,0.3); }
        
        /* Stats Counter */
        .stats-counter { padding: 3rem 5%; background: linear-gradient(135deg, #FFD700, #FFA500); }
        .stats-counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1400px; margin: 0 auto; }
        .counter-box { text-align: center; padding: 2rem 1rem; background: rgba(0,0,0,0.1); border-radius: 15px; transition: all 0.3s ease; }
        .counter-box:hover { transform: translateY(-10px); background: rgba(0,0,0,0.2); }
        .counter-number { font-size: 48px; font-weight: 900; color: #000; display: block; margin-bottom: 0.5rem; }
        .counter-label { font-size: 14px; font-weight: 600; color: #000; text-transform: uppercase; letter-spacing: 1px; }
        
        /* Section Title */
        .section-title { text-align: center; font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 800; margin-bottom: 2rem; position: relative; }
        .section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(135deg, #FFD700, #FFA500); border-radius: 2px; }
        
        /* Brands */
        .brands { padding: 3rem 5%; background: var(--bg-light-alt); overflow: hidden; }
        body.dark-mode .brands { background: var(--bg-dark-alt); }
        .brands-slider { overflow: hidden; padding: 1.5rem 0; }
        .brands-track { display: flex; gap: 2rem; animation: scroll 30s linear infinite; }
        .brands-track:hover { animation-play-state: paused; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .brand-item { flex-shrink: 0; width: 130px; height: 70px; background: var(--bg-light); border-radius: 12px; padding: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.3s ease; }
        body.dark-mode .brand-item { background: var(--bg-dark); box-shadow: 0 4px 15px rgba(255,215,0,0.1); }
        .brand-item:hover { transform: translateY(-8px) scale(1.05); box-shadow: 0 12px 30px rgba(255,215,0,0.3); }
        .brand-item img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%); transition: filter 0.3s ease; }
        .brand-item:hover img { filter: grayscale(0%); }
        
        /* How It Works */
        .how-it-works { padding: 4rem 5%; background: var(--bg-light); }
        body.dark-mode .how-it-works { background: var(--bg-dark); }
        .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1400px; margin: 2.5rem auto 0; position: relative; }
        .steps-grid::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, transparent, #FFD700, transparent); z-index: 0; }
        .step-card { text-align: center; position: relative; z-index: 1; transition: all 0.3s ease; }
        .step-card:hover { transform: translateY(-10px); }
        .step-number { width: 80px; height: 80px; margin: 0 auto 1.5rem; background: linear-gradient(135deg, #FFD700, #FFA500); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; font-weight: 900; color: #000; box-shadow: 0 8px 25px rgba(255,215,0,0.3); transition: all 0.3s ease; }
        .step-card:hover .step-number { transform: scale(1.1) rotate(360deg); }
        .step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 0.8rem; }
        .step-card p { font-size: 14px; line-height: 1.6; color: var(--text-light-secondary); }
        body.dark-mode .step-card p { color: var(--text-dark-secondary); }
        
        /* Features */
        .features { padding: 4rem 5%; background: var(--bg-light-alt); }
        body.dark-mode .features { background: var(--bg-dark-alt); }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1400px; margin: 2.5rem auto 0; }
        .feature-card { background: var(--bg-light); padding: 2rem; border-radius: 18px; border: 1px solid #E0E0E0; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all 0.3s ease; }
        body.dark-mode .feature-card { background: var(--bg-dark); border-color: #333; }
        .feature-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 15px 45px rgba(255,215,0,0.3); }
        .feature-icon { width: 65px; height: 65px; background: linear-gradient(135deg, #FFD700, #FFA500); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #000; margin-bottom: 1.2rem; transition: all 0.3s ease; }
        .feature-card:hover .feature-icon { transform: scale(1.1) rotate(5deg); }
        .feature-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 0.8rem; }
        .feature-card p { font-size: 14px; line-height: 1.6; color: var(--text-light-secondary); }
        body.dark-mode .feature-card p { color: var(--text-dark-secondary); }
        
        /* Pricing */
        .pricing-section { padding: 4rem 5%; background: var(--bg-light); }
        body.dark-mode .pricing-section { background: var(--bg-dark); }
        .pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 900px; margin: 2.5rem auto 0; }
        .pricing-card { background: var(--bg-light); padding: 2.5rem; border-radius: 20px; border: 2px solid #E0E0E0; transition: all 0.3s ease; position: relative; }
        body.dark-mode .pricing-card { background: var(--bg-dark-alt); border-color: #333; }
        .pricing-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
        .pricing-card.featured { border-color: #FFD700; transform: scale(1.05); box-shadow: 0 15px 50px rgba(255,215,0,0.3); }
        .pricing-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; padding: 5px 20px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
        .pricing-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 1rem; text-align: center; }
        .pricing-price { font-size: 42px; font-weight: 900; text-align: center; margin-bottom: 2rem; background: linear-gradient(135deg, #FFD700, #FFA500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .pricing-features { list-style: none; margin-bottom: 2rem; }
        .pricing-features li { padding: 0.6rem 0; display: flex; align-items: center; gap: 10px; font-size: 14px; transition: all 0.3s ease; }
        .pricing-features li:hover { transform: translateX(5px); }
        .pricing-features li i { color: #10B981; font-size: 16px; }
        .pricing-btn { width: 100%; padding: 14px; background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; border: none; border-radius: 10px; font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.3s ease; }
        .pricing-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255,215,0,0.5); }
        
        /* Checklist */
        .checklist { padding: 4rem 5%; background: var(--bg-light-alt); }
        body.dark-mode .checklist { background: var(--bg-dark-alt); }
        .checklist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 1400px; margin: 2.5rem auto 0; }
        .check-item { display: flex; align-items: center; gap: 10px; padding: 12px 15px; background: var(--bg-light); border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: all 0.3s ease; }
        body.dark-mode .check-item { background: var(--bg-dark); }
        .check-item:hover { transform: translateX(10px); box-shadow: 0 5px 20px rgba(255,215,0,0.3); }
        .check-item i { color: #10B981; font-size: 16px; flex-shrink: 0; transition: transform 0.3s ease; }
        .check-item:hover i { transform: scale(1.3); }
        .check-item span { font-size: 13px; font-weight: 500; }
        
        /* =========================================
   APP DOWNLOAD SECTION - FIXED & IMPROVED
   ========================================= */

.app-download {
    padding: 5rem 5%;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

body.dark-mode .app-download {
    background: var(--bg-dark);
}

.app-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Phone Mockup - Realistic iPhone Style */
.phone-mockup {
    max-width: 350px;
    margin: 0 auto;
    position: relative;
    animation: float-phone 4s ease-in-out infinite;
}

@keyframes float-phone {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.phone-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9/19;
    background: #1a1a1a;
    border-radius: 45px;
    padding: 15px;
    box-shadow: 
        0 0 0 2px #2a2a2a,
        0 0 0 8px #0a0a0a,
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.phone-frame:hover {
    transform: scale(1.02);
    box-shadow: 
        0 0 0 2px #2a2a2a,
        0 0 0 8px #0a0a0a,
        0 35px 90px rgba(0, 0, 0, 0.6),
        0 0 120px rgba(255, 215, 0, 0.4);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Phone Buttons */
.phone-buttons .volume-up,
.phone-buttons .volume-down,
.phone-buttons .power-btn {
    position: absolute;
    background: #2a2a2a;
    border-radius: 2px;
}

.phone-buttons .volume-up {
    left: -8px;
    top: 100px;
    width: 3px;
    height: 50px;
}

.phone-buttons .volume-down {
    left: -8px;
    top: 170px;
    width: 3px;
    height: 50px;
}

.phone-buttons .power-btn {
    right: -8px;
    top: 150px;
    width: 3px;
    height: 70px;
}

/* App Info Section */
.app-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    color: var(--text-light);
}

body.dark-mode .app-info h2 {
    color: var(--text-dark);
}

.app-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light-secondary);
}

body.dark-mode .app-info p {
    color: var(--text-dark-secondary);
}

/* App Features */
.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-light-alt);
    border-radius: 12px;
    transition: all 0.3s ease;
}

body.dark-mode .app-feature-item {
    background: var(--bg-dark-alt);
}

.app-feature-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
}

.app-feature-item i {
    font-size: 20px;
    color: #FFD700;
}

.app-feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

body.dark-mode .app-feature-item span {
    color: var(--text-dark);
}

/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.store-btn {
    transition: all 0.3s ease;
    display: block;
}

.store-btn img {
    height: 55px;
    width: auto;
    display: block;
}

.store-btn:hover {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.4));
}

/* QR Box */
.qr-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem;
    background: var(--bg-light-alt);
    border: 2px dashed #FFD700;
    border-radius: 15px;
    transition: all 0.3s ease;
    max-width: 400px;
}

body.dark-mode .qr-box {
    background: var(--bg-dark-alt);
}

.qr-box:hover {
    transform: scale(1.02);
    border-color: #FFA500;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.qr-code {
    width: 110px;
    height: 110px;
    background: #FFF;
    padding: 10px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code img {
    width: 100%;
    height: 100%;
    display: block;
}

.qr-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

body.dark-mode .qr-text h4 {
    color: var(--text-dark);
}

.qr-text p {
    font-size: 14px;
    color: var(--text-light-secondary);
    line-height: 1.5;
}

body.dark-mode .qr-text p {
    color: var(--text-dark-secondary);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .app-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .phone-mockup {
        order: -1;
        max-width: 280px;
    }
    
    .app-info {
        align-items: center;
    }
    
    .app-info h2 {
        font-size: 32px;
    }
    
    .app-features {
        max-width: 500px;
        margin: 0 auto 2rem;
    }
    
    .store-buttons {
        justify-content: center;
    }
    
    .qr-box {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .phone-mockup {
        max-width: 240px;
    }
    
    .app-info h2 {
        font-size: 28px;
    }
    
    .app-features {
        grid-template-columns: 1fr;
    }
    
    .store-btn img {
        height: 45px;
    }
    
    .qr-box {
        flex-direction: column;
        text-align: center;
    }
}

        /* Reviews */
        .reviews { padding: 4rem 5%; background: var(--bg-light-alt); }
        body.dark-mode .reviews { background: var(--bg-dark-alt); }
        .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1400px; margin: 2.5rem auto 0; }
        .review-card { background: var(--bg-light); padding: 2rem; border-radius: 18px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all 0.3s ease; }
        body.dark-mode .review-card { background: var(--bg-dark); }
        .review-card:hover { transform: translateY(-10px); box-shadow: 0 15px 45px rgba(255,215,0,0.3); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 1.2rem; }
        .review-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, #FFD700, #FFA500); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: #000; transition: transform 0.3s ease; }
        .review-card:hover .review-avatar { transform: scale(1.2) rotate(360deg); }
        .review-info h4 { font-size: 16px; font-weight: 700; margin-bottom: 0.2rem; }
        .review-info p { font-size: 12px; color: var(--text-light-secondary); }
        .review-stars { color: #FFD700; font-size: 16px; margin-bottom: 0.8rem; }
        .review-text { font-size: 14px; line-height: 1.6; color: var(--text-light-secondary); }
        
        /* FAQ */
        .faq { padding: 4rem 5%; background: var(--bg-light); }
        body.dark-mode .faq { background: var(--bg-dark); }
        .faq-container { max-width: 900px; margin: 2.5rem auto 0; }
        .faq-item { background: var(--bg-light-alt); border: 1px solid #E0E0E0; border-radius: 12px; margin-bottom: 1rem; overflow: hidden; transition: all 0.3s ease; }
        body.dark-mode .faq-item { background: var(--bg-dark-alt); border-color: #333; }
        .faq-item:hover { box-shadow: 0 8px 25px rgba(255,215,0,0.2); transform: translateX(5px); }
        .faq-question { padding: 1.2rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 15px; }
        .faq-question:hover { color: #FFD700; }
        .faq-icon { font-size: 16px; transition: transform 0.3s ease; }
        .faq-item.active .faq-icon { transform: rotate(180deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.5rem; color: var(--text-light-secondary); line-height: 1.7; font-size: 14px; }
        .faq-item.active .faq-answer { max-height: 500px; padding: 0 1.5rem 1.2rem; }
        
        /* Query Form */
        .query-section { padding: 4rem 5%; background: var(--bg-light-alt); }
        body.dark-mode .query-section { background: var(--bg-dark-alt); }
        .query-container { max-width: 900px; margin: 0 auto; background: var(--bg-light); padding: 3rem; border-radius: 25px; box-shadow: 0 15px 50px rgba(0,0,0,0.1); transition: all 0.3s ease; }
        .query-container:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(255,215,0,0.3); }
        body.dark-mode .query-container { background: var(--bg-dark); }
        .query-header { text-align: center; margin-bottom: 2.5rem; }
        .query-header h2 { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 800; margin-bottom: 0.8rem; }
        .query-header p { font-size: 16px; color: var(--text-light-secondary); }
        .query-form { display: grid; gap: 1.5rem; }
        .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
        .form-group label { font-weight: 600; font-size: 14px; }
        .form-group input, .form-group select, .form-group textarea { padding: 0.9rem 1.2rem; border: 2px solid #E0E0E0; border-radius: 12px; font-size: 15px; outline: none; transition: all 0.3s ease; background: var(--bg-light); color: var(--text-light); }
        body.dark-mode .form-group input, body.dark-mode .form-group select, body.dark-mode .form-group textarea { background: var(--bg-dark-alt); border-color: #333; color: var(--text-dark); }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #FFD700; box-shadow: 0 0 0 3px rgba(255,215,0,0.1); transform: scale(1.02); }
        .form-group textarea { min-height: 150px; resize: vertical; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
        .submit-btn { padding: 1rem 2rem; background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; border: none; border-radius: 12px; font-weight: 700; font-size: 16px; cursor: pointer; transition: all 0.3s ease; margin-top: 1rem; }
        .submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,215,0,0.5); }
        .query-contact-info { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid #E0E0E0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
        .contact-item { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; transition: transform 0.3s ease; }
        .contact-item:hover { transform: translateY(-5px); }
        .contact-icon { width: 55px; height: 55px; background: linear-gradient(135deg, #FFD700, #FFA500); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #000; transition: all 0.3s ease; }
        .contact-item:hover .contact-icon { transform: rotate(360deg); }
        .contact-item h4 { font-size: 14px; font-weight: 700; }
        .contact-item p { font-size: 13px; color: var(--text-light-secondary); }
        
        /* Footer */
        footer { background: var(--bg-dark); color: #FFF; padding: 3.5rem 5% 1.5rem; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; max-width: 1400px; margin: 0 auto 2.5rem; }
        .footer-logo { margin-bottom: 1rem; }
        .footer-logo img { height: 35px; width: auto; max-width: 180px; transition: transform 0.3s ease; }
        .footer-logo img:hover { transform: scale(1.05); }
        .footer-brand p { font-size: 14px; line-height: 1.7; color: #AAA; margin-bottom: 1.2rem; }
        .social-links { display: flex; gap: 0.8rem; }
        .social-link { width: 40px; height: 40px; background: #222; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FFF; text-decoration: none; transition: all 0.3s ease; font-size: 16px; }
        .social-link:hover { background: #FFD700; color: #000; transform: translateY(-5px) rotate(360deg); }
        .footer-col h4 { font-size: 16px; font-weight: 700; margin-bottom: 1rem; color: #FFD700; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 0.6rem; }
        .footer-col ul li a { color: #AAA; text-decoration: none; font-size: 14px; transition: all 0.3s ease; }
        .footer-col ul li a:hover { color: #FFD700; padding-left: 5px; }
        .footer-bottom { border-top: 1px solid #333; padding-top: 1.5rem; text-align: center; color: #888; font-size: 13px; }
        
        .scroll-top { position: fixed; bottom: 100px; right: 25px; width: 50px; height: 50px; background: linear-gradient(135deg, #FFD700, #FFA500); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; font-size: 18px; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 998; }
        .scroll-top.active { opacity: 1; visibility: hidden; }
        .scroll-top:hover { transform: translateY(-5px); }
        
        /* Mobile Responsive */
        @media (max-width: 1200px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .checklist-grid { grid-template-columns: repeat(3, 1fr); }
            .steps-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-counter-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 968px) {
            nav { position: fixed; top: 60px; left: -100%; width: 100%; height: calc(100vh - 60px); background: var(--bg-dark); flex-direction: column; padding: 2rem; transition: left 0.3s ease; }
            nav.active { left: 0; }
            .mobile-menu-btn { display: block; }
            .logo-container img { height: 32px; max-width: 140px; }
            .hero-container { grid-template-columns: 1fr; }
            .hero-image { order: -1; }
            .hero-content h1 { font-size: 36px; }
            .features-grid, .reviews-grid { grid-template-columns: 1fr; }
            .checklist-grid { grid-template-columns: repeat(2, 1fr); }
            .app-container { grid-template-columns: 1fr; text-align: center; }
            .phone-mockup { order: -1; }
            .store-buttons { justify-content: center; }
            .footer-grid { grid-template-columns: 1fr; }
            .steps-grid { grid-template-columns: 1fr; }
            .steps-grid::before { display: none; }
            .pricing-grid { grid-template-columns: 1fr; }
            .pricing-card.featured { transform: scale(1); }
            .chatbot-window { width: calc(100vw - 20px); height: calc(100vh - 150px); right: 10px; bottom: 90px; }
            .form-row, .query-contact-info { grid-template-columns: 1fr; }
        }
        @media (max-width: 576px) {
            .hero-content h1 { font-size: 28px; }
            .checklist-grid, .stats-counter-grid { grid-template-columns: 1fr; }
            .qr-box { flex-direction: column; }
        }

/* =========================================================================
   🎨 ADVANCED ANIMATIONS CSS - ADDED BY NK DEV
   ========================================================================= */

/* Header Scroll States */
header {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 0.5rem 4%;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3) !important;
}

header.scrolled .logo-container img {
    height: 28px !important;
}

header.hide {
    transform: translateY(-100%);
}

/* Logo Glow Effect */
.logo-container img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Nav Links Enhanced */
nav a {
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-orange));
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav a:hover::after {
    width: 100%;
}

/* Card 3D Tilt (will be applied via JS) */
.feature-card,
.pricing-card,
.review-card,
.step-card {
    transition: all 0.4s ease;
}

/* Button Magnetic Effect (will be applied via JS) */
.btn-primary,
.btn-secondary,
.btn-book,
.pricing-btn,
.submit-btn {
    transition: all 0.3s ease;
}

/* Parallax Elements */
.hero-image {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon,
.step-number {
    transition: transform 0.3s ease;
}

/* Wave Animation Setup */
.brand-item,
.counter-box {
    transition: transform 0.1s ease;
}

/* Stagger Animation Initial State */
.features-grid > *,
.steps-grid > *,
.reviews-grid > *,
.checklist-grid > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stagger-animated > * {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Progress Bar (created via JS) */
/* No additional CSS needed - all handled in JS */

/* Enhanced Hover States */
.feature-card:hover,
.pricing-card:hover,
.review-card:hover,
.step-card:hover {
    z-index: 10;
}

/* Smooth All Animations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Performance Optimization */
.hero-image,
.feature-icon,
.step-number,
.brand-item,
.counter-box,
.section-title {
    will-change: transform;
}

header {
    will-change: transform, padding, background;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations to reveal elements */
.reveal.active {
    animation: fadeInUp 0.6s ease forwards;
}

.reveal-left.active {
    animation: slideInLeft 0.6s ease forwards;
}

.reveal-right.active {
    animation: slideInRight 0.6s ease forwards;
}

.reveal-scale.active {
    animation: scaleIn 0.6s ease forwards;
}