/* Cyberpunk Theme CSS */
:root {
  --primary-color: #00ff9d;
  --background-color: #050505;
  --accent-color: #ff00ff;
  --secondary-accent: #0099ff;
  --text-color: #ffffff;
  --text-secondary: #cccccc;
  --card-bg: rgba(10, 10, 10, 0.7);
  --border-color: rgba(0, 255, 157, 0.3);
  --glow-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
  --transition-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Security - Prevent Text Selection */
body, html {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

input, textarea, [contenteditable="true"], .allow-select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

/* Prevent image saving on mobile */
img:not(.clickable-img) {
  -webkit-touch-callout: none;
}

html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--background-color);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary-color), var(--accent-color));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(var(--accent-color), var(--primary-color));
}

/* Selection Color */
::selection {
  background: var(--primary-color);
  color: var(--background-color);
}

body {
  font-family: 'Roboto', 'Inter', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(0, 255, 157, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 20%);
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
.header {
  background-color: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--glow-shadow);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 255, 157, 0.7);
}

.logo i {
  font-size: 2rem;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color var(--transition-speed);
}

.nav a:hover {
  color: var(--primary-color);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-speed);
}

.nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.9)),
    linear-gradient(45deg, rgba(0, 255, 157, 0.1), rgba(255, 0, 255, 0.1));
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(0, 255, 157, 0.1) 50%, transparent 100%),
    linear-gradient(transparent 0%, rgba(255, 0, 255, 0.05) 50%, transparent 100%);
  animation: grid-move 10s linear infinite;
  pointer-events: none;
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(100px, 100px);
  }
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-secondary);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--background-color);
  box-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 255, 157, 0.7);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.btn-secondary:hover {
  background: rgba(0, 255, 157, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 255, 157, 0.5);
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: rgba(10, 10, 10, 0.7);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--secondary-accent));
  z-index: -1;
  border-radius: 12px;
  opacity: 0;
  transition: opacity var(--transition-speed);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 255, 157, 0.3);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Footer */
.footer {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.footer p {
  color: var(--text-secondary);
}

/* Glassmorphism Form Styles */
.form-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  box-shadow: var(--glow-shadow);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-color);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 15px;
  background: rgba(20, 20, 20, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  color: var(--text-color);
  font-size: 1rem;
  transition: all var(--transition-speed);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

/* Chat Widget - Improved */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #00cc7a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 255, 157, 0.5);
  border: none;
  color: var(--background-color);
  font-size: 1.6rem;
  transition: all 0.3s ease;
  position: relative;
}

.chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 255, 157, 0.7);
}

.chat-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4d4d;
  color: white;
  font-size: 0.75rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.chat-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 380px;
  height: 550px;
  background: rgba(12, 12, 12, 0.98);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chat-container.active {
  display: flex;
  animation: chatSlideUp 0.3s ease;
}

@keyframes chatSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Chat Header */
.chat-header {
  padding: 15px 18px;
  background: linear-gradient(135deg, rgba(0, 255, 157, 0.15), rgba(0, 153, 255, 0.1));
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.chat-header-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.chat-lang-display {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.chat-lang-display i {
  color: var(--secondary-accent);
}

/* Chat Language Selector */
.chat-lang-selector {
  position: relative;
}

.chat-lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 255, 157, 0.15);
  border: 1px solid rgba(0, 255, 157, 0.3);
  color: var(--text-color);
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.chat-lang-btn:hover {
  background: rgba(0, 255, 157, 0.25);
  border-color: var(--primary-color);
}

.chat-lang-btn i:first-child {
  color: var(--primary-color);
}

.chat-lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(15, 15, 15, 0.98);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  width: 220px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.chat-lang-dropdown.active {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
}

.chat-lang-search {
  padding: 12px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 157, 0.05);
}

.chat-lang-search i {
  color: var(--primary-color);
  font-size: 1rem;
}

.chat-lang-search input {
  flex: 1;
  background: rgba(30, 30, 30, 0.9);
  border: 1px solid rgba(0, 255, 157, 0.2);
  color: var(--text-color);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
}

.chat-lang-search input:focus {
  border-color: var(--primary-color);
}

.chat-lang-list {
  max-height: 200px;
  overflow-y: auto;
  padding: 5px 0;
}

.chat-lang-list::-webkit-scrollbar {
  width: 4px;
}

.chat-lang-list::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 2px;
}

