/* ==========================================================================
   SRAJ SERVICES (srajservice.com) - 4K Ultra-Responsive Design System
   ========================================================================== */

:root {
  /* Pristine White & Deep Sapphire Palette */
  --bg-deep: #ffffff;
  --bg-surface-1: #f8fafc;
  --bg-surface-2: #f1f5f9;
  --panel-glass: rgba(255, 255, 255, 0.95);
  --panel-glass-strong: #ffffff;
  --panel-border: rgba(15, 23, 42, 0.12);
  --panel-border-glow: rgba(37, 99, 235, 0.35);

  /* High-Contrast Luxury Accents */
  --cyan: #0284c7;
  --blue: #2563eb;
  --purple: #7c3aed;
  --obsidian: #090d16;
  --emerald: #059669;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font-mono: 'Fira Code', monospace;
  
  --text-main: #090d16;
  --text-muted: #475569;
  --text-soft: #334155;

  /* Zero Radius System for Sharp Architectural Look */
  --radius-lg: 0px;
  --radius-md: 0px;
  --radius-pill: 0px;

  --shadow-4k: 0 20px 60px rgba(15, 23, 42, 0.08);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  background: var(--bg-deep);
}

/* Crisp Sharp Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  box-sizing: border-box;
}

/* Architectural Light Grid Overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

/* Background Canvas */
.bg-canvas-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

#bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Header & Top Navigation */
header, main, footer {
  position: relative;
  z-index: 1;
}

main {
  margin-top: 82px;
}

.topbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--panel-border);
  background: var(--panel-glass);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.main-brand-logo-img {
  height: 82px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.25s ease;
  padding: 8px 0;
}

.main-nav a:hover {
  color: var(--blue);
}

/* Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.85rem 1.8rem;
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
  border: 1px solid transparent;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #ffffff;
  box-shadow: 0 6px 25px rgba(2, 132, 199, 0.35);
  transform: translateY(-1px);
}


.btn-secondary {
  background: var(--bg-deep);
  border: 1px solid var(--panel-border);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: var(--bg-surface-2);
  border-color: var(--obsidian);
  color: var(--obsidian);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Navbar WhatsApp Icon-Only Action Button */
.btn-whatsapp-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.25rem !important;
  transition: all 0.25s ease !important;
  flex-shrink: 0 !important;
  text-decoration: none !important;
  line-height: 1 !important;
}

.btn-whatsapp-icon:hover {
  background: linear-gradient(135deg, #20ba5a 0%, #0e7065 100%) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
  transform: translateY(-2px) scale(1.06) !important;
  color: #ffffff !important;
}

/* Theme Customizer Floating Settings Button & Drawer */
.theme-settings-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 995;
  width: 48px;
  height: 48px;
  background: #090d16;
  color: #ffffff;
  border: 1px solid var(--panel-border);
  box-shadow: -4px 10px 25px rgba(9, 13, 22, 0.25);
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.theme-settings-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
  box-shadow: -6px 12px 30px rgba(37, 99, 235, 0.35);
}

.theme-settings-btn svg {
  transition: transform 0.6s ease;
}

.theme-settings-btn:hover svg {
  transform: rotate(90deg);
}

/* Slide-out Theme Drawer */
.theme-panel {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  height: 100vh;
  background: var(--bg-deep);
  border-left: 1px solid var(--panel-border);
  box-shadow: -15px 0 45px rgba(9, 13, 22, 0.18);
  z-index: 1000;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.theme-panel.active {
  right: 0;
}

.theme-panel-header {
  padding: 24px;
  border-bottom: 1px solid var(--panel-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface-1);
}

.theme-badge {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  display: block;
  margin-bottom: 4px;
}

.theme-panel-title h4 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--obsidian);
  text-transform: uppercase;
}

.theme-close-btn {
  width: 32px;
  height: 32px;
  background: var(--bg-deep);
  border: 1px solid var(--panel-border);
  color: var(--obsidian);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
}

.theme-close-btn:hover {
  background: #090d16;
  color: #ffffff;
}

