        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.5;
            color: #1a1a1a;
            overflow-x: hidden;
            background: #0a0a0a;
        }

        /* Animated Background */
        .hero-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            z-index: -1;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveGrid 20s linear infinite;
        }

        @keyframes moveGrid {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Hero Section - Above the fold powerhouse */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 40px;
            padding: 40px 60px;
            position: relative;
        }

        .hero-content {
            z-index: 2;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            color: white;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .hero h1 .highlight {
            background: linear-gradient(120deg, #fff 0%, #f093fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: rgba(255,255,255,0.95);
            font-weight: 400;
        }

        .hero-stats {
            display: flex;
            gap: 32px;
            margin: 32px 0;
            flex-wrap: wrap;
        }

        .stat-item {
            color: white;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            display: block;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-group {
            display: flex;
            gap: 16px;
            margin-top: 32px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: white;
            color: #667eea;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.4);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.15);
            color: white;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.25);
            border-color: rgba(255,255,255,0.5);
        }

        /* Phone Mockup - More prominent */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .phone-stack {
            position: relative;
            width: 340px;
            height: 700px;
        }

        .phone-mockup {
            width: 340px;
            height: 700px;
            background: #1a1a1a;
            border-radius: 50px;
            padding: 12px;
            box-shadow: 0 50px 100px rgba(0,0,0,0.5);
            position: absolute;
            animation: floatPhone 6s ease-in-out infinite;
        }

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

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

        .phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
            border-radius: 40px;
            overflow: hidden;
            position: relative;
        }

        /* App UI Inside Phone */
        .app-ui {
            padding: 60px 20px 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .app-header {
            text-align: center;
            color: white;
            margin-bottom: 24px;
        }

        .app-header h3 {
            font-size: 1.8rem;
            margin-bottom: 8px;
        }

        .app-cards {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 16px;
            overflow: hidden;
        }

        .app-card {
            background: white;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
            animation: slideCard 0.5s ease forwards;
            opacity: 0;
        }

        .app-card:nth-child(1) { animation-delay: 0.2s; }
        .app-card:nth-child(2) { animation-delay: 0.4s; }
        .app-card:nth-child(3) { animation-delay: 0.6s; }

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

        .card-header {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
        }

        .card-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            flex-shrink: 0;
        }

        .card-info h4 {
            font-size: 1rem;
            margin-bottom: 2px;
        }

        .card-info p {
            font-size: 0.8rem;
            color: #666;
        }

        .card-body {
            font-size: 0.9rem;
            color: #444;
            margin-bottom: 12px;
        }

        .card-badge {
            display: inline-block;
            padding: 6px 14px;
            background: #667eea;
            color: white;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .app-nav {
            display: flex;
            justify-content: space-around;
            padding: 20px 0 10px;
            background: rgba(255,255,255,0.95);
            border-radius: 25px 25px 0 0;
            margin-top: auto;
        }

        .nav-icon {
            font-size: 1.6rem;
            opacity: 0.4;
            transition: opacity 0.3s;
        }

        .nav-icon.active {
            opacity: 1;
        }

        /* Compact Social Proof Banner */
        .social-proof-banner {
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(20px);
            padding: 20px 60px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            position: relative;
        }

        .proof-item {
            text-align: center;
            color: white;
        }

        .proof-number {
            font-size: 2rem;
            font-weight: 800;
            display: block;
        }

        .proof-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Features Grid - Tight and Impactful */
        .features-section {
            background: white;
            padding: 80px 60px;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
            padding: 32px;
            border-radius: 20px;
            border: 2px solid transparent;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: #667eea;
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 16px;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Business CTA - Bold and Eye-catching */
        .business-cta {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
        }

        .business-cta::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.15), transparent);
            top: -250px;
            right: -250px;
        }

        .business-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .business-info h2 {
            font-size: 3rem;
            color: white;
            margin-bottom: 20px;
            font-weight: 900;
        }

        .business-info p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 16px;
            line-height: 1.6;
        }

        .business-benefits {
            list-style: none;
            margin: 24px 0;
        }

        .business-benefits li {
            color: white;
            padding: 12px 0;
            padding-left: 36px;
            position: relative;
            font-size: 1.05rem;
        }

        .business-benefits li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #f093fb;
            font-weight: 800;
            font-size: 1.3rem;
        }

        .contact-form {
            background: rgba(255,255,255,0.05);
            padding: 40px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            color: white;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            background: rgba(255,255,255,0.08);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .success-message {
            display: none;
            background: #4caf50;
            color: white;
            padding: 14px;
            border-radius: 10px;
            margin-bottom: 16px;
            text-align: center;
            font-weight: 600;
        }

        .success-message.show {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Testimonials - Compact Carousel */
        .testimonials {
            background: #f8f9fa;
            padding: 80px 60px;
        }

        .testimonial-slider {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial {
            background: white;
            padding: 32px;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            position: relative;
        }

        .testimonial::before {
            content: '"';
            font-size: 4rem;
            color: #667eea;
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: Georgia, serif;
        }

        .testimonial-text {
            font-style: italic;
            color: #444;
            margin-bottom: 20px;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .author-info h4 {
            color: #1a1a1a;
            font-size: 0.95rem;
            font-weight: 700;
        }

        .author-info p {
            color: #999;
            font-size: 0.85rem;
        }

        /* Final CTA - Urgent and Bold */
        .final-cta {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            padding: 100px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1), transparent);
        }

        .final-cta-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .final-cta h2 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 20px;
            font-weight: 900;
        }

        .final-cta p {
            font-size: 1.4rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 40px;
        }

       /* Footer - Enhanced */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 60px 60px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .footer-section h4 {
            font-size: 1rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-section p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-section a {
            display: block;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom a:hover {
            color: white;
        }

        /* Responsive Footer */
        @media (max-width: 1024px) {
            footer {
                padding: 40px 30px 20px;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-section a {
                display: inline-block;
                margin: 0 10px 12px;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 40px 30px;
                text-align: center;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero-stats {
                justify-content: center;
            }

            .cta-group {
                justify-content: center;
            }

            .features-grid {
                grid-template-columns: 1fr;
                padding: 0 20px;
            }

            .business-content {
                grid-template-columns: 1fr;
                padding: 0 20px;
            }

            .testimonial-slider {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .social-proof-banner {
                padding: 20px 30px;
            }

            .features-section,
            .business-cta,
            .testimonials,
            .final-cta {
                padding: 60px 30px;
            }

            footer {
                padding: 30px;
            }

            .footer-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }



/* ========================================
           BLOG PREVIEW SECTION
 ======================================== */
        .blog-preview-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
            padding: 100px 60px;
            position: relative;
            overflow: hidden;
        }

        .blog-preview-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            border-radius: 50%;
            pointer-events: none;
        }

        .blog-preview-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section-tag {
            display: inline-block;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            color: #667eea;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .blog-preview-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 50px 0;
        }

        .blog-preview-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .blog-preview-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .blog-preview-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .blog-preview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-preview-card:hover .blog-preview-image img {
            transform: scale(1.1);
        }

        .blog-category-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .blog-category-badge.food {
            background: rgba(255, 107, 107, 0.9);
            color: white;
        }

        .blog-category-badge.activities {
            background: rgba(74, 144, 226, 0.9);
            color: white;
        }

        .blog-category-badge.culture {
            background: rgba(245, 166, 35, 0.9);
            color: white;
        }

        .blog-category-badge.tips {
            background: rgba(76, 175, 80, 0.9);
            color: white;
        }

        .blog-category-badge.nightlife {
            background: rgba(156, 39, 176, 0.9);
            color: white;
        }

        .blog-category-badge.budget {
            background: rgba(0, 191, 165, 0.9);
            color: white;
        }

        .blog-preview-content {
            padding: 25px;
        }

        .blog-preview-content h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: #1a1a1a;
            line-height: 1.4;
        }

        .blog-preview-content p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .blog-preview-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }

        .blog-read-time {
            color: #999;
            font-size: 0.85rem;
        }

        .blog-read-link {
            color: #667eea;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.9rem;
            transition: transform 0.3s;
            display: inline-block;
        }

        .blog-read-link:hover {
            transform: translateX(3px);
        }

        .blog-preview-cta {
            text-align: center;
            margin-top: 50px;
        }

        .btn-secondary {
            display: inline-block;
            padding: 16px 40px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
        }

        .blog-preview-subtext {
            margin-top: 15px;
            color: #999;
            font-size: 0.9rem;
        }

        /* Responsive Blog Preview */
        @media (max-width: 1024px) {
            .blog-preview-section {
                padding: 80px 30px;
            }

            .blog-preview-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }




/* ========================================
           HEADER NAVIGATION
======================================== */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .main-header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .header-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            transition: transform 0.3s;
        }

        .header-logo:hover {
            transform: scale(1.05);
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .header-nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            position: relative;
        }

        .header-nav a:not(.btn-nav):hover {
            color: #667eea;
        }

        .header-nav a:not(.btn-nav).active {
            color: #667eea;
            font-weight: 600;
        }

        .header-nav a:not(.btn-nav).active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }

        .btn-nav {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white !important;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            border-radius: 3px;
            transition: all 0.3s;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu */
        @media (max-width: 768px) {
            .header-container {
                padding: 0 20px;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .header-nav {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                gap: 0;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                transform: translateY(-100%);
                opacity: 0;
                pointer-events: none;
                transition: all 0.3s;
            }

            .header-nav.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .header-nav a {
                padding: 15px 0;
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #f0f0f0;
            }

            .header-nav a:last-child {
                border-bottom: none;
            }

            .btn-nav {
                margin-top: 10px;
                display: block;
                text-align: center;
            }
        }

        /* Add padding to body to account for fixed header */
        body {
            padding-top: 70px;
        }