.chat-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.chat-lang-option:hover {
  background: rgba(0, 255, 157, 0.1);
}

.chat-lang-option.active {
  background: rgba(0, 255, 157, 0.15);
}

.chat-lang-code {
  background: rgba(0, 255, 157, 0.2);
  color: var(--primary-color);
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  min-width: 28px;
  text-align: center;
}

.chat-lang-name {
  flex: 1;
}

.chat-lang-option i.ri-check-line {
  color: var(--primary-color);
  font-size: 1rem;
}

.chat-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-menu-btn,
.close-chat {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.chat-menu-btn:hover,
.close-chat:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Chat Menu Dropdown */
.chat-menu {
  position: absolute;
  top: 100%;
  right: 10px;
  background: rgba(20, 20, 20, 0.98);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  min-width: 180px;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.chat-menu.active {
  display: flex;
}

.chat-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.chat-menu a:hover {
  background: rgba(0, 255, 157, 0.1);
}

.chat-menu a i {
  color: var(--primary-color);
}

/* Chat Welcome */
.chat-welcome {
  text-align: center;
  padding: 25px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
}

.welcome-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.welcome-icon i {
  font-size: 1.8rem;
  color: var(--background-color);
}

.chat-welcome h4 {
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.chat-welcome p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0;
}

/* Chat Messages */
.chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-messages::-webkit-scrollbar {
  width: 5px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.message-content {
  font-size: 0.95rem;
  line-height: 1.5;
}

.message-time {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
}

.user-message {
  background: linear-gradient(135deg, rgba(0, 255, 157, 0.25), rgba(0, 255, 157, 0.15));
  border: 1px solid rgba(0, 255, 157, 0.3);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.admin-message {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

/* Chat Input */
.chat-input {
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--border-color);
}

.chat-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 5px 5px 5px 18px;
  transition: all 0.3s ease;
}

.chat-input-wrapper:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 255, 157, 0.1);
}

/* Chat File Preview */
.chat-file-preview {
  display: flex;
  align-items: center;
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid var(--border-color);
}

.chat-file-preview img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
  pointer-events: auto;
}

.chat-file-preview .remove-preview {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 16px;
  height: 16px;
  background: #ff4d4d;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 5;
}

.chat-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 0.95rem;
  padding: 8px 0;
  outline: none;
}