.theme-panel-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
}

.theme-panel-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.color-options-list {
  display: grid;
  gap: 12px;
}

.theme-radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--bg-surface-1);
  border: 1px solid var(--panel-border);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.theme-radio-card:hover {
  border-color: var(--blue);
  background: var(--bg-deep);
}

.theme-radio-card.active {
  border-color: var(--blue);
  background: var(--bg-deep);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.theme-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-custom {
  width: 16px;
  height: 16px;
  border: 2px solid var(--panel-border);
  background: var(--bg-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.theme-radio-card input[type="radio"]:checked + .radio-custom {
  border-color: var(--blue);
  background: var(--blue);
}

.color-swatch-wrap {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.swatch {
  width: 16px;
  height: 16px;
}

.theme-label-info {
  display: flex;
  flex-direction: column;
}

.theme-label-info strong {
  font-size: 0.86rem;
  color: var(--obsidian);
  font-weight: 800;
}

.theme-label-info small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Hero Section */
.hero-section {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--obsidian);
  word-break: break-word;
}

.gradient-text {
  background: linear-gradient(135deg, var(--obsidian) 0%, var(--blue) 60%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--panel-border);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--obsidian);
  font-family: var(--font-mono);
}

.stat-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-visual-wrap {
  position: relative;
  width: 100%;
}

.hero-visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background: var(--bg-deep);
  box-shadow: var(--shadow-4k);
  width: 100%;
}

.hero-visual-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.section-padding {
  padding: 35px 0;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue);
  padding: 6px 14px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.2);
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: var(--obsidian);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Marketplace Catalog Grid */
.filter-nav-bar {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: var(--bg-surface-1);
  border: 1px solid var(--panel-border);
  color: var(--text-muted);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  color: var(--obsidian);
  background: var(--bg-surface-2);
}

.filter-btn.active {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}


.products-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-item-card {
  background: var(--bg-deep);
  border: 1px solid var(--panel-border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  opacity: 1;
  width: 100%;
}

.product-item-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

.product-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--panel-border);
  width: 100%;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-item-card:hover .product-thumb img {
  transform: scale(1.05);
}

.cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  background: rgba(9, 13, 22, 0.88);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}

.price-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 6px 12px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.9rem;
  font-family: var(--font-mono);
}

.product-card-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--obsidian);
}

.product-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.tech-stack-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tech-pill {
  padding: 3px 8px;
  background: var(--bg-surface-2);
  border: 1px solid var(--panel-border);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-soft);
  font-family: var(--font-mono);
}

.card-actions-row {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--panel-border);
  display: flex;
  gap: 10px;
}

.card-actions-row .btn {
  flex: 1;
  padding: 0.65rem 0.6rem;
  font-size: 0.76rem;
}

/* Modal Dialog & Backdrop */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(9, 13, 22, 0.75);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  overflow-y: auto;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(540px, 100%);
  background: var(--bg-deep);
  border: 1px solid var(--panel-border);
  padding: 36px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.25);
  position: relative;
  box-sizing: border-box;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  width: 36px;
  height: 36px;
  background: var(--bg-surface-1);
  border: 1px solid var(--panel-border);
  color: var(--obsidian);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  color: #ffffff;
  background: #090d16;
}

/* Product Details Modal Layout */
.modal-card-large {
  width: min(880px, 94vw);
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px 28px;
  box-sizing: border-box;
  border-radius: 20px;
}

@media (min-width: 769px) {
  .modal-card-large {
    overflow-y: hidden; /* No scrollbar on desktop! Perfect fit */
  }
}

.detail-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.detail-visual-col,
.detail-info-col {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.detail-image-wrap {
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
  width: 100%;
  background: #0f172a;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.detail-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Template Highlights Box (Website Templates) */
.template-highlights-box {
  margin-top: 10px;
  padding: 10px 12px;
  background: var(--bg-surface-1);
  border: 1px solid var(--panel-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--obsidian);
  line-height: 1.2;
}

.highlight-item small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Credentials Box */
.cred-box {
  margin-top: 10px;
  padding: 10px 12px;
  background: var(--bg-surface-1);
  border: 1px solid var(--panel-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
}

.cred-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--panel-border);
}

.cred-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--obsidian);
}

