/* ========== Global Reset & Base ========== */
:root {
    --primary-blue: #273069;
    --darker-blue: #273069;
    --white: #ffffff;
    --off-white: #f8fafd;
    --accent-yellow: #f5a623;
    --accent-yellow-hover: #df941b;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #f4f4f4;
    --text-muted: #b8bdd6;
    --card-bg-dark: rgba(255, 255, 255, 0.05);
    --card-border-dark: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    background: var(--white);
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========== Section Common ========== */
.section-tag {
    display: inline-block;
    color: var(--accent-yellow);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Base text colors for sections */
.bg-light .section-title { color: var(--primary-blue); }
.bg-light .section-desc { color: var(--text-gray); }

.bg-blue .section-title { color: var(--white); }
.bg-blue .section-desc { color: var(--text-muted); }

/* ========== Header / Navbar ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.header.scrolled .nav-menu > li > a {
    color: var(--primary-blue);
}

.nav-menu li a:hover, .header.scrolled .nav-menu > li > a:hover {
    color: var(--accent-yellow);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark) !important;
}

.dropdown-menu li a:hover {
    background: var(--off-white);
    color: var(--accent-yellow) !important;
}

.dropdown-menu li a::after {
    display: none;
}

.btn-signup {
    background: var(--accent-yellow);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-signup:hover {
    background: var(--accent-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.4);
}

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header.scrolled .hamburger span {
    background: var(--primary-blue);
}

/* ========== Hero Section ========== */
.hero {
    background: var(--primary-blue);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero .container {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    color: var(--white);
    min-width: 0;
    width: 45%;
}

.hero-tag {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0.85;
    color: var(--accent-yellow);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    display: block;
    color: var(--white);
}

.hero-desc {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--accent-yellow);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
    background: var(--accent-yellow-hover);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    text-align: center;
    -webkit-animation: float 6s ease-in-out infinite;
    animation: float 6s ease-in-out infinite;
    min-width: 0;
    width: 45%;
}

.hero-image img {
    max-width: 100%;
    border-radius: 15px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@-webkit-keyframes float {
    0%, 100% { -webkit-transform: translateY(0px); transform: translateY(0px); }
    50% { -webkit-transform: translateY(-20px); transform: translateY(-20px); }
}
@keyframes float {
    0%, 100% { -webkit-transform: translateY(0px); transform: translateY(0px); }
    50% { -webkit-transform: translateY(-20px); transform: translateY(-20px); }
}

/* ========== Features Section (White) ========== */
.features {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
    border-top: 1px solid #eef2f7;
}

.features .section-title {
    color: var(--primary-blue);
}

.features .section-desc {
    color: var(--text-gray);
}

.features-wrapper {
    position: relative;
    padding: 0 40px;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 1px solid #eef2f7;
    border-radius: 50%;
    color: var(--primary-blue);
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-btn:hover {
    background: var(--accent-yellow);
    color: var(--white);
    border-color: var(--accent-yellow);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
    transform: translateY(-50%) scale(1.05);
}

.scroll-btn.left { left: 0; }
.scroll-btn.right { right: 0; }

.features-grid {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 15px 5px 30px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE/Edge hidden */
    scrollbar-width: none; /* Firefox hidden */
}

.features-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari hidden */
}

.feature-card {
    flex: 0 0 290px;
    scroll-snap-align: center;
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2f7;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--accent-yellow);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-yellow);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: #eef2f7;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--accent-yellow);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--accent-yellow);
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========== AI Chatbot Section (White) ========== */
.chatbot-section {
    padding: 100px 0;
    background: var(--white);
}

.chatbot-section .container {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 60px;
}

.chatbot-content {
    flex: 1;
    min-width: 0;
    width: 45%;
}

.chatbot-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.chatbot-content h2 span {
    color: var(--accent-yellow);
}

.chatbot-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.btn-contact {
    background: var(--accent-yellow);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
    background: var(--accent-yellow-hover);
}

.chatbot-image {
    flex: 1;
    text-align: center;
    min-width: 0;
    width: 45%;
}

.chatbot-image img {
    max-width: 400px;
    border-radius: 20px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.chatbot-image img:hover {
    transform: scale(1.03);
}

/* ========== Kiosk Intro Section (White) ========== */
.kiosk-intro {
    padding: 100px 0;
    background: var(--white);
}

.kiosk-intro .container {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 60px;
}

.kiosk-intro-content {
    flex: 1;
    min-width: 0;
    width: 45%;
}

.kiosk-intro-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.kiosk-intro-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-kiosk-order {
    display: inline-block;
    padding: 14px 40px;
    background-color: #f2f5fe;
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-kiosk-order:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(39, 48, 105, 0.15);
}

.kiosk-intro-image {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 20px;
    min-width: 0;
    width: 45%;
}

.kiosk-intro-image img {
    max-width: 100%;
    max-height: 550px;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.kiosk-intro-image img:hover {
    transform: translateY(-8px) scale(1.02);
}

/* ========== CSS Hardware Mockup for POS ========== */
.pos-hardware-mockup {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    perspective: 1000px;
    transition: transform 0.4s ease;
}

.pos-hardware-mockup:hover {
    transform: translateY(-5px);
}

/* The Tablet/Screen Bezel */
.pos-screen-bezel {
    background: #111;
    padding: 18px 18px 22px 18px;
    border-radius: 12px;
    box-shadow: 
        0 25px 40px rgba(39, 48, 105, 0.15), 
        inset 0 0 0 2px #2a2a2a,
        inset 0 0 0 5px #000;
    position: relative;
    z-index: 3;
}

/* Camera Dot */
.pos-screen-bezel::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 50%;
    box-shadow: inset 0 0 2px #000;
}

.pos-screen-content {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.pos-screen-content img {
    width: 100%;
    display: block;
    border-radius: 2px;
}

/* The Stand Neck */
.pos-stand {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 45px;
    background: linear-gradient(to right, #cacaca, #f0f0f0, #cacaca);
    z-index: 2;
    box-shadow: inset 0 10px 10px rgba(0,0,0,0.1);
    border-radius: 2px;
}

/* The Stand Base */
.pos-base {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 12px;
    background: linear-gradient(to right, #b0b0b0, #e0e0e0, #a0a0a0);
    border-radius: 15px 15px 4px 4px;
    z-index: 1;
    box-shadow: 0 15px 20px rgba(39, 48, 105, 0.15);
}

/* ========== Unified Kiosk & Stats Section ========== */
.kiosk-unified-section {
    padding: 100px 0 80px;
    background: var(--primary-blue);
    color: var(--white);
}

.kiosk-unified-top {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 60px;
    margin-bottom: 80px;
}

.kiosk-unified-image {
    flex: 1;
    min-width: 0;
    width: 45%;
}

.unified-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    max-width: 380px;
    margin: 0 auto;
}

.unified-image-wrapper img {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.unified-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.unified-image-wrapper:hover img {
    transform: scale(1.02);
}



.kiosk-unified-content {
    flex: 1;
    min-width: 0;
    width: 45%;
}

.kiosk-unified-subtitle {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.kiosk-unified-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.kiosk-unified-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.kiosk-unified-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ustat-card {
    text-align: center;
}

.ustat-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
    line-height: 1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.ustat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.kiosk-info-image img {
    max-width: 100%;
    border-radius: 15px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
}

/* ========== Screenshots Section (Light Gray) ========== */
.screenshots {
    padding: 100px 0;
    background: var(--off-white);
    border-top: 1px solid #eef2f7;
    overflow: hidden;
}

.screenshots .section-title {
    color: var(--primary-blue);
}

.screenshots-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0 60px;
}

/* Elegant gradient fading on the sides */
.screenshots-wrapper::before,
.screenshots-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.screenshots-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--off-white) 0%, transparent 100%);
}
.screenshots-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--off-white) 0%, transparent 100%);
}