.chat-input input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.chat-input button {
  width: 42px;
  height: 42px;
  background: var(--primary-color);
  color: var(--background-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.chat-input button:hover {
  background: #00e68a;
  transform: scale(1.05);
}

.chat-powered {
  text-align: center;
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.chat-powered strong {
  color: var(--secondary-accent);
}

/* Responsive Design - Mobile First */
@media (max-width: 992px) {
  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-info-panel {
    position: static;
    order: 2;
  }

  .order-form-panel {
    order: 1;
  }
}

/* Mobile Menu Toggle - Default Hidden */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(0, 255, 157, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--primary-color);
  cursor: pointer;
  padding: 10px;
  z-index: 101;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu-toggle:hover {
  background: rgba(0, 255, 157, 0.2);
}

@media (max-width: 768px) {

  /* Header Mobile */
  .header {
    padding: 10px 0;
  }

  .header .container {
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 15px;
    position: relative;
  }

  .logo {
    font-size: 1.4rem;
  }

  .logo i {
    font-size: 1.6rem;
  }

  /* Mobile Menu Toggle - Show on Mobile */
  .mobile-menu-toggle {
    display: flex !important;
    order: 2;
  }

  /* Mobile Menu */
  .nav {
    order: 3;
    width: auto;
    display: none;
    background: rgba(10, 10, 10, 0.98);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid var(--border-color);
    position: absolute;
    top: 100%;
    left: 15px;
    right: 15px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }

  .nav.active {
    display: block !important;
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
  }

  .nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav ul li:last-child {
    border-bottom: none;
  }

  .nav a {
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
  }

  .nav a:hover,
  .nav a.active {
    background: rgba(0, 255, 157, 0.1);
  }

  .nav a::after {
    display: none;
  }

  /* Language Selector Mobile */
  .language-selector {
    order: 1;
    margin-left: auto;
  }

  .lang-toggle {
    padding: 8px 12px;
  }

  .lang-toggle span {
    display: none;
  }

  .lang-dropdown {
    width: 260px;
    right: -50px;
  }

  /* Hero Mobile */
  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    text-align: center;
  }

  /* Info Sections Mobile */
  .info-section {
    padding: 50px 0;
  }

  .info-section h2 {
    font-size: 1.6rem;
    flex-direction: column;
    gap: 10px;
  }

  .info-content,
  .info-content.reverse {
    grid-template-columns: 1fr;
  }

  .info-icon {
    display: none;
  }

  .info-text p {
    font-size: 1rem;
  }

  /* Benefits Grid Mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .benefit-card {
    padding: 20px;
  }

  /* Features Mobile */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 25px;
  }

  /* Pricing Mobile */
  .pricing-section {
    padding: 50px 0;
  }

  .pricing-card {
    padding: 30px 25px;
  }

  .price .amount {
    font-size: 3rem;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-contact p {
    justify-content: center;
  }

  /* Chat Widget Mobile */
  .chat-widget {
    bottom: 15px;
    right: 15px;
  }

  .chat-toggle {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }

  .chat-container {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 85vh;
    max-height: 600px;
    border-radius: 20px 20px 0 0;
  }

  /* Order Form Mobile */
  .order-page {
    padding: 30px 0;
  }

  .order-form-panel {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .order-info-panel {
    padding: 20px;
  }

  .price-options {
    flex-direction: column;
    gap: 5px;
  }

  .file-upload-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
  }

  /* Form Container Mobile */
  .form-container {
    padding: 20px;
    margin: 30px auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .feature-card i {
    font-size: 2.5rem;
  }

  .chat-container {
    height: 90vh;
    max-height: none;
  }

  .section-header h3 {
    font-size: 1rem;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

/* Ensure all interactive elements have proper cursor */
button,
a,
input,
select,
textarea {
  cursor: pointer;
}

input,
select,
textarea {
  cursor: text;
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 255, 157, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 157, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Language Selector */
.language-selector {
  position: relative;
  z-index: 1000;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 157, 0.1);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-speed);
  font-size: 0.95rem;
  font-family: inherit;
}

.lang-toggle:hover {
  background: rgba(0, 255, 157, 0.2);
  border-color: var(--primary-color);
}

.lang-toggle i:first-child {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: rgba(15, 15, 15, 0.98);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  width: 280px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.lang-dropdown.active {
  max-height: 400px;
  opacity: 1;
  visibility: visible;
}

.lang-search {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 255, 157, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.lang-search i {
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.lang-search input {
  flex: 1;
  background: rgba(30, 30, 30, 0.9);
  border: 2px solid rgba(0, 255, 157, 0.3);
  color: var(--text-color);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  width: 100%;
}

.lang-search input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 255, 157, 0.15);
  background: rgba(20, 20, 20, 1);
}

.lang-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.lang-no-results {
  text-align: center;
  padding: 30px 20px;
  color: rgba(255, 255, 255, 0.5);
  display: none;
}

.lang-no-results.show {
  display: block;
}

.lang-no-results i {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.3);
}

.lang-list {
  max-height: 300px;
  overflow-y: auto;
  padding: 8px 0;
}

.lang-list::-webkit-scrollbar {
  width: 6px;
}

.lang-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.lang-list::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: var(--text-color);
  text-decoration: none;
  transition: all var(--transition-speed);
  cursor: pointer;
}

.lang-option:hover {
  background: rgba(0, 255, 157, 0.1);
}

.lang-option.active {
  background: rgba(0, 255, 157, 0.15);
}

.lang-option .lang-code {
  background: rgba(0, 255, 157, 0.2);
  color: var(--primary-color);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 32px;
  text-align: center;
}

.lang-option .lang-name {
  flex: 1;
  font-size: 0.95rem;
}

.lang-option i.ri-check-line {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Notification Badge */
.notification-badge {
  background: var(--primary-color);
  color: var(--background-color);
  border-radius: 50%;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 5px;
}

/* Info Sections */
.info-section {
  padding: 80px 0;
}

.info-section.alt-bg {
  background: rgba(10, 10, 10, 0.7);
}

.info-section h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.info-section h2 i {
  font-size: 2.5rem;
}

.info-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.info-content.reverse {
  grid-template-columns: auto 1fr;
}

.info-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.info-text ul {
  list-style: none;
  margin-top: 20px;
}

.info-text ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-color);
}

.info-text ul li i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.info-icon {
  text-align: center;
}

.info-icon i {
  font-size: 8rem;
  color: var(--primary-color);
  opacity: 0.3;
  text-shadow: 0 0 50px rgba(0, 255, 157, 0.5);
}

/* Warning Box */
.warning-box {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.warning-box i {
  color: #ffc107;
  font-size: 1.5rem;
}

.warning-box span {
  color: #ffc107;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all var(--transition-speed);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 157, 0.2);
  border-color: var(--primary-color);
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.benefit-card h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Pros Cons Container */
.pros-cons-container {
  max-width: 800px;
  margin: 0 auto;
}

.pros-box,
.cons-box {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.box-header {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.box-header.pros {
  background: rgba(0, 255, 157, 0.1);
  border-bottom: 1px solid rgba(0, 255, 157, 0.3);
}

.box-header.pros i,
.box-header.pros h3 {
  color: var(--primary-color);
}

.box-header.cons {
  background: rgba(255, 77, 77, 0.1);
  border-bottom: 1px solid rgba(255, 77, 77, 0.3);
}

.box-header.cons i,
.box-header.cons h3 {
  color: #ff4d4d;
}

.box-header i {
  font-size: 1.8rem;
}

.box-header h3 {
  font-size: 1.3rem;
  margin: 0;
}

.pros-box ul,
.cons-box ul {
  list-style: none;
  padding: 20px 30px;
}

.pros-box li,
.cons-box li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pros-box li:last-child,
.cons-box li:last-child {
  border-bottom: none;
}

.pros-box li i {
  color: var(--primary-color);
  margin-top: 3px;
}

.cons-box li i {
  color: #ff4d4d;
  margin-top: 3px;
}

/* Solution Box */
.solution-box {
  background: rgba(0, 255, 157, 0.1);
  border: 1px solid rgba(0, 255, 157, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 30px 30px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.solution-box i {
  color: var(--primary-color);
  font-size: 2rem;
}

.solution-box strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 5px;
}

.solution-box p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 255, 157, 0.05), rgba(255, 0, 255, 0.05));
}

.pricing-section h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 0 40px rgba(0, 255, 157, 0.3);
}

.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--primary-color);
  color: var(--background-color);
  padding: 5px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-header h3 {
  color: var(--text-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
}

.price .currency {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 10px;
}

.price .amount {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.price-alt {
  color: var(--text-secondary);
  margin-top: 10px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li i {
  color: var(--primary-color);
}

/* Footer Styles */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand .logo {
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--text-secondary);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact p {
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--primary-color);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Responsive for new sections */
@media (max-width: 768px) {

  .info-content,
  .info-content.reverse {
    grid-template-columns: 1fr;
  }

  .info-icon {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .lang-toggle span {
    display: none;
  }

  .header .container {
    flex-wrap: wrap;
  }

  .language-selector {
    order: 3;
    width: 100%;
    margin-top: 10px;
  }

  .lang-dropdown {
    left: 0;
    right: 0;
    width: 100%;
  }
}

/* ==========================================
   ORDER PAGE - PROFESSIONAL UI
   ========================================== */

.order-page {
  padding: 60px 0;
  min-height: calc(100vh - 200px);
}

.order-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Panel - Order Info */
.order-info-panel {
  background: linear-gradient(135deg, rgba(0, 255, 157, 0.1), rgba(0, 153, 255, 0.1));
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 35px;
  position: sticky;
  top: 100px;
}

.order-info-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
}

.order-info-header i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
  text-shadow: 0 0 30px rgba(0, 255, 157, 0.5);
}

.order-info-header h2 {
  color: var(--text-color);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.order-info-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.order-benefits {
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-item>i {
  font-size: 1.8rem;
  color: var(--primary-color);
  width: 45px;
  height: 45px;
  background: rgba(0, 255, 157, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-item h4 {
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 3px;
}

.benefit-item p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0;
}

.order-price-display {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
}

.price-tag .price-label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.price-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.price-inr {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-divider {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.price-usdt {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-accent);
}

/* Right Panel - Form */
.order-form-panel {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.form-header h2 {
  color: var(--text-color);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.form-header h2 i {
  color: var(--primary-color);
}

.form-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* Order Price Box */
.order-price-box {
  background: linear-gradient(135deg, rgba(0, 255, 157, 0.1), rgba(0, 153, 255, 0.1));
  border: 2px solid rgba(0, 255, 157, 0.3);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
}

.price-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.price-box-header i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.price-box-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.price-option-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 15px 25px;
  text-align: center;
  flex: 1;
  max-width: 150px;
}

.price-flag {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.price-option-card .price-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.price-option-card .price-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-separator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-separator span {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Alerts */
.alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.alert i {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.alert-error {
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.3);
  color: #ff4d4d;
}

.alert-success {
  background: rgba(0, 255, 157, 0.1);
  border: 1px solid rgba(0, 255, 157, 0.3);
  color: var(--primary-color);
}

/* Form Sections */
.form-section {
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.form-section:last-of-type {
  border-bottom: none;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.step-number {
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  color: var(--background-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.section-header h3 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin: 0;
}

/* Form Row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row:last-child {
  margin-bottom: 0;
}

.order-form .form-group {
  margin-bottom: 0;
}

.order-form .form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.order-form .form-group label i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.order-form .form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.order-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.order-form .form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 255, 157, 0.1);
}

.order-form small {
  display: block;
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-top: 8px;
}

/* Payment Methods */
.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.payment-option {
  cursor: pointer;
}

.payment-option input {
  display: none;
}

.payment-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(20, 20, 20, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.payment-card:hover {
  border-color: rgba(0, 255, 157, 0.3);
}

.payment-option input:checked+.payment-card {
  border-color: var(--primary-color);
  background: rgba(0, 255, 157, 0.05);
}

.payment-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-icon i {
  font-size: 1.5rem;
}

.payment-icon.upi {
  background: linear-gradient(135deg, #5f259f, #9c27b0);
  color: white;
}

.payment-icon.usdt {
  background: linear-gradient(135deg, #26a17b, #009688);
  color: white;
}

.payment-info h4 {
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 3px;
}

.payment-price {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
}

.check-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.payment-option input:checked+.payment-card .check-icon {
  opacity: 1;
}

/* File Upload */
.file-upload-group {
  margin-bottom: 0;
}

.file-upload-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(0, 255, 157, 0.1);
  border: 1px dashed var(--primary-color);
  border-radius: 10px;
  color: var(--primary-color);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.file-upload-wrapper:hover .file-upload-btn {
  background: rgba(0, 255, 157, 0.2);
}

.file-name {
  color: var(--text-secondary);
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Submit Button */
.form-submit {
  margin-top: 35px;
  text-align: center;
}

.btn-lg {
  padding: 18px 50px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-lg i {
  font-size: 1.3rem;
}

.submit-note {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 15px;
}

/* Responsive Order Page */
@media (max-width: 1024px) {
  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-info-panel {
    position: static;
    order: 2;
  }

  .order-form-panel {
    order: 1;
  }
}

@media (max-width: 768px) {
  .order-page {
    padding: 30px 0;
  }

  .order-form-panel {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .order-info-panel {
    padding: 25px;
  }

  .price-options {
    flex-direction: column;
    gap: 5px;
  }
  
  .price-box-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .price-option-card {
    max-width: 100%;
  }
  
  .price-separator {
    transform: rotate(90deg);
  }

  .file-upload-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

/* =================================
   NOTIFICATION BADGE
   ================================= */
.notification-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--primary-color);
  color: var(--background-color);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 5px;
}

/* =================================
   RTL (Right-to-Left) SUPPORT
   For Arabic, Urdu, Hebrew, etc.
   ================================= */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .header .container {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav ul {
  flex-direction: row-reverse;
}

[dir="rtl"] .logo {
  flex-direction: row-reverse;
}

[dir="rtl"] .notification-badge {
  margin-left: 0;
  margin-right: 5px;
}

[dir="rtl"] .info-content {
  direction: rtl;
}

[dir="rtl"] .info-text ul {
  padding-right: 0;
  padding-left: 0;
}

[dir="rtl"] .info-text li {
  flex-direction: row-reverse;
}

[dir="rtl"] .chat-container {
  right: auto;
  left: 20px;
}

[dir="rtl"] .chat-widget {
  right: auto;
  left: 20px;
}

[dir="rtl"] .chat-input-wrapper {
  flex-direction: row-reverse;
}

[dir="rtl"] .language-selector {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}

[dir="rtl"] .form-group label {
  text-align: right;
}

[dir="rtl"] .footer-content {
  text-align: right;
}

@media (max-width: 768px) {
  [dir="rtl"] .chat-container {
    left: 0;
    right: 0;
  }
  
  [dir="rtl"] .chat-widget {
    left: 15px;
    right: auto;
  }
}