.cred-status-dot {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--emerald);
  font-family: var(--font-mono);
}

.cred-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-size: 0.76rem;
  flex-wrap: wrap;
}

.cred-label {
  color: var(--text-muted);
  font-weight: 700;
  flex-shrink: 0;
}

.cred-code {
  font-family: var(--font-mono);
  background: var(--bg-deep);
  border: 1px solid var(--panel-border);
  padding: 1px 5px;
  color: var(--blue);
  font-weight: 700;
  word-break: break-all;
  font-size: 0.74rem;
  border-radius: 4px;
}

.cred-link {
  color: var(--blue);
  font-family: var(--font-mono);
  font-weight: 700;
  text-decoration: underline;
  word-break: break-all;
  font-size: 0.74rem;
}

.cred-value {
  color: var(--obsidian);
  font-weight: 800;
  font-size: 0.75rem;
}

#detail-demo-btn {
  margin-top: 10px !important;
  padding: 0.65rem 1rem !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  border-radius: 10px !important;
}

/* Right Column Details */
.detail-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  padding-right: 28px;
  flex-wrap: wrap;
  gap: 6px;
}

.cat-badge-static {
  padding: 3px 8px;
  background: #090d16;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--font-mono);
  border-radius: 4px;
}

.price-badge-static {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--blue);
  font-family: var(--font-mono);
}

.detail-main-title {
  font-size: 1.28rem;
  font-weight: 900;
  margin-bottom: 4px;
  color: var(--obsidian);
  line-height: 1.25;
  word-break: break-word;
}

.detail-description {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.detail-section-title {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--obsidian);
  margin-bottom: 4px;
  font-family: var(--font-mono);
}

.product-spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 10px;
}

.product-spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-soft);
  line-height: 1.2;
}

.check-icon {
  width: 15px;
  height: 15px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  flex-shrink: 0;
  border-radius: 3px;
}

/* Ultra-Premium Access Request Modal Styling */
.modal-card-premium {
  border-top: 4px solid var(--blue);
  padding: 40px 36px;
  width: min(560px, 94vw);
  box-shadow: 0 30px 90px rgba(9, 13, 22, 0.28);
}

.modal-badge-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 8px;
  font-family: var(--font-mono);
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--obsidian);
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 22px;
  padding-right: 28px;
}

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

.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--obsidian);
  margin-bottom: 6px;
}

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

.form-date {
  cursor: pointer;
  font-family: var(--font-main);
}

.field-icon {
  font-size: 0.85rem;
  color: var(--blue);
}

.form-control {
  width: 100%;
  background: var(--bg-surface-1);
  border: 1px solid var(--panel-border);
  padding: 13px 14px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-control:focus {
  background: var(--bg-deep);
  border-color: var(--blue);
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.18);
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-weight: 900;
  pointer-events: none;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 36px;
}

.modal-submit-btn {
  width: 100%;
  padding: 1.1rem;
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 900;
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

.modal-submit-btn:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.success-icon-badge {
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 16px;
}

/* Categories Section */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  padding: 32px 24px;
  background: var(--bg-deep);
  border: 1px solid var(--panel-border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.category-icon {
  width: 44px;
  height: 44px;
  background: #090d16;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.category-title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--obsidian);
  text-transform: uppercase;
}

.category-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Reviews Auto-Scroll Marquee Slider */
.reviews-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0 30px;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.reviews-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}

.reviews-marquee-wrapper:hover .reviews-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  width: 360px;
  padding: 28px 24px;
  background: var(--bg-deep);
  border: 1px solid var(--panel-border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.review-card:hover {
  border-color: var(--blue);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
  transform: translateY(-3px);
}

.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.review-author strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--obsidian);
}