.screenshots-grid {
    display: -webkit-flex;
    display: flex;
    gap: 40px;
    width: -webkit-max-content;
    width: max-content;
    -webkit-animation: scrollGallery 40s linear infinite;
    animation: scrollGallery 40s linear infinite;
}

/* Pause animation on hover */
.screenshots-grid:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.screenshot-item {
    width: 650px;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(39, 48, 105, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.screenshot-item:hover {
    -webkit-transform: translateY(-8px) scale(1.02);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(39, 48, 105, 0.15);
    border-color: rgba(245, 166, 35, 0.5);
    z-index: 10;
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

@-webkit-keyframes scrollGallery {
    0% { -webkit-transform: translateX(0); transform: translateX(0); }
    100% { -webkit-transform: translateX(calc(-50% - 20px)); transform: translateX(calc(-50% - 20px)); }
}
@keyframes scrollGallery {
    0% { -webkit-transform: translateX(0); transform: translateX(0); }
    100% { -webkit-transform: translateX(calc(-50% - 20px)); transform: translateX(calc(-50% - 20px)); }
}

/* ========== Customers Section (White) ========== */
.customers {
    padding: 80px 0;
    background: var(--white);
}

.customers .section-title {
    color: var(--primary-blue);
}

.customers .section-desc {
    color: var(--text-gray);
}

.customers-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.customer-logo {
    font-size: 28px;
    font-weight: 800;
    color: #ccc;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.customer-logo:hover {
    opacity: 1;
    color: var(--primary-blue);
}

/* ========== Pricing Section (Blue) ========== */
.pricing {
    padding: 100px 0;
    background: var(--primary-blue);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.pricing .section-title {
    color: var(--white);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.pricing-toggle span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.pricing-toggle span.active {
    background: var(--accent-yellow);
    color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
    border: 2px solid var(--accent-yellow);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-yellow);
    color: var(--white);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.pricing-plan-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.pricing-price {
    margin: 20px 0;
}

.pricing-price .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
}

.pricing-price .currency {
    font-size: 18px;
    color: var(--text-gray);
}

.pricing-price .period {
    font-size: 14px;
    color: var(--text-gray);
}

.pricing-features {
    margin: 25px 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-gray);
    border-bottom: 1px solid #f5f5f5;
}

.pricing-features li i {
    color: var(--accent-yellow);
    font-size: 14px;
    min-width: 20px;
}

.pricing-features li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: #ccc;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-pricing.primary {
    background: var(--accent-yellow);
    color: var(--white);
}

.btn-pricing.primary:hover {
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
    transform: translateY(-2px);
    background: var(--accent-yellow-hover);
}

.btn-pricing.outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-pricing.outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* ========== FAQ Section (White) ========== */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq .section-title {
    color: var(--primary-blue);
}

.faq-container-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}
.faq-image-left {
    flex: 0 0 auto;
    text-align: center;
    padding-right: 50px;
    margin-left: -40px;
}
.faq-image-left img {
    max-width: 100%;
}
.generated-question-mark {
    font-size: 400px;
    font-weight: 900;
    color: var(--accent-yellow);
    display: inline-block;
    line-height: 1;
    font-family: inherit;
    text-shadow: 
        8px 8px 0px rgba(245, 166, 35, 0.2), 
        15px 15px 30px rgba(0,0,0,0.15);
}
.faq-content-right {
    flex: 1;
}
.bounce-up-down {
    animation: bounceUpDown 3s ease-in-out infinite;
}
@keyframes bounceUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}
.navy-filter {
    filter: invert(16%) sepia(35%) saturate(3065%) hue-rotate(218deg) brightness(88%) contrast(93%);
}

