* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-green: #4CAF50;
    --primary-blue: #5C7CFA;
    --primary-purple: #7C3AED;
    --bg-dark: #1f1f1f;
    --bg-darker: #1a1a1a;
    --bg-card: #252525;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border-color: #333333;
    --accent-green: #4CAF50;
    --accent-purple: #9333ea;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.6s ease;
}
html {
    scroll-behavior: smooth;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 0;
    background: rgba(31, 31, 31, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-left {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}
.nav-center {
    display: flex;
    justify-content: center;
    flex: 1;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    font-family: Arial, sans-serif;
}
.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}
.nav-menu > li {
    position: relative;
}
.nav-dropdown {
    position: relative;
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    font-family: Arial, sans-serif;
    display: block;
}
.nav-link:hover {
    color: var(--text-primary);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(31, 31, 31, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 250px;
    padding: 0.5rem 0;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}
.dropdown-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}
.dropdown-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}
.beta-badge {
    background: var(--primary-green);
    color: white;
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    margin-left: 0.25rem;
    font-weight: 600;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}
.btn-signin {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid var(--text-primary);
    border-radius: 30px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: Arial, sans-serif;
}
.btn-signin:hover {
    background: var(--text-primary);
    color: var(--bg-dark);
    transform: translateY(-2px);
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}
.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger to X animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
.hero {
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}
.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(92, 124, 250, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}
.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.3) 0%, transparent 70%);
    top: 100px;
    right: -100px;
    animation-delay: 5s;
}
.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 10s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.hero-badge svg {
    color: var(--primary-green);
}
.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #a0a8ff;
    letter-spacing: -0.02em;
}
.icon-wrapper {
    display: inline-flex;
    gap: 0.5rem;
    vertical-align: middle;
    margin: 0 0.5rem;
}
.check-icon,
.globe-icon {
    width: 60px;
    height: 60px;
    vertical-align: middle;
}
.highlight-text {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}
.btn-secondary {
    padding: 1rem 2.5rem;
    background: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-secondary:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}
.hero-indicators {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}
.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.indicator.active {
    background: var(--primary-blue);
    width: 24px;
    border-radius: 4px;
}
.dashboard-preview {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}
.dashboard-container {
    background: #2a2d3a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #1e2029;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.dashboard-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}
.dashboard-logo img {
    height: 24px;
    width: 24px;
    object-fit: contain;
}
.dashboard-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    flex: 1;
    max-width: 400px;
    margin: 0 2rem;
}
.dashboard-search svg {
    color: var(--text-secondary);
}
.dashboard-search input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    flex: 1;
}
.search-shortcut {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}
.dashboard-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.icon-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}
.user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.user-profile:hover {
    background: rgba(255, 255, 255, 0.08);
}
.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5C7CFA, #7C3AED);
}
.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.user-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}
.user-email {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.2;
}
.dashboard-content {
    display: flex;
    min-height: 600px;
}
.dashboard-sidebar {
    width: 240px;
    background: #1e2029;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
}
.sidebar-nav {
    display: flex;
    flex-direction: column;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}