.review-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* FAQ Accordion Section */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--bg-deep);
  border: 1px solid var(--panel-border);
}

.faq-question {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--obsidian);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-toggle {
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--blue);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

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

/* Call To Action Banner - Ultra High Contrast on All Themes */
.cta-banner {
  padding: 56px 40px;
  background: #090d16;
  color: #ffffff;
  border: 1px solid var(--panel-border-glow);
  box-shadow: var(--shadow-4k);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 70px;
}

.cta-copy h2 {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #ffffff !important;
}

.cta-copy p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92) !important;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-banner .btn-primary {
  background: #ffffff !important;
  color: #090d16 !important;
  border-color: #ffffff !important;
}

.cta-banner .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  color: #090d16 !important;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3) !important;
}

.site-footer {
  padding: 50px 0 36px;
  border-top: 1px solid var(--panel-border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  padding-top: 20px;
  border-top: 1px solid var(--panel-border);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Executive Document & Policy Cards (Terms & About Us Layout)
   ========================================================================== */
.legal-content-card {
  background: var(--bg-deep);
  border: 1px solid var(--panel-border);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.05);
  padding: 48px;
  margin-bottom: 50px;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--obsidian);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 4px solid var(--blue);
  line-height: 1.3;
}

.legal-section p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.legal-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.94rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.legal-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-size: 0.85rem;
}

/* ==========================================================================
   Comprehensive Device Breakpoints (Ultra-Responsive System)
   ========================================================================== */

/* 1. Large Laptops & Desktops (1200px - 1440px) */
@media (max-width: 1280px) {
  .hero-title {
    font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  }
  .products-catalog-grid {
    gap: 22px;
  }
}

/* 2. Tablets & Small Laptops (900px - 1199px) */
@media (max-width: 1024px) {
  .topbar {
    height: 76px;
  }

  .main-brand-logo-img {
    height: 48px;
    max-width: 230px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-copy {
    max-width: 100%;
  }
  
  .hero-visual-card img {
    height: 380px;
  }

  .products-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .detail-modal-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .modal-card-large {
    padding: 28px;
    width: 95vw;
  }
}

/* 3. Small Tablets & iPad Portrait (640px - 899px) */
@media (max-width: 860px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .topbar {
    height: 68px;
    gap: 12px;
  }

  .main-brand-logo-img {
    height: 38px;
    max-width: 180px;
  }

  .nav-actions .btn {
    padding: 0.65rem 0.95rem;
    font-size: 0.74rem;
  }

  .main-nav {
    display: none;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    align-items: stretch;
  }

  .cta-banner .btn {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 4. Large Mobile Phones (480px - 639px) */
@media (max-width: 640px) {
  .container {
    width: calc(100% - 24px);
  }

  .topbar {
    height: 64px;
    gap: 8px;
  }

  .main-brand-logo-img {
    height: 34px;
    max-width: 155px;
  }

  .nav-actions .btn {
    padding: 0.55rem 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

  .btn-whatsapp-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 1.05rem !important;
  }

  .products-catalog-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-visual-card img {
    height: 280px;
  }

  .modal-card,
  .modal-card-premium {
    padding: 28px 20px;
    width: 96vw;
  }

  .modal-title {
    font-size: 1.35rem;
  }

  .card-actions-row {
    flex-direction: column;
  }

  .card-actions-row .btn {
    width: 100%;
  }

  .review-card {
    width: 300px;
    padding: 22px 18px;
  }
}

/* 5. Small Mobile Phones (< 480px) */
@media (max-width: 480px) {
  .topbar {
    height: 60px;
  }

  .main-brand-logo-img {
    height: 30px;
    max-width: 135px;
  }

  .nav-actions .btn {
    padding: 0.5rem 0.65rem;
    font-size: 0.66rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Search & Project Filter Bar Styling */
.marketplace-filter-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  background: var(--bg-surface-1);
  padding: 24px;
  border: 1px solid var(--panel-border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
}

.search-input-wrap {
  position: relative;
  width: 100%;
}

.search-input-wrap input {
  width: 100%;
  padding: 14px 20px 14px 46px;
  background: var(--bg-deep);
  border: 1px solid var(--panel-border);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input-wrap input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.search-input-wrap .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
  pointer-events: none;
}

.tech-filter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tech-filter-label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-right: 6px;
}

.tech-filter-pill {
  padding: 6px 14px;
  background: var(--bg-deep);
  border: 1px solid var(--panel-border);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-mono);
}

.tech-filter-pill:hover,
.tech-filter-pill.active {
  background: #090d16;
  color: #ffffff;
  border-color: #090d16;
}

/* Site Preloader with Logo & Animated Loading Text */
.preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-deep);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.preloader-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  animation: preloaderPulse 1.8s ease-in-out infinite;
}

.preloader-glow-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 40px var(--blue);
  opacity: 0.25;
  animation: preloaderGlow 1.8s ease-in-out infinite alternate;
}