.faq-list {
    max-width: 100%;
    margin: 0;
}

.faq-item {
    border: 1px solid #eef2f7;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-yellow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-question .num {
    color: var(--accent-yellow);
    margin-right: 12px;
    font-weight: 700;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-yellow);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 25px 20px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ========== Contact Section (Blue) ========== */
.contact {
    padding: 100px 0;
    background: var(--primary-blue);
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.form-group {
    flex: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
}

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

.btn-submit {
    background: var(--accent-yellow);
    color: var(--white);
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
    background: var(--accent-yellow-hover);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: var(--card-bg-dark);
    border: 1px solid var(--card-border-dark);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(255,255,255,0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    font-size: 20px;
    min-width: 50px;
}

.contact-info-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    margin-top: 10px;
    border: 1px solid var(--card-border-dark);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========== Footer (Premium Black) ========== */
.footer {
    background: #0a0b0f;
    color: #a0a5b1;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
    box-shadow: 0 0 20px var(--accent-yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-brand img {
    height: 55px;
    margin-bottom: 25px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    color: #8c94a3;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    background: var(--accent-yellow);
    color: #0a0b0f;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(245, 166, 35, 0.3);
    border-color: var(--accent-yellow);
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 4px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 15px;
    color: #8c94a3;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-yellow);
    transform: translateX(8px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
    color: #6e7582;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

/* ========== WhatsApp Floating Button ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========== Scroll to Top Button ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5);
    background: var(--accent-yellow-hover);
}

/* ========== Lightbox Modal ========== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 11, 15, 0.95);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5), 0 0 100px rgba(245, 166, 35, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-modal.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 40px;
    color: #f1f1f1;
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-yellow);
    text-decoration: none;
    cursor: pointer;
}

#lightboxCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 15px 0;
    font-size: 18px;
    letter-spacing: 0.5px;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li a { color: var(--text-dark); }
    .header.scrolled .nav-menu li a { color: var(--text-dark); }

    .btn-signup-nav {
        display: none;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-desc {
        margin: 0 auto 30px;
    }

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

    .chatbot-section .container,
    .kiosk-intro .container,
    .kiosk-unified-top {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .hero-image,
    .chatbot-content,
    .chatbot-image,
    .kiosk-intro-content,
    .kiosk-intro-image,
    .kiosk-unified-image,
    .kiosk-unified-content {
        width: 100%;
    }

    .kiosk-unified-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screenshots-wrapper::before,
    .screenshots-wrapper::after {
        width: 100px;
    }
    .screenshot-item {
        width: 450px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .faq-container-flex {
        flex-direction: column;
    }
    
    .faq-image-left {
        padding-right: 0;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .generated-question-mark {
        font-size: 200px;
    }

    .contact .container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .screenshots-wrapper::before,
    .screenshots-wrapper::after {
        width: 40px;
    }
    .screenshot-item {
        width: 280px;
    }

    .hero-title {
        font-size: 28px;
    }

    .form-row {
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}