.sidebar-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}
.sidebar-link.active {
    color: var(--text-primary);
    background: rgba(76, 175, 80, 0.1);
}
.sidebar-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-green);
}
.sidebar-link svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}
.badge {
    margin-left: auto;
    background: var(--primary-blue);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
}
.dashboard-main {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}
.main-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}
.main-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stat-info {
    flex: 1;
}
.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.stat-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
}
.stat-change {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.25rem;
}
.stat-change.positive {
    color: var(--primary-green);
}
.stat-change.negative {
    color: #ff6b6b;
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.sales-team,
.traffic-chart,
.orders-list {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}
.orders-list {
    grid-column: 1 / -1;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.section-header h3 {
    font-size: 1rem;
    font-weight: 600;
}
.filter-btn,
.see-all {
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.filter-btn span {
    color: var(--text-primary);
    font-weight: 600;
}
.team-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.team-member {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.team-member:hover {
    background: rgba(255, 255, 255, 0.05);
}
.member-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5C7CFA, #7C3AED);
    flex-shrink: 0;
}
.member-info {
    flex: 1;
}
.member-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.member-role {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.donut-chart {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}
.donut-chart svg {
    width: 200px;
    height: 200px;
}
.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.legend-value {
    margin-left: auto;
    color: var(--text-primary);
    font-weight: 600;
}
.order-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}
.order-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order-info {
    flex: 1;
}
.order-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.order-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.order-status {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}
.order-status.completed {
    background: rgba(76, 175, 80, 0.15);
    color: var(--primary-green);
}
.order-status.pending {
    background: rgba(255, 152, 0, 0.15);
    color: #ff9800;
}
.order-id {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: monospace;
}
.side-decorations {
    position: absolute;
    z-index: 0;
}
.side-decorations.left {
    left: 2rem;
    top: 40%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
.deco-icon {
    color: var(--text-muted);
}
.deco-badge {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
}
.side-decorations.right {
    right: 2rem;
    top: 35%;
}
.analytics-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
}
.analytics-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.analytics-chart {
    position: relative;
}
.analytics-value {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-green);
}
.features-section {
    padding: 6rem 0;
    background: var(--bg-darker);
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-primary);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.feature-icon {
    margin-bottom: 1.5rem;
}
.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}
.endless-capabilities-section {
    padding: 6rem 0;
    background: var(--bg-darker);
    overflow: hidden;
}
.scroll-container {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}
.scroll-content {
    display: flex;
    gap: 2rem;
    animation: scroll-infinite 20s linear infinite;
    width: fit-content;
}
.scroll-content:hover {
    animation-play-state: paused;
}
@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}
@keyframes scroll-infinite-seamless {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}
@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}
@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}
@keyframes particle-float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}
.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 176, 79, 0.4);
    background: #45a049 !important;
}
@keyframes gradient-shift {
    0%, 100% {
        background: linear-gradient(135deg, rgba(13, 15, 26, 0.9) 0%, rgba(20, 25, 40, 0.8) 50%, rgba(13, 15, 26, 0.9) 100%);
    }
    25% {
        background: linear-gradient(135deg, rgba(15, 20, 35, 0.9) 0%, rgba(25, 30, 45, 0.8) 50%, rgba(15, 20, 35, 0.9) 100%);
    }
    50% {
        background: linear-gradient(135deg, rgba(13, 15, 26, 0.9) 0%, rgba(18, 22, 38, 0.8) 50%, rgba(13, 15, 26, 0.9) 100%);
    }
    75% {
        background: linear-gradient(135deg, rgba(16, 18, 30, 0.9) 0%, rgba(22, 28, 42, 0.8) 50%, rgba(16, 18, 30, 0.9) 100%);
    }
}
@keyframes color-pulse-1 {
    0%, 100% {
        background: radial-gradient(circle, rgba(76, 175, 80, 0.4) 0%, rgba(92, 124, 250, 0.2) 50%, transparent 70%);
    }
    50% {
        background: radial-gradient(circle, rgba(92, 124, 250, 0.4) 0%, rgba(76, 175, 80, 0.2) 50%, transparent 70%);
    }
}
@keyframes color-pulse-2 {
    0%, 100% {
        background: radial-gradient(circle, rgba(92, 124, 250, 0.3) 0%, rgba(124, 58, 237, 0.2) 50%, transparent 70%);
    }
    50% {
        background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, rgba(92, 124, 250, 0.2) 50%, transparent 70%);
    }
}
@keyframes color-pulse-3 {
    0%, 100% {
        background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, rgba(76, 175, 80, 0.2) 50%, transparent 70%);
    }
    50% {
        background: radial-gradient(circle, rgba(76, 175, 80, 0.3) 0%, rgba(124, 58, 237, 0.2) 50%, transparent 70%);
    }
}
@keyframes color-pulse-4 {
    0%, 100% {
        background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, rgba(76, 175, 80, 0.1) 50%, transparent 70%);
    }
    50% {
        background: radial-gradient(circle, rgba(76, 175, 80, 0.2) 0%, rgba(255, 107, 107, 0.1) 50%, transparent 70%);
    }
}
@keyframes color-pulse-5 {
    0%, 100% {
        background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, rgba(124, 58, 237, 0.1) 50%, transparent 70%);
    }
    50% {
        background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(255, 193, 7, 0.1) 50%, transparent 70%);
    }
}
@keyframes grid-pulse {
    0%, 100% {
        opacity: 0.3;
        background-image: linear-gradient(rgba(76, 175, 80, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(76, 175, 80, 0.1) 1px, transparent 1px);
    }
    50% {
        opacity: 0.5;
        background-image: linear-gradient(rgba(92, 124, 250, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(92, 124, 250, 0.15) 1px, transparent 1px);
    }
}
@keyframes wave-move-1 {
    0%, 100% {
        transform: translateX(-100%) scaleY(1);
    }
    50% {
        transform: translateX(0%) scaleY(1.2);
    }
}
@keyframes wave-move-2 {
    0%, 100% {
        transform: translateX(100%) scaleY(1);
    }
    50% {
        transform: translateX(0%) scaleY(0.8);
    }
}
@keyframes particle-glow {
    0%, 100% {
        box-shadow: 0 0 5px currentColor;
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px currentColor, 0 0 25px currentColor;
        transform: scale(1.2);
    }
}
@keyframes beam-sweep {
    0%, 100% {
        transform: rotate(0deg) scaleY(0.5);
        opacity: 0;
    }
    25% {
        transform: rotate(5deg) scaleY(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(0deg) scaleY(1.2);
        opacity: 0.5;
    }
    75% {
        transform: rotate(-5deg) scaleY(1);
        opacity: 0.3;
    }
}
@keyframes automation-gradient-shift {
    0%, 100% {
        background: linear-gradient(135deg, rgba(10, 13, 20, 0.95) 0%, rgba(15, 20, 30, 0.9) 50%, rgba(10, 13, 20, 0.95) 100%);
    }
    25% {
        background: linear-gradient(135deg, rgba(12, 16, 25, 0.95) 0%, rgba(18, 25, 35, 0.9) 50%, rgba(12, 16, 25, 0.95) 100%);
    }
    50% {
        background: linear-gradient(135deg, rgba(10, 13, 20, 0.95) 0%, rgba(13, 18, 28, 0.9) 50%, rgba(10, 13, 20, 0.95) 100%);
    }
    75% {
        background: linear-gradient(135deg, rgba(11, 14, 22, 0.95) 0%, rgba(16, 22, 32, 0.9) 50%, rgba(11, 14, 22, 0.95) 100%);
    }
}
@keyframes data-flow-1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
@keyframes data-flow-2 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes node-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}
@keyframes node-float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -20px);
    }
    50% {
        transform: translate(-15px, 15px);
    }
    75% {
        transform: translate(15px, 20px);
    }
}
@keyframes workflow-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1.1);
    }
}
@keyframes automation-badge-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(92, 124, 250, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(92, 124, 250, 0.8);
        transform: scale(1.05);
    }
}
@keyframes step-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
@keyframes feature-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.08);
    }
    50% {
        box-shadow: 0 0 20px rgba(92, 124, 250, 0.2);
        border-color: rgba(92, 124, 250, 0.3);
    }
}
@keyframes feature-icon-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes feature-icon-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
@keyframes feature-icon-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}
@keyframes feature-icon-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.capability-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    min-width: 350px;
    max-width: 350px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.capability-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.capability-icon {
    margin-bottom: 1.5rem;
}
.capability-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.capability-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}
.demo-screen {
    background: #2a2d3a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.demo-screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #1e2029;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.demo-screen-content {
    display: flex;
    min-height: 500px;
}
.demo-screen-content-single {
    min-height: 500px;
    background: rgba(255, 255, 255, 0.02);
}
.demo-sidebar {
    width: 200px;
    background: #1e2029;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.demo-main {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
}
.demo-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}
.demo-nav-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}
.demo-nav-item.active {
    color: var(--text-primary);
    background: rgba(76, 175, 80, 0.1);
    border-left: 3px solid var(--primary-green);
}
.demo-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}
.demo-stat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
}
.demo-activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.demo-activity-item:last-child {
    border-bottom: none;
}
.demo-activity-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}
.demo-calendar-day {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.demo-calendar-day:hover {
    background: rgba(255, 255, 255, 0.08);
}
.demo-calendar-day.active {
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
}
.demo-room-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}
.demo-room-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}
.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}
.status-badge.available {
    background: rgba(76, 175, 80, 0.15);
    color: var(--primary-green);
}
.status-badge.booked {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}
.kanban-column {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}
.kanban-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.kanban-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.task-tag {
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}
.footer {
    padding: 3rem 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}