.preloader-loading-text {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--blue);
  text-transform: uppercase;
}

.loading-dots span {
  animation: loadingDots 1.4s infinite;
  opacity: 0;
  display: inline-block;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

.preloader-progress-bar {
  width: 180px;
  height: 3px;
  background: var(--bg-surface-2);
  position: relative;
  overflow: hidden;
}

.preloader-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  animation: preloaderProgress 1.6s ease-in-out infinite;
  transform-origin: left;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes preloaderGlow {
  0% { transform: scale(0.9); opacity: 0.15; }
  100% { transform: scale(1.15); opacity: 0.35; }
}

@keyframes loadingDots {
  0%, 20% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes preloaderProgress {
  0% { transform: scaleX(0); }
  50% { transform: scaleX(0.7); }
  100% { transform: scaleX(1); }
}

/* Coming Soon Teaser Overlay Cards (Matched to media_1787334934569.jpg) */
.coming-soon-card {
  position: relative !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  min-height: 400px;
}

.coming-soon-card:hover {
  transform: translateY(-6px) !important;
  border-color: #9333ea !important;
  box-shadow: 0 20px 45px rgba(147, 51, 234, 0.18) !important;
}

.coming-soon-overlay-bg {
  width: 100%;
  height: 100%;
  position: relative;
  filter: blur(1.5px) grayscale(10%);
  opacity: 0.38;
  pointer-events: none;
  transition: all 0.35s ease;
}

.coming-soon-card:hover .coming-soon-overlay-bg {
  filter: blur(0.8px) grayscale(0%);
  opacity: 0.52;
}

.coming-soon-glass-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 20px 20px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}

.coming-soon-rocket-badge {
  width: 76px;
  height: 76px;
  background: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #7c3aed !important;
  font-size: 1.9rem !important;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.22) !important;
  border: 2px solid #f3e8ff !important;
  margin-bottom: 14px;
  animation: pulse-rocket 2.5s infinite ease-in-out;
  padding: 10px;
  box-sizing: border-box;
  overflow: hidden;
}

.coming-soon-company-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

@keyframes pulse-rocket {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 25px rgba(124, 58, 237, 0.22); }
  50% { transform: scale(1.08); box-shadow: 0 15px 35px rgba(124, 58, 237, 0.38); }
}

.coming-soon-title {
  font-size: 2.1rem !important;
  font-weight: 900 !important;
  color: #6b21a8 !important;
  margin: 0 0 2px 0 !important;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.coming-soon-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c084fc, transparent);
  margin: 8px 0 12px 0;
  position: relative;
}

.coming-soon-divider span {
  font-size: 0.65rem;
  color: #9333ea;
  position: absolute;
  top: -5px;
  background: #ffffff;
  padding: 0 4px;
}

.coming-soon-desc {
  font-size: 0.86rem !important;
  color: #475569 !important;
  font-weight: 600 !important;
  line-height: 1.55 !important;
  max-width: 270px;
  margin: 0 0 20px 0 !important;
}

.coming-soon-bottom-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff !important;
  border: 1px solid #e9d5ff !important;
  color: #6b21a8 !important;
  padding: 9px 22px !important;
  border-radius: 30px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.12) !important;
}

