 /* ===== GLOBAL STYLES (Premium) - Light theme only ===== */
        :root {
  color-scheme: light;
  --background: #fff;
  --foreground: #181818;
  --gray: #f8f9fa;
  --primary: #2563eb;
  --primary-soft: #3b82f6;
  --secondary: #f59e0b;
  --card-bg: rgba(255,255,255,0.7);
  --card-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --card-shadow-hover: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
  --glass-bg: rgba(255,255,255,0.8);
  --glass-border: rgba(255,255,255,0.3);
  --border: #e5e7eb;
  --navbar-bg: #fff;
  --footer-bg: #222;
  --footer-text: #fff;
  --input-bg: #fff;
  --input-border: #ccc;
  --input-text: #181818;
  --dark: #181818;
  --text: #666;
  --primary-light: #e8f0ff;
  --primary-dark: #1a3dcc;
  --ai-color: #20c997;
}

        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        body {
            background: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        body.menu-open {
            overflow: hidden;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }
        
        .section {
            background: var(--background);
            color: var(--foreground);
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-family: 'Space Grotesk', 'Inter', sans-serif;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--text);
            max-width: 700px;
            margin: 0 auto 60px;
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        input, textarea, select {
            background: var(--input-bg);
            color: var(--input-text);
            border: 1px solid var(--input-border);
          }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background: var(--primary-light);
        }
        
        .btn-ai {
            background: var(--ai-color);
        }
        
        .btn-ai:hover {
            background: #1ab387;
            box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
        }
        
        /* ===== NAVBAR ===== */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 5%;
            width: 100%;
            position: sticky;
            top: 0;
            background: var(--navbar-bg);
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 101;
        }
        
        .mobile-menu-toggle span {
            width: 22px;
            height: 2.5px;
            background: var(--foreground);
            margin: 2.5px 0;
            transition: 0.3s;
            border-radius: 2px;
        }
        
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-4px, 5px);
        }
        
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-4px, -5px);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
		
		.logo img {
			width: 55%;
		}
        
        .logo i {
            color: var(--primary);
        }
        
        .nav-links {
            display: flex;
            gap: 32px;
        }
        
        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
            position: relative;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .nav-links a.active {
            color: var(--primary);
        }
        
        .nav-links a.active:after {
            width: 100%;
        }
        
        .nav-buttons {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        /* ===== HERO SECTION ===== */
        .hero {
            padding: 140px 0 160px;
            position: relative;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(248, 250, 252, 0.6) 0%, rgba(255, 255, 255, 0) 60%);
            pointer-events: none;
        }
        
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 80px 100px;
        }
        
        .hero-content {
            padding-right: 24px;
        }
        
        .hero-title {
            font-size: 3.75rem;
            font-family: 'Space Grotesk', 'Inter', sans-serif;
            font-weight: 700;
            letter-spacing: -0.03em;
            color: var(--dark);
            margin-bottom: 32px;
            line-height: 1.1;
        }
        
        .hero-title span {
            color: var(--primary);
            display: block;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            line-height: 1.65;
            color: var(--text);
            margin-bottom: 40px;
            max-width: 520px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 36px;
        }
        
        .hero-credibility {
            font-size: 0.95rem;
            color: var(--text);
            letter-spacing: 0.02em;
            opacity: 0.85;
        }
        
        .hero-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08), 0 10px 25px rgba(0, 0, 0, 0.04);
            position: relative;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .hero-image:hover img {
            transform: scale(1.02);
        }
        
        .btn-primary { background: var(--primary); }
        .btn-primary:hover { background: var(--primary-soft); }
        
        /* ===== METRICS STRIP ===== */
        .metrics-strip {
            padding: 48px 0;
            background: var(--gray);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
        }
        .metric-item {
            text-align: center;
        }
        .metric-value {
            display: block;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }
        .metric-label {
            font-size: 0.95rem;
            color: var(--text);
        }
        
        /* ===== CORE BENEFITS ===== */
        .section-alt { background: var(--gray); }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .benefit-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 40px 32px;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .benefit-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--card-shadow-hover);
        }
        .benefit-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: white;
            font-size: 1.25rem;
        }
        .benefit-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: var(--dark);
        }
        .benefit-card p {
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* ===== HOW IT WORKS ===== */
        .workflow-steps {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            max-width: 900px;
            margin: 0 auto;
        }
        .workflow-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 32px 24px;
            background: var(--card-bg);
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s ease;
        }
        .workflow-step:hover { transform: translateY(-4px); }
        .step-num {
            display: inline-flex;
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 16px;
        }
        .workflow-step h4 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--dark);
        }
        .workflow-step p {
            font-size: 0.95rem;
            color: var(--text);
        }
        .workflow-arrow {
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        /* ===== NARRATIVE BULLETS ===== */
        .narrative-bullets {
            list-style: none;
            margin-top: 16px;
        }
        .narrative-bullets li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
            color: var(--text);
        }
        .narrative-bullets li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--ai-color);
            font-weight: 700;
        }
        
        /* ===== INTEGRATIONS ===== */
        .integrations-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }
        .integration-item {
            padding: 16px 28px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            font-weight: 600;
            color: var(--text);
            transition: all 0.2s ease;
        }
        .integration-item:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        
        /* ===== SECURITY ===== */
        .security-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
        }
        .security-card {
            text-align: center;
            padding: 40px 28px;
            background: var(--card-bg);
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s ease;
        }
        .security-card:hover { transform: translateY(-4px); }
        .security-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .security-card h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--dark);
        }
        .security-card p {
            font-size: 0.95rem;
            color: var(--text);
        }
        
        /* ===== TESTIMONIALS ===== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .testimonial-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 32px;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s ease;
        }
        .testimonial-card:hover { transform: translateY(-4px); }
        .testimonial-quote {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--dark);
            margin-bottom: 24px;
            font-style: italic;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .testimonial-avatar {
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        .testimonial-author strong { display: block; color: var(--dark); }
        .testimonial-author span { font-size: 0.9rem; color: var(--text); }
        
        /* ===== PRICING TOGGLE ===== */
        .pricing-toggle-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 48px;
        }
        .toggle-label { color: var(--text); font-size: 1rem; }
        .toggle-label.active { color: var(--primary); font-weight: 600; }
        .pricing-toggle {
            position: relative;
            width: 52px;
            height: 28px;
            background: var(--border);
            border-radius: 28px;
            cursor: pointer;
        }
        .pricing-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .toggle-slider {
            position: absolute;
            inset: 0;
            border-radius: 28px;
            background: var(--primary);
            transition: 0.3s;
        }
        .toggle-slider::before {
            content: '';
            position: absolute;
            height: 22px;
            width: 22px;
            left: 3px;
            bottom: 3px;
            background: white;
            border-radius: 50%;
            transition: 0.3s;
        }
        .pricing-toggle input:checked + .toggle-slider::before {
            transform: translateX(24px);
        }
        .pricing-reassurance {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 0.8rem;
            color: var(--text);
        }
        
        /* ===== FAQ ===== */
        .pricing-faq {
            max-width: 700px;
            margin: 80px auto 0;
        }
        .faq-title {
            font-size: 1.5rem;
            margin-bottom: 32px;
            text-align: center;
            color: var(--dark);
        }
        .faq-item {
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
        }
        .faq-item summary {
            font-weight: 600;
            cursor: pointer;
            color: var(--dark);
        }
        .faq-item p {
            margin-top: 12px;
            color: var(--text);
            line-height: 1.6;
        }
        
        /* ===== SCROLL REVEAL ===== */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .reveal-on-scroll.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ===== FEATURES SECTION ===== */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-card {
            background: var(--card-bg);
            color: var(--foreground);
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: var(--card-shadow);
            transition: all 0.4s ease;
            text-align: center;
            border: 1px solid var(--border);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            border-color: var(--primary-light);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-light);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2rem;
            color: var(--primary);
        }
        
        .feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        /* ===== PRODUCTS SECTION ===== */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .product-card {
            background: var(--card-bg);
            color: var(--foreground);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.4s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .product-image {
            height: 250px;
            background-size: cover;
            background-position: center;
        }
        
        .product-content {
            padding: 30px;
        }
        
        .product-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .product-features {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .product-features li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
        }
        
        .product-features li:before {
            content: "✓";
            color: var(--ai-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        /* ===== GALLERY SECTION ===== */
        .gallery {
            background: var(--gray);
        }
        
        .restaurant-software {
            background: var(--gray);
        }
        
        /* ===== RESTAURANT SOFTWARE SECTION ===== */
        .restaurant-features {
            display: flex;
            flex-direction: column;
            gap: 80px;
            margin-top: 56px;
        }
        
        .restaurant-feature {
            display: grid;
            grid-template-columns: 1fr 1.05fr;
            gap: 56px;
            align-items: center;
            padding: 48px;
            background: var(--card-bg);
            border-radius: 20px;
            box-shadow: var(--card-shadow);
        }
        
        .restaurant-feature:nth-child(even) {
            direction: rtl;
        }
        
        .restaurant-feature:nth-child(even) > * {
            direction: ltr;
        }
        
        .restaurant-feature-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border);
        }
        
        .restaurant-feature-image img {
            width: 100%;
            height: auto;
            display: block;
            vertical-align: middle;
        }
        
        .restaurant-feature-caption {
            padding: 8px 0;
        }
        
        .restaurant-feature-caption h3 {
            font-size: 1.6rem;
            font-family: 'Space Grotesk', sans-serif;
            margin-bottom: 16px;
            color: var(--foreground);
            font-weight: 600;
            letter-spacing: -0.02em;
        }
        
        .restaurant-feature-caption p {
            color: var(--text);
            line-height: 1.75;
            font-size: 1.05rem;
            margin-bottom: 0;
        }
        
        .restaurant-feature .narrative-bullets {
            margin-top: 20px;
        }
        
        .restaurant-feature .narrative-bullets li {
            margin-bottom: 10px;
            font-size: 1rem;
        }
        
        /* Orders section - menu counter image */
        .orders-menu-counter {
            margin: 0 auto 40px;
            max-width: 800px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
        }
        .orders-menu-counter img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Orders Management & Menu Customization grid */
        .orders-menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        
        .orders-menu-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            background: var(--card-bg);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .orders-menu-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }
        
        .orders-menu-image {
            aspect-ratio: 16/7;
            overflow: hidden;
        }
        
        .orders-menu-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .orders-menu-caption {
            padding: 24px;
        }
        
        .orders-menu-caption h3 {
            font-size: 1.25rem;
            margin-bottom: 8px;
            color: var(--foreground);
        }
        
        .orders-menu-caption p {
            color: var(--text);
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        /* POS Devices section */
        .pos-devices-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            margin-top: 48px;
            align-items: start;
        }
        
        .pos-device-block {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 32px;
            box-shadow: var(--card-shadow);
        }
        
        .pos-device-title {
            font-size: 1.35rem;
            margin-bottom: 24px;
            color: var(--foreground);
            text-align: center;
        }
        
        .pos-device-images {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }
        
        .pos-device-images img {
            max-width: 100%;
            height: auto;
            max-height: 220px;
            object-fit: contain;
            border-radius: 8px;
        }
        
        .pos-device-images-single img {
            max-height: 280px;
        }
        
        .pos-device-desc {
            color: var(--text);
            line-height: 1.7;
            text-align: center;
        }
        
        .pos-devices-summary {
            max-width: 800px;
            margin: 48px auto 0;
            padding: 28px 36px;
            background: var(--card-bg);
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            text-align: center;
        }
        
        .pos-devices-summary p {
            color: var(--text);
            line-height: 1.8;
            font-size: 1.05rem;
        }
        
        /* Pricing section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .pricing-card {
            position: relative;
            background: var(--card-bg);
            border-radius: 16px;
            padding: 36px 32px;
            box-shadow: var(--card-shadow);
            border: 2px solid transparent;
            transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
            display: flex;
            flex-direction: column;
        }
        
        .pricing-card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }
        
        .pricing-card-featured {
            border-color: var(--primary);
            box-shadow: 0 8px 24px rgba(42, 77, 255, 0.15);
        }
        
        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 20px;
        }
        
        .pricing-title {
            font-size: 1.35rem;
            margin-bottom: 20px;
            color: var(--foreground);
            text-align: center;
        }
        
        .pricing-price {
            text-align: center;
            margin-bottom: 24px;
        }
        
        .price-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .price-period {
            font-size: 1rem;
            color: var(--text);
            font-weight: 400;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 28px;
            flex-grow: 1;
        }
        
        .pricing-features li {
            padding: 10px 0;
            padding-left: 28px;
            position: relative;
            color: var(--text);
            line-height: 1.5;
        }
        
        .pricing-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }
        
        .pricing-card .btn {
            width: 100%;
            text-align: center;
        }
        
        /* Reservation Management section */
        .reservations-feature {
            margin-top: 40px;
        }
        
        .reservations-images {
            display: flex;
            flex-wrap: nowrap;
            gap: 24px;
            margin-bottom: 32px;
            justify-content: center;
        }
        
        .reservations-image-wrap {
            flex: 1;
            min-width: 0;
            max-width: 50%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
        }
        
        .reservations-image-wrap img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .reservations-caption {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .reservations-caption p {
            color: var(--text);
            line-height: 1.8;
            font-size: 1.05rem;
        }
        
        .gallery-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 250px;
            cursor: pointer;
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(111, 66, 193, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-overlay i {
            color: white;
            font-size: 2.5rem;
        }
        
        /* Lightbox */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }
        
        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }
        
        .lightbox-content img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background: rgba(0,0,0,0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
        }
        
        .lightbox-nav button {
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* ===== SOLUTIONS SECTION ===== */
        .solutions-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .tab-btn {
            padding: 12px 24px;
            background: var(--primary-light);
            color: var(--primary);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .tab-btn.active, .tab-btn:hover {
            background: var(--primary);
            color: white;
        }
        
        .solutions-content {
            background: var(--card-bg);
            color: var(--foreground);
            border-radius: 16px;
            padding: 50px;
            box-shadow: var(--card-shadow);
        }
        
        .solution-item {
            display: none;
        }
        
        .solution-item.active {
            display: block;
        }
        
        .solution-title {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .solution-features {
            columns: 2;
            list-style: none;
            margin-bottom: 30px;
        }
        
        .solution-features li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            break-inside: avoid;
        }
        
        .solution-features li:before {
            content: "•";
            color: var(--ai-color);
            position: absolute;
            left: 0;
            font-size: 1.5rem;
            line-height: 1;
        }
        
        /* ===== RESOURCES SECTION ===== */
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .resource-card {
            background: var(--card-bg);
            color: var(--foreground);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.3s ease;
        }
        
        .resource-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .resource-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .resource-content {
            padding: 25px;
        }
        
        .resource-type {
            color: var(--ai-color);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: block;
        }
        
        .resource-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .resource-excerpt {
            margin-bottom: 20px;
            color: var(--text);
        }
        
        /* ===== COMPANY SECTION ===== */
        .company-hero {
            background: linear-gradient(rgba(10, 26, 58, 0.9), rgba(10, 26, 58, 0.9)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 16px;
            padding: 100px 60px;
            margin-bottom: 60px;
            color: white;
            text-align: center;
        }
        
        .company-hero-desc {
            max-width: 700px;
            margin: 20px auto 0;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        
        .company-values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .value-card {
            text-align: center;
            padding: 40px 30px;
            background: var(--card-bg);
            color: var(--foreground);
            border-radius: 16px;
            box-shadow: var(--card-shadow);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--primary);
        }
        
        .value-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .team-member {
            text-align: center;
            padding: 30px;
            background: var(--card-bg);
            color: var(--foreground);
            border-radius: 16px;
            box-shadow: var(--card-shadow);
        }
        
        .member-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
            margin: 0 auto 20px;
            border: 3px solid var(--primary-light);
        }
        
        .member-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 5px;
        }
        
        .member-role {
            color: var(--ai-color);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        /* ===== CONTACT SECTION ===== */
        .contact-container {
            margin-top: 60px;
        }
        
        .contact-info {
            background: var(--primary-light);
            border-radius: 16px;
            padding: 40px;
        }
        
        .contact-title {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 30px;
        }
        
        .contact-form-intro {
            color: var(--text);
            margin-bottom: 24px;
            line-height: 1.6;
        }
        
        .contact-details {
            list-style: none;
            margin-bottom: 40px;
        }
        
        .contact-details li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .contact-details i {
            font-size: 1.5rem;
            color: var(--primary);
            min-width: 30px;
        }
        
        .contact-form {
            width: 100%;
            max-width: 100%;
            background: var(--card-bg);
            color: var(--foreground);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--card-shadow);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            padding: 14px 20px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-success {
            padding: 32px;
            text-align: center;
            color: var(--primary);
            font-size: 1.15rem;
            font-weight: 500;
        }
        
        /* ===== AI CHATBOT ===== */
        .chatbot-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            font-family: 'Inter', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        
        .chatbot-window {
            max-height: 70vh;
            max-width: 400px;
            width: 100%;
            overflow-y: auto;
            right: 0;
            margin-bottom: 10px;
            z-index: 1000;
            background: var(--card-bg);
            color: var(--foreground);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
            visibility: hidden;
            bottom: 30px;
            right: 30px;
        }
        
        .chatbot-window.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        
        .chatbot-header {
            background: linear-gradient(135deg, var(--ai-color), #1a9f7b);
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .chatbot-title {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .chatbot-title i {
            font-size: 20px;
        }
        
        .chatbot-title h3 {
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .chatbot-status {
            font-size: 0.8rem;
            opacity: 0.9;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .status-indicator {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
        }
        
        .chatbot-close {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.2s;
        }
        
        .chatbot-close:hover {
            opacity: 1;
        }
        
        .chatbot-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: var(--card-bg);
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .message {
            max-width: 85%;
            padding: 15px 18px;
            border-radius: 18px;
            line-height: 1.5;
            animation: fadeIn 0.3s ease;
            position: relative;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .ai-message {
            background: white;
            color: var(--dark);
            border-bottom-left-radius: 4px;
            align-self: flex-start;
            border: 1px solid var(--border);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        .ai-message::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 15px;
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-right: 8px solid white;
        }
        .user-message {
            background: var(--primary);
            color: white;
            border-bottom-right-radius: 4px;
            align-self: flex-end;
        }
        .user-message::before {
            content: '';
            position: absolute;
            right: -8px;
            top: 15px;
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 8px solid var(--primary);
        }
        
        .message-content {
            margin-bottom: 8px;
        }
        
        .message-footer {
            font-size: 0.7rem;
            opacity: 0.7;
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
        }
        
        .sources {
            background: var(--primary-light);
            padding: 8px 12px;
            border-radius: 8px;
            margin-top: 10px;
            font-size: 0.8rem;
        }
        
        .sources-title {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .sources-list {
            list-style: none;
        }
        
        .sources-list li {
            padding: 3px 0;
        }
        
        .sources-list a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .sources-list a:hover {
            text-decoration: underline;
        }
        
        .chatbot-input {
            display: flex;
            padding: 15px;
            background: var(--card-bg);
            border-top: 1px solid #1a9f7b;
			
        }
        
        .chatbot-input input,
        .chatbot-input textarea {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-radius: 25px;
            outline: none;
            font-size: 0.9rem;
            background: #fff !important;
            color: #181818 !important;
        }
        
        .chatbot-input textarea::placeholder {
            color: #888 !important;
            opacity: 1 !important;
        }
        
        .chatbot-input button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--ai-color);
            color: white;
            border: none;
            margin-left: 10px;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .chatbot-input button:hover {
            background: #1ab387;
        }
        
        .voice-control {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 10px;
        }
        
        .voice-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .voice-btn.listening {
            background: var(--primary);
            color: white;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(111, 66, 193, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(111, 66, 193, 0); }
            100% { box-shadow: 0 0 0 0 rgba(111, 66, 193, 0); }
        }
        
        .typing-indicator {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            background: var(--card-bg);
            color: var(--foreground);
            border-radius: 18px;
            border: 1px solid var(--border);
            align-self: flex-start;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .typing-text {
            font-size: 0.9rem;
            color: var(--text);
            margin-right: 10px;
        }
        
        .typing-dot {
            width: 8px;
            height: 8px;
            background: var(--ai-color);
            border-radius: 50%;
            margin: 0 3px;
            opacity: 0.6;
            animation: typing 1.4s infinite;
        }
        
        .typing-dot:nth-child(1) { animation-delay: 0s; }
        .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(-5px); opacity: 1; }
        }
        
        .knowledge-card {
            background: var(--card-bg);
            color: var(--foreground);
            border-radius: 12px;
            padding: 15px;
            margin-top: 15px;
            border: 1px solid var(--border);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .knowledge-title {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark);
        }
        
        .knowledge-content {
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .divider {
            text-align: center;
            margin: 15px 0;
            position: relative;
            font-size: 0.8rem;
            color: var(--text);
        }
        
        .divider::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 40%;
            height: 1px;
            background: var(--border);
        }
        
        .divider::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            width: 40%;
            height: 1px;
            background: var(--border);
        }
        
        .suggested-questions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 10px;
        }
        
        .suggested-btn {
            background: var(--primary-light);
            color: var(--primary);
            border: none;
            border-radius: 20px;
            padding: 8px 12px;
            font-size: 0.8rem;
            cursor: pointer;
            text-align: left;
            transition: all 0.2s;
        }
        
        .suggested-btn:hover {
            background: var(--primary);
            color: white;
        }
        
        /* ===== FINAL CTA ===== */
        .final-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        .final-cta h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.25rem;
            margin-bottom: 16px;
        }
        .final-cta p {
            font-size: 1.15rem;
            opacity: 0.95;
            margin-bottom: 32px;
        }
        .btn-lg {
            padding: 18px 36px;
            font-size: 1.1rem;
        }
        .btn-cta-inverse {
            background: white;
            color: var(--primary);
        }
        .btn-cta-inverse:hover {
            background: #f8f9fa;
            color: var(--primary-dark);
        }
        
        /* ===== FOOTER ===== */
        footer {
            background: var(--footer-bg);
            color: var(--footer-text);
            padding: 40px 0 32px;
            margin-top: 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-about {
            max-width: 350px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: block;
            color: white;
        }
        
        .footer-about p {
            opacity: 0.8;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--ai-color);
            transform: translateY(-3px);
        }
        
        .footer-column h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--ai-color);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 12px;
        }
        
        .footer-column a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .footer-column a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        .contact-email {
            text-align: center;
            margin-top: 28px;
            margin-bottom: 0;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            color: var(--text);
            font-size: 0.95rem;
        }
        .contact-email a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }
        .contact-email a:hover {
            text-decoration: underline;
        }
        
        /* ===== RESPONSIVE ===== */
        
        /* Large Tablets and Small Laptops */
        @media (max-width: 1024px) {
            .container {
                padding: 0 4%;
            }
            
            .hero {
                padding: 80px 0 100px;
            }
            .hero .container {
                grid-template-columns: 1fr;
                gap: 48px;
                text-align: center;
            }
            .hero-content {
                margin-bottom: 0;
            }
            .hero-content { padding-right: 0; }
            .hero-subtitle { margin-left: auto; margin-right: auto; }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            
            .solution-features {
                columns: 1;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .features {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
            
            .company-values {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            }
            
            .team-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            }
            
            .resources-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
            
            .navbar {
                flex-direction: row;
                padding: 18px 3%;
            }
            .logo {
                min-width: 120px;
            }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 260px;
                height: 100vh;
                height: 100dvh;
                background: var(--navbar-bg);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 60px 24px 24px;
                padding-top: max(60px, calc(env(safe-area-inset-top) + 48px));
                transition: right 0.25s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.08);
                z-index: 100;
                gap: 0;
                overflow-y: auto;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links a {
                width: 100%;
                padding: 10px 0;
                border-bottom: 1px solid var(--border);
                font-size: 0.95rem;
                text-align: left;
            }
            .nav-links a:after {
                display: none;
            }
            .nav-buttons {
                gap: 10px;
            }
            .nav-buttons .btn {
                min-width: 120px;
                padding: 12px 18px;
                font-size: 1rem;
            }
            .mobile-menu-toggle {
                display: flex;
            }
        }
        
        @media (max-width: 900px) {
            .nav-links {
                display: flex;
            }
            .nav-links:not(.active) {
                right: -100%;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-buttons .btn {
                display: block;
            }
        }
        
        @media (max-width: 1024px) {
            .nav-links {
                display: flex;
            }
            .nav-links:not(.active) {
                right: -100%;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-buttons .btn {
                display: block;
            }
        }
        
        @media (max-width: 1024px) {
            .nav-links {
                display: flex;
            }
            .nav-links:not(.active) {
                right: -100%;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-buttons .btn {
                display: block;
            }
        }
        
        @media (max-width: 1024px) {
            .nav-links {
                display: flex;
            }
            .nav-links:not(.active) {
                right: -100%;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-buttons .btn {
                display: block;
            }
        }
        
        @media (max-width: 1024px) {
            .nav-links {
                display: flex;
            }
            .nav-links:not(.active) {
                right: -100%;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-buttons .btn {
                display: block;
            }
        }
        
        /* Tablets */
        @media (max-width: 768px) {
            .container {
                padding: 0 3%;
            }
            
            .navbar {
                padding: 14px 3%;
            }
            
            .nav-buttons {
                gap: 15px;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 260px;
                height: 100vh;
                height: 100dvh;
                background: var(--navbar-bg);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 60px 24px 24px;
                padding-top: max(60px, calc(env(safe-area-inset-top) + 48px));
                transition: right 0.25s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.08);
                z-index: 100;
                overflow-y: auto;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links a {
                width: 100%;
                padding: 10px 0;
                border-bottom: 1px solid var(--border);
                font-size: 0.95rem;
            }
            
            .nav-links a:after {
                display: none;
            }
            
            .hero {
                padding: 60px 0 80px;
            }
            .hero .container { gap: 40px; }
            .hero-title {
                font-size: 2.2rem;
                line-height: 1.2;
                margin-bottom: 24px;
            }
            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 32px;
            }
            .hero-buttons { margin-bottom: 28px; }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
            
            .product-card {
                margin: 0 10px;
            }
            
            .product-content {
                padding: 25px 20px;
            }
            
            .solutions-content {
                padding: 30px 20px;
            }
            
            .solutions-tabs {
                flex-direction: column;
                gap: 10px;
            }
            
            .tab-btn {
                width: 100%;
                text-align: center;
            }
            
            .resource-content {
                padding: 20px;
            }
            
            .value-card {
                padding: 30px 20px;
            }
            
            .team-member {
                padding: 25px 20px;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
            
            .company-hero {
                padding: 60px 30px;
                margin-bottom: 40px;
            }
            
            .chatbot-container {
                bottom: 15px;
                right: 15px;
            }
            
            /* Full-screen chatbot on mobile when open */
            .chatbot-window.active {
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                bottom: 0 !important;
                width: 100vw !important;
                height: 100vh !important;
                height: 100dvh !important;
                max-width: none !important;
                max-height: none !important;
                border-radius: 0 !important;
                margin: 0 !important;
                overflow-x: hidden !important;
            }
            
            /* Header: ensure close button always visible, title truncates, safe area for notch */
            .chatbot-header {
                flex-shrink: 0;
                padding: 12px 12px 12px 16px;
                padding-top: max(12px, env(safe-area-inset-top));
                gap: 8px;
            }
            .chatbot-title {
                min-width: 0;
                flex: 1;
            }
            .chatbot-title h3 {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                font-size: 0.95rem;
            }
            .chatbot-status {
                flex-shrink: 0;
            }
            @media (max-width: 480px) {
                .chatbot-status { display: none; }
            }
            .chatbot-close {
                flex-shrink: 0;
                min-width: 44px;
                min-height: 44px;
                padding: 10px;
                font-size: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            /* Input row: fit without horizontal scroll, safe area for home bar */
            .chatbot-input {
                flex-shrink: 0;
                min-width: 0;
                padding: 10px 12px;
                padding-bottom: max(10px, env(safe-area-inset-bottom));
                gap: 6px;
            }
            .chatbot-input input {
                min-width: 0;
                flex: 1;
            }
            .chatbot-input .voice-control {
                flex-shrink: 0;
                margin-left: 0;
            }
            .chatbot-input .voice-btn {
                width: 40px;
                height: 40px;
                min-width: 40px;
            }
            .chatbot-input button {
                flex-shrink: 0;
                width: 40px;
                height: 40px;
                min-width: 40px;
                min-height: 40px;
                margin-left: 0;
            }
            
            .chatbot-window:not(.active) {
                max-height: 60vh;
                max-width: 98vw;
            }
            
            .chatbot-messages {
                -webkit-overflow-scrolling: touch;
                min-height: 0;
            }
            
            .suggested-questions {
                grid-template-columns: 1fr;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .restaurant-feature {
                grid-template-columns: 1fr;
                gap: 28px;
                padding: 32px 24px;
                direction: ltr;
            }
            
            .restaurant-feature:nth-child(even) {
                direction: ltr;
            }
            
            .restaurant-features { gap: 56px; }
            
            .orders-menu-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .reservations-images {
                flex-wrap: wrap;
            }
            .reservations-image-wrap {
                max-width: 100%;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .benefits-grid { grid-template-columns: 1fr; gap: 24px; }
            .workflow-steps { flex-direction: column; }
            .workflow-arrow { transform: rotate(90deg); }
            .integrations-grid { gap: 12px; }
            .security-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            
            .pos-devices-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .footer-about {
                max-width: 100%;
            }
        }
        
        /* Mobile Phones */
        @media (max-width: 480px) {
            .container {
                padding: 0 20px;
            }
            .metrics-grid { grid-template-columns: 1fr; }
            
            .navbar {
                padding: 12px 16px;
            }
            
            .nav-buttons {
                gap: 10px;
            }
            
            .nav-buttons .btn {
                display: none;
            }
            
            .logo img {
                width: 45%;
            }
            
            .nav-links {
                width: min(280px, 85vw);
                padding: 56px 20px 20px;
                padding-top: max(56px, calc(env(safe-area-inset-top) + 44px));
            }
            
            .nav-links a {
                padding: 8px 0;
                font-size: 0.9rem;
            }
            
            .hero {
                padding: 50px 0 70px;
            }
            .hero .container { gap: 32px; }
            .hero-title {
                font-size: 1.8rem;
                line-height: 1.3;
                margin-bottom: 20px;
            }
            .hero-subtitle {
                font-size: 0.95rem;
                margin-bottom: 28px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .section-subtitle {
                font-size: 0.95rem;
            }
            
            .feature-card {
                padding: 25px 15px;
            }
            
            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
                margin-bottom: 20px;
            }
            
            .feature-title {
                font-size: 1.2rem;
            }
            
            .product-card {
                margin: 0 5px;
            }
            
            .product-content {
                padding: 20px 15px;
            }
            
            .product-title {
                font-size: 1.3rem;
            }
            
            .solutions-content {
                padding: 25px 15px;
            }
            
            .solution-title {
                font-size: 1.5rem;
            }
            
            .resource-content {
                padding: 15px;
            }
            
            .resource-title {
                font-size: 1.1rem;
            }
            
            .value-card {
                padding: 25px 15px;
            }
            
            .value-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .value-title {
                font-size: 1.2rem;
            }
            
            .team-member {
                padding: 20px 15px;
            }
            
            .member-photo {
                width: 120px;
                height: 120px;
            }
            
            .member-name {
                font-size: 1.1rem;
            }
            
            .contact-form {
                padding: 25px 15px;
            }
            
            .contact-title {
                font-size: 1.3rem;
            }
            
            .company-hero {
                padding: 40px 20px;
                margin-bottom: 30px;
            }
            
            .company-hero h2 {
                font-size: 1.8rem;
            }
            
            .chatbot-toggle {
                width: 50px;
                height: 50px;
            }
            
            .chatbot-window:not(.active) {
                max-height: 60vh;
                max-width: 98vw;
            }
            
            .chatbot-toggle i {
                font-size: 20px;
            }
            
            .btn {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            
            .form-control {
                padding: 12px 15px;
                font-size: 0.9rem;
            }
            
            .lightbox-content img {
                max-height: 60vh;
            }
            
            .lightbox-close {
                top: 10px;
                right: 10px;
                font-size: 1.5rem;
            }
        }
        
        /* Extra Small Mobile */
        @media (max-width: 360px) {
            .container {
                padding: 0 15px;
            }
            
            .navbar {
                padding: 12px 15px;
            }
            
            .hero-title {
                font-size: 1.6rem;
            }
            
            .section-title {
                font-size: 1.4rem;
            }
            
            .feature-card {
                padding: 20px 12px;
            }
            
            .product-content {
                padding: 15px 12px;
            }
            
            .solutions-content {
                padding: 20px 12px;
            }
            
            .resource-content {
                padding: 12px;
            }
            
            .value-card {
                padding: 20px 12px;
            }
            
            .team-member {
                padding: 15px 12px;
            }
            
            .contact-form {
                padding: 20px 12px;
            }
            
            .chatbot-window:not(.active) {
                max-height: 60vh;
                max-width: 98vw;
            }
        }

        .chatbot-window,
        .chatbot-messages,
        .chatbot-input,
        .typing-indicator,
        .knowledge-card,
        .suggested-questions {
            background: #fff !important;
            color: #181818 !important;
        }
        .chatbot-window {
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .chatbot-toggle {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #20c997 0%, #2a4dff 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(42, 77, 255, 0.18), 0 2px 8px rgba(32, 201, 151, 0.18);
            border: none;
            z-index: 1001;
            margin: 0;
            transition: transform 0.2s cubic-bezier(.4,2,.6,1), box-shadow 0.2s, background 0.2s;
            outline: none;
            pointer-events: auto !important;
        }
        .chatbot-toggle:hover, .chatbot-toggle:focus {
            transform: scale(1.12) rotate(-6deg);
            box-shadow: 0 12px 32px rgba(42, 77, 255, 0.28), 0 4px 16px rgba(32, 201, 151, 0.28);
            background: linear-gradient(135deg, #2a4dff 0%, #20c997 100%);
        }
        .chatbot-toggle i {
            font-size: 28px;
            transition: transform 0.2s;
        }
        .chatbot-toggle:hover i {
            transform: rotate(-10deg) scale(1.08);
        }
        .chatbot-toggle .voice-indicator {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 18px;
            height: 18px;
            background: #ffd166;
            border-radius: 50%;
            border: 2px solid white;
            box-shadow: 0 0 8px 2px #ffd16655;
            z-index: 1;
            transition: background 0.2s, box-shadow 0.2s;
        }
        .chatbot-toggle.listening .voice-indicator {
            background: #2a4dff;
            box-shadow: 0 0 12px 4px #2a4dff88;
            animation: pulse-voice 1.2s infinite;
        }
        @keyframes pulse-voice {
            0% { box-shadow: 0 0 0 0 #2a4dff88; }
            70% { box-shadow: 0 0 0 10px #2a4dff22; }
            100% { box-shadow: 0 0 0 0 #2a4dff88; }
        }
        @media (max-width: 768px) {
            .chatbot-toggle {
                width: 50px;
                height: 50px;
            }
            .chatbot-toggle .voice-indicator {
                width: 14px;
                height: 14px;
                top: 6px;
                right: 6px;
            }
        }

        /* Ensure chatbot toggle is always above navbar and clickable */
        .chatbot-toggle {
            z-index: 1001 !important;
            pointer-events: auto !important;
        }

        /* Chatbot window is only above everything and clickable when active */
        .chatbot-window {
            z-index: 1000;
            pointer-events: none;
            position: fixed;
            bottom: 30px;
            right: 30px;
        }
        .chatbot-window.active {
            pointer-events: auto;
        }

        /* Place toggle below window when window is open */
        .chatbot-container .chatbot-window.active + .chatbot-toggle {
          position: static;
          margin-top: 10px;
          bottom: auto;
          right: auto;
          z-index: 1000;
        }

        /* Reset toggle to fixed when window is not open */
        .chatbot-container .chatbot-toggle {
          position: fixed;
          bottom: 30px;
          right: 30px;
          z-index: 1001 !important;
        }

        @media (max-width: 768px) {
          .chatbot-container .chatbot-toggle {
            bottom: 15px;
            right: 15px;
          }
          .chatbot-container .chatbot-window.active + .chatbot-toggle {
            margin-top: 8px;
          }
        }

        /* Hide the toggle when the chatbot window is open */
        .chatbot-window.active + .chatbot-toggle {
          display: none !important;
        }