.footer-logo img {
    height: 32px;
    width: 32px;
    object-fit: contain;
}
.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    .dashboard-preview {
        padding: 0 2rem;
    }
    .side-decorations {
        display: none;
    }
    
    /* Show hamburger button when navigation might overflow */
    .hamburger {
        display: flex !important;
    }
    
    .desktop-only {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Hide desktop navigation completely */
    .nav-center {
        display: none !important;
    }
}
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }
    .check-icon,
    .globe-icon {
        width: 40px;
        height: 40px;
    }
    .dashboard-sidebar {
        display: none;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .content-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .ai-showcase [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .ai-showcase h2 {
        font-size: 2rem !important;
    }
    .chatbot-mockup {
        order: -1;
    }
    .capability-card {
        min-width: 350px !important;
    }
    .ai-capabilities-container h3 {
        font-size: 1.5rem !important;
    }
}
@media (max-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    .hero-content {
        padding: 2rem 1.5rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    .dashboard-preview {
        padding: 0 1rem;
    }
    .dashboard-header {
        flex-wrap: wrap;
    }
    .dashboard-search {
        order: 3;
        width: 100%;
        margin: 1rem 0 0 0;
    }
    .dashboard-main {
        padding: 1rem;
    }
    .demo-screen-content {
        flex-direction: column;
    }
    .demo-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .demo-main {
        padding: 1rem;
    }
    .demo-screen-content-single {
        padding: 0;
    }
    .kanban-column {
        min-width: 280px;
    }
    .capability-card {
        min-width: 280px;
        max-width: 280px;
        padding: 1.5rem;
    }
    .scroll-content {
        animation: scroll-infinite 15s linear infinite;
    }
}
.industry-row {
    margin-bottom: 4rem;
}
.industry-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
}
.industry-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.industry-icon {
    font-size: 2rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}
.industry-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}
.scroll-container {
    position: relative;
    padding: 0 2rem;
}
.demos-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 1rem 0 2rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
.demos-scroll::-webkit-scrollbar {
    height: 8px;
}
.demos-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.demos-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}
.demos-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
.demo-card {
    flex: 0 0 auto;
    width: 700px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.demo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}