/* No Projects Found Empty State Box */
.no-projects-found-card {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 2rem;
  background: var(--bg-surface-1, #ffffff);
  border: 1px dashed var(--panel-border-glow, #e2e8f0);
  border-radius: 16px;
  margin: 1.5rem 0 3rem 0;
  grid-column: 1 / -1;
  width: 100%;
}

.no-projects-icon {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.no-projects-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.no-projects-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.clear-search-btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
}

/* ==========================================================================
   Professional 2-Column PhonePe QR Payment Modal Styling
   ========================================================================== */
.qr-checkout-modal {
  max-width: 820px !important;
  width: 95vw !important;
  padding: 0 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.4), 0 0 35px rgba(124, 58, 237, 0.25) !important;
  background: #ffffff !important;
  border: 1px solid rgba(124, 58, 237, 0.2) !important;
}

.qr-checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 58, 237, 0.25);
  color: #c4b5fd;
  border: 1px solid rgba(167, 139, 250, 0.4);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.qr-modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 6px;
  letter-spacing: -0.02em;
}

.qr-price-tag {
  font-size: 1.6rem;
  font-weight: 900;
  color: #a78bfa;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 16px;
  border-radius: 12px;
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.qr-checkout-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
}

.qr-col-visual {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e2e8f0;
}

.qr-code-wrapper {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  text-align: center;
  width: 100%;
}

.qr-badge-strip {
  font-size: 0.75rem;
  font-weight: 800;
  color: #6d28d9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.qr-img-preview {
  max-width: 220px;
  width: 100%;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.qr-upi-info {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #e2e8f0;
}

.qr-upi-row {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
}

.qr-upi-val {
  color: #6d28d9;
  font-weight: 800;
  font-family: var(--font-mono, monospace);
  font-size: 0.95rem;
  background: rgba(124, 58, 237, 0.08);
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 4px;
}

.qr-apps-icons {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  margin-top: 6px;
}

.qr-col-form {
  padding: 2rem;
  background: #ffffff;
}

.qr-item-summary {
  background: #f8fafc;
  border-left: 4px solid #7c3aed;
  padding: 10px 14px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.summary-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.06em;
}

.summary-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.qr-input-label {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  color: #1e293b !important;
  margin-bottom: 6px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.req-star {
  color: #ef4444;
}

.opt-tag {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.75rem;
}

.qr-input {
  border-radius: 10px !important;
  padding: 11px 14px !important;
  border: 1.5px solid #cbd5e1 !important;
  background: #ffffff !important;
  font-size: 0.9rem !important;
}

.qr-input:focus {
  border-color: #7c3aed !important;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15) !important;
}

.qr-input-hint {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 4px;
  display: block;
}

.qr-instructions-card {
  background: linear-gradient(135deg, #f5f3ff 0%, #eff6ff 100%);
  border: 1px solid #ddd6fe;
  border-radius: 12px;
  padding: 1rem;
  margin: 1.25rem 0;
}

.inst-card-title {
  font-size: 0.84rem;
  font-weight: 800;
  color: #5b21b6;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.inst-card-text {
  font-size: 0.78rem;
  color: #334155;
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.inst-email-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #6d28d9;
  border: 1px solid #c4b5fd;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.inst-email-link:hover {
  background: #6d28d9;
  color: #ffffff;
  border-color: #6d28d9;
}

.inst-card-sub {
  font-size: 0.74rem;
  color: #64748b;
  margin: 8px 0 0 0;
  line-height: 1.4;
}

.qr-submit-btn {
  width: 100%;
  padding: 1.1rem !important;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.35) !important;
  transition: all 0.25s ease !important;
}

.qr-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.45) !important;
  background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%) !important;
}

@media (max-width: 768px) {
  .qr-checkout-grid {
    grid-template-columns: 1fr;
  }
  .qr-col-visual {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem;
  }
  .qr-col-form {
    padding: 1.5rem;
  }
}