.demo-card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.demo-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}
.demo-card-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.demo-card-content {
    padding: 0;
}
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}
.scroll-container:hover .scroll-btn {
    opacity: 1;
    pointer-events: all;
}
.scroll-btn:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translateY(-50%) scale(1.1);
}
.scroll-btn-left {
    left: 0.5rem;
}
.scroll-btn-right {
    right: 0.5rem;
}
.scroll-btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--text-primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.demos-scroll {
    scroll-snap-type: none;
    scroll-behavior: auto;
}
.demo-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.demo-card.hidden {
    display: none;
}
.demo-screen-content-single {
    height: 500px;
    overflow-y: auto;
}
.demo-screen-content-single::-webkit-scrollbar {
    width: 8px;
}
.demo-screen-content-single::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.demo-screen-content-single::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}
.demo-screen-content-single::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
    .demo-card {
        width: 85vw;
    }
    .scroll-container {
        padding: 0 1rem;
    }
    .industry-header {
        padding: 0 1rem;
    }
    .scroll-btn {
        display: none;
    }
}
@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}
@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
.capability-card {
    position: relative;
    overflow: hidden;
}
.capability-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}
.capability-card:hover {
    transform: scale(1.02) !important;
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.capability-indicator {
    cursor: pointer;
}
.capability-indicator:hover {
    transform: scale(1.3) !important;
    filter: brightness(1.5);
}
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.industry-cms-tab {
    position: relative;
    overflow: hidden;
}
.industry-cms-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 124, 250, 0.3) !important;
}
.cms-menu-item:hover {
    background: rgba(92, 124, 250, 0.1) !important;
    transform: translateX(5px);
}
.cms-feature-item {
    cursor: default;
}
.cms-feature-item:hover {
    transform: translateY(-10px) scale(1.02) !important;
    border-color: rgba(92, 124, 250, 0.5);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05) !important;
}
.cms-feature-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    border-color: rgba(92, 124, 250, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.cms-content-panel {
    transition: all 0.5s ease;
}
@media (max-width: 768px) {
    .industry-cms-tab {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    .cms-feature-item {
        padding: 1.5rem !important;
    }
    .cms-feature-item h4 {
        font-size: 1.1rem !important;
    }
}

/* Get Quote Button Styles */
.get-quote-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.get-quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049, #4CAF50);
}

.get-quote-btn:active {
    transform: translateY(-1px);
}

/* Quote Section Styles */
.quote-section {
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(92, 124, 250, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.quote-form-container {
    position: relative;
    z-index: 2;
}

.quote-form-container input:focus,
.quote-form-container textarea:focus,
.quote-form-container select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

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

#sendQuoteBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049, #4CAF50);
}

#sendQuoteBtn:active {
    transform: translateY(0);
}

/* Form validation styles */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Success message styles */
.success-message {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Error message styles */
.error-message {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Loading state for button */
#sendQuoteBtn.loading {
    background: linear-gradient(135deg, #666, #555);
    cursor: not-allowed;
    position: relative;
}

#sendQuoteBtn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Language Toggle Styles */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.lang-btn.active {
    background: transparent;
    color: var(--text-primary);
    font-weight: 700;
}

.lang-btn.active:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* Dropdown styling */
.quote-form-container select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1rem;
    padding-right: 2.5rem !important;
}

.quote-form-container select option {
    background: #1a1f2e;
    color: white;
    padding: 0.5rem;
}

/* Responsive styles for horizontal quote form */
@media (max-width: 768px) {
    .quote-form-container form {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .quote-section {
        padding: 3rem 0 !important;
    }
    
    .quote-content h2 {
        font-size: 1.5rem !important;
    }
    
    .quote-content p {
        font-size: 0.9rem !important;
    }
    
    .quote-form-container {
        padding: 1.5rem !important;
        margin: 0 1rem !important;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.7rem !important;
        font-size: 0.85rem !important;
    }
    
    .form-group select {
        padding-right: 2.2rem !important;
        background-size: 0.8rem;
        background-position: right 0.6rem center;
    }
    
    #sendQuoteBtn {
        padding: 0.8rem 2rem !important;
        font-size: 0.9rem !important;
    }
}

/* Mobile Responsive Font Sizes for iPhone Pro/Pro Max */
@media (max-width: 480px) {
    /* Hero Section Mobile Adjustments */
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 2rem !important;
    }
    
    /* Body Text Mobile Adjustments */
    body {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Feature Cards Mobile */
    .feature-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .feature-card p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    /* Navigation Mobile */
    .nav-link {
        font-size: 0.9rem !important;
    }
    
    /* Button Text Mobile */
    .btn-primary {
        font-size: 0.9rem !important;
        padding: 0.8rem 1.5rem !important;
    }
    
    /* CMS Feature Items Mobile */
    .cms-feature-item h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .cms-feature-item p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
    
    /* AI Showcase Mobile */
    .ai-showcase h2 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }
    
    /* AI Chatbot Section Mobile */
    .ai-showcase h2[data-translate="chatbot-title"] {
        font-size: 2rem !important;
        line-height: 1.1 !important;
    }
    
    .ai-feature-item h4 {
        font-size: 1rem !important;
    }
    
    .ai-feature-item p {
        font-size: 0.85rem !important;
    }
    
    /* AI Automation Section Mobile */
    .automation-content h2[data-translate="automation-title"] {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
    }
    
    .automation-content p[data-translate="automation-subtitle"] {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    /* CMS Section Mobile */
    .cms-showcase h2[data-translate="cms-title"] {
        font-size: 2rem !important;
        line-height: 1.1 !important;
    }
    
    /* Footer Mobile */
    .footer p {
        font-size: 0.85rem !important;
    }
    
    .footer h4 {
        font-size: 1rem !important;
    }
}

/* iPhone Pro Max Specific (414px and below) */
@media (max-width: 414px) {
    .hero-title {
        font-size: 2.2rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    body {
        font-size: 13px !important;
    }
    
    /* AI Chatbot Section iPhone Pro Max */
    .ai-showcase h2[data-translate="chatbot-title"] {
        font-size: 1.8rem !important;
    }
    
    /* AI Automation Section iPhone Pro Max */
    .automation-content h2[data-translate="automation-title"] {
        font-size: 2rem !important;
    }
    
    .automation-content p[data-translate="automation-subtitle"] {
        font-size: 0.95rem !important;
    }
    
    /* CMS Section iPhone Pro Max */
    .cms-showcase h2[data-translate="cms-title"] {
        font-size: 1.8rem !important;
    }
}

/* iPhone Pro Specific (390px and below) */
@media (max-width: 390px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    
    .section-title {
        font-size: 1.7rem !important;
    }
    
    body {
        font-size: 12px !important;
    }
    
    /* AI Chatbot Section iPhone Pro */
    .ai-showcase h2[data-translate="chatbot-title"] {
        font-size: 1.6rem !important;
    }
    
    /* AI Automation Section iPhone Pro */
    .automation-content h2[data-translate="automation-title"] {
        font-size: 1.8rem !important;
    }
    
    .automation-content p[data-translate="automation-subtitle"] {
        font-size: 0.9rem !important;
    }
    
    /* CMS Section iPhone Pro */
    .cms-showcase h2[data-translate="cms-title"] {
        font-size: 1.6rem !important;
    }
}

/* Mobile Menu Styles */
.desktop-only {
    display: block;
}

.mobile-menu-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    max-height: 0;
    background: var(--bg-card);
    z-index: 9998;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu-overlay.active {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-menu-content {
    width: 100%;
    background: var(--bg-card);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}


.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--primary-blue);
    color: var(--primary-blue);
}

.mobile-login-btn {
    background: linear-gradient(135deg, #5C7CFA, #7C3AED) !important;
    color: white !important;
    margin: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.mobile-login-btn:hover {
    background: linear-gradient(135deg, #4c6fef, #6d28d9) !important;
    border-left-color: transparent !important;
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
}

.mobile-nav-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-link {
    display: block;
    padding: 0.75rem 2.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-dropdown-link:hover {
    color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-language-toggle {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Responsive - Hide desktop elements */
@media (max-width: 768px) {
    
    .nav-right {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    /* Fix navbar container to prevent overlap */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    /* Ensure logo stays on left */
    .nav-left {
        flex: 0 0 auto;
    }
    
    /* Ensure navbar stays on top */
    .navbar {
        position: fixed;
        z-index: 9999;
    }
}

/* Desktop - Hide mobile menu */
@media (min-width: 1201px) {
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .hamburger {
        display: none !important;
    }
}

/* Prevent hamburger from affecting existing navigation */
.hamburger {
    cursor: pointer;
    pointer-events: auto;
}

.hamburger span {
    pointer-events: none;
}
