/* ==========================================================================
   eCatalogPro Premium Style Sheet - Developed by R TECHUB
   ========================================================================== */

/* Design System & Variables */
:root {
  --color-bg: #07080d;
  --color-bg-sec: #0e0f17;
  --color-bg-ter: #171822;
  --color-text: #f3f4f6;
  --color-text-muted: #9ca3af;
  
  /* Gradients based on eCatalogPro Logo (Sky Blue & Orange) */
  --color-indigo: #0099ff; /* Brand Sky Blue */
  --color-purple: #06b6d4; /* Brand Cyan */
  --color-cyan: #06b6d4;
  --color-blue: #0077cc;   /* Solid Royal Blue */
  --color-emerald: #10b981;
  --color-orange: #f97316; /* Brand Orange */
  --color-pink: #f59e0b;   /* Brand Gold/Amber */
  
  --grad-primary: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-purple) 100%);
  --grad-cyan-blue: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-blue) 100%);
  --grad-emerald: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --grad-orange-pink: linear-gradient(135deg, var(--color-orange) 0%, var(--color-pink) 100%);
  --grad-text: linear-gradient(135deg, #fff 35%, var(--color-indigo) 100%);
  --grad-text-accent: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-orange) 100%);
  
  /* Glassmorphism */
  --glass-bg: rgba(14, 15, 23, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 16px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-bg-ter);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-purple);
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gradient {
  background: var(--grad-text-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: var(--color-purple);
  margin-bottom: 1.5rem;
}

.badge-cyan {
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--color-cyan);
}

.badge-emerald {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--color-emerald);
}

.badge-success {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid var(--color-emerald);
  color: #fff;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--border-radius);
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 153, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 153, 255, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-icon:hover {
  background: var(--color-purple);
  border-color: var(--color-purple);
  color: #fff;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 0.8rem 0;
  background: rgba(7, 8, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.logo:hover .brand-logo-img {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.nav-link:hover {
  color: #fff;
}

.nav-cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.4rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-glow-1 {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

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

.stat-number {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Showcase Card & 3D Flipbook Viewer */
.hero-visual {
  width: 100%;
}

.showcase-card {
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 20px;
  padding: 1.5rem;
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.window-dots span:nth-child(1) { background: #ff5f56; }
.window-dots span:nth-child(2) { background: #ffbd2e; }
.window-dots span:nth-child(3) { background: #27c93f; }

.window-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* 3D Book Mechanism */
.book-viewport {
  perspective: 2000px;
  width: 100%;
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  position: relative;
}

.book {
  width: 250px;
  height: 340px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(50%); /* Start centered (since only cover is visible, shifted right) */
}

.book.opened {
  transform: translateX(0%);
}

.book.closed-back {
  transform: translateX(-50%);
}

.page {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: left center;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 1;
}

.page-front, .page-back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center;
  border-radius: 4px 16px 16px 4px;
  box-shadow: inset -5px 0 20px rgba(0,0,0,0.4), 8px 8px 24px rgba(0,0,0,0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-back {
  transform: rotateY(180deg);
  border-radius: 16px 4px 4px 16px;
  box-shadow: inset 5px 0 20px rgba(0,0,0,0.4), -8px 8px 24px rgba(0,0,0,0.4);
  background-color: var(--color-bg-sec);
  justify-content: center;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.page-cover .page-front::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 0;
}

.cover-overlay {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  text-align: center;
  width: 100%;
}

.tap-hint {
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  animation: float 3s ease-in-out infinite;
}

.page-content-wrapper {
  color: var(--color-text);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-content-wrapper h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-content-wrapper p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 0.3rem;
}

.spec-row span:last-child {
  font-weight: 600;
  color: var(--color-purple);
}

.page.flipped {
  transform: rotateY(-180deg);
}

/* Page corner flip animation effect */
.page-front::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.4) 100%);
  transition: width 0.3s, height 0.3s;
  z-index: 10;
}

.page:hover:not(.flipped) .page-front::before {
  width: 25px;
  height: 25px;
}

/* Interactive Hotspots in Flipbook */
.hotspot {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  pointer-events: auto;
}

.hotspot::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #000;
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  pointer-events: none;
}

.hotspot:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hotspot-whatsapp {
  background: #25d366;
}

.hotspot-cart {
  background: var(--color-cyan);
}

.hotspot-video {
  background: var(--color-purple);
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse-ring 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  pointer-events: none;
}

.hotspot-whatsapp .pulse-ring {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}
.hotspot-cart .pulse-ring {
  box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
}
.hotspot-video .pulse-ring {
  box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7);
}

/* Flipbook Controls styling */
.book-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

.page-indicator {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Features Grid Section */
.features-section {
  padding: 8rem 0;
  background-color: var(--color-bg-sec);
  position: relative;
}

.section-header {
  max-width: 650px;
  margin: 0 auto 5rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--color-bg-ter);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 153, 255, 0.3);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25), 0 0 40px rgba(0, 153, 255, 0.05);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1.8rem;
}

.bg-gradient-blue { background: var(--grad-cyan-blue); }
.bg-gradient-purple { background: var(--grad-primary); }
.bg-gradient-cyan { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.bg-gradient-emerald { background: var(--grad-emerald); }
.bg-gradient-orange { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }
.bg-gradient-pink { background: var(--grad-orange-pink); }

.feature-card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Comparison Section Slider */
.comparison-section {
  padding: 8rem 0;
  position: relative;
}

.comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem;
}

.comparison-text h2 {
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.comparison-text p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.comparison-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}

.checklist-item i {
  font-size: 1.2rem;
}

.checklist-item.positive i {
  color: var(--color-emerald);
}

.checklist-item.negative i {
  color: #ef4444;
}

.checklist-item.negative {
  color: var(--color-text-muted);
}

/* Slider mechanism */
.comparison-slider-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.comparison-slider {
  width: 100%;
  max-width: 440px;
  height: 480px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.comparison-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.before-img {
  z-index: 1;
}

.after-img {
  z-index: 2;
  width: 50%;
  overflow: hidden;
  transition: width 0.05s ease;
}

.label-badge {
  position: absolute;
  top: 1rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.label-before {
  left: 1rem;
  background: rgba(239, 68, 68, 0.25);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.3);
}

.label-after {
  right: 1rem;
  background: rgba(16, 185, 129, 0.25);
  color: #a7f3d0;
  border-color: rgba(16, 185, 129, 0.3);
}

.static-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--color-text-muted);
}

.static-overlay i {
  font-size: 3rem;
  color: #ef4444;
}

.interactive-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 440px; /* Locked width to prevent resizing scaling issues */
  height: 100%;
  background: rgba(168, 85, 247, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  gap: 0.8rem;
}

.interactive-overlay span {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  animation: float 4s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.tag-wa { background: #25d366; color: #fff; animation-delay: 0s !important; }
.tag-cart { background: var(--color-cyan); color: #fff; animation-delay: 1.5s !important; }
.tag-video { background: var(--color-purple); color: #fff; animation-delay: 3s !important; }

/* Divider line and dragging input */
.slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  z-index: 10;
  pointer-events: none;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-bg);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
}

.compare-range-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 15;
  cursor: ew-resize;
}

/* Analytics Dashboard Mockup Section */
.analytics-section {
  padding: 8rem 0;
  background-color: var(--color-bg-sec);
  position: relative;
  overflow: hidden;
}

.analytics-glow {
  position: absolute;
  top: 40%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.analytics-text h2 {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.analytics-text p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.bullet-item {
  display: flex;
  gap: 1.2rem;
}

.bullet-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: var(--color-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bullet-item h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.bullet-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Live Dashboard Design */
.analytics-visual {
  width: 100%;
}

.dashboard-window {
  background: #0f172a;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #f3f4f6;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.db-title-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
}

.text-cyan {
  color: var(--color-cyan);
}

.time-range-badge {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

.dashboard-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.db-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.db-stat-val {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.db-stat-lbl {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.db-stat-change {
  font-size: 0.7rem;
  font-weight: 600;
}

.text-emerald {
  color: var(--color-emerald);
}

.dashboard-charts {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
}

.chart-container, .device-breakdown {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 1.2rem;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.chart-legend i {
  font-size: 0.5rem;
}

.text-purple {
  color: var(--color-purple);
}

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

.svg-graph {
  width: 100%;
  overflow: visible;
}

.graph-path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw-graph 3s ease-out forwards;
}

.graph-area {
  opacity: 0;
  animation: fade-in 1s 1.5s ease-out forwards;
}

.graph-dot {
  transform: scale(0);
  transform-origin: center;
  animation: pop-dot 0.5s ease-out forwards;
}

.graph-dot:nth-child(1) { animation-delay: 0.8s; }
.graph-dot:nth-child(2) { animation-delay: 1.6s; }
.graph-dot:nth-child(3) { animation-delay: 2.2s; }

.actions-bars {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.bar-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.bar-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.bar-outer {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.bar-inner {
  height: 100%;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  animation: grow-bar 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.bar-pct {
  align-self: flex-end;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  margin-top: -16px;
}

/* Industries We Serve Section styling */
.industries-section {
  padding: 8rem 0;
}

.industry-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-title);
  padding: 0.8rem 1.6rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.tab-btn.active {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.25);
}

.industry-panels {
  position: relative;
  min-height: 380px;
}

.industry-panel {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.industry-panel.active {
  display: block;
  opacity: 1;
  position: relative;
  z-index: 2;
  animation: fade-in 0.5s ease-out forwards;
}

.panel-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.panel-text h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.panel-text p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.panel-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.panel-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.panel-visual {
  display: flex;
  justify-content: center;
}

.mock-catalog-card {
  width: 300px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.mock-cat-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mock-cat-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mock-diagram, .mock-product-shot, .mock-property-shot, .mock-chart-shot {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: inset 0 0 15px rgba(255,255,255,0.05);
}

#panel-manufacturing .mock-diagram i { color: var(--color-cyan); }
#panel-retail .mock-product-shot i { color: var(--color-purple); }
#panel-realestate .mock-property-shot i { color: var(--color-blue); }
#panel-corporate .mock-chart-shot i { color: var(--color-emerald); }

.animate-spin-slow {
  animation: spin-slow 12s linear infinite;
}

/* Benefits Section styling */
.benefits-section {
  padding: 8rem 0;
  background-color: var(--color-bg-sec);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-box {
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

.benefit-box:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: var(--glass-shadow), 0 0 30px rgba(16, 185, 129, 0.03);
}

.benefit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.benefit-number {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.1;
}

.benefit-header i {
  font-size: 1.8rem;
}

.text-orange { color: var(--color-orange); }

.benefit-box h4 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.benefit-box p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Demo Section Lead Form styling */
.demo-section {
  padding: 8rem 0;
}

.demo-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 4.5rem;
  border-radius: 24px;
  gap: 4rem;
}

.demo-info h2 {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}

.demo-info p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 3.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.contact-item i {
  font-size: 1.6rem;
  color: var(--color-purple);
  width: 44px;
  height: 44px;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: #fff;
}

.contact-item span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

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

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.3s ease;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.form-group input, .form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-purple);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.15);
}

.error-msg {
  font-size: 0.75rem;
  color: #ef4444;
  font-weight: 500;
  display: none;
}

.form-group.invalid input, .form-group.invalid textarea {
  border-color: #ef4444;
}

.form-group.invalid .error-msg {
  display: block;
}

/* Success panel styling */
.form-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  animation: scale-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon {
  font-size: 4rem;
  color: var(--color-emerald);
  margin-bottom: 1.5rem;
}

.form-success h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.form-success p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 360px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Dialog Modals styles */
/* WhatsApp Modal styles */
.wa-modal {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 320px;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1100;
  display: none;
  animation: scale-up 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wa-modal.active {
  display: block;
}

.wa-header {
  background: #075e54;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
}

.wa-avatar {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.wa-user-info h4 {
  font-size: 0.85rem;
  font-weight: 600;
}

.wa-user-info span {
  font-size: 0.7rem;
  opacity: 0.75;
}

.modal-close {
  margin-left: auto;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.modal-close:hover {
  opacity: 1;
}

.wa-body {
  background: #ece5dd;
  padding: 1rem;
  height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.wa-msg {
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.8rem;
  max-width: 85%;
  line-height: 1.4;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.wa-msg.incoming {
  background: #fff;
  color: #333;
  align-self: flex-start;
  border-top-left-radius: 0;
}

.wa-msg.outgoing {
  background: #dcf8c6;
  color: #333;
  align-self: flex-end;
  border-top-right-radius: 0;
}

.wa-footer {
  background: #f0f0f0;
  padding: 0.6rem 0.8rem;
  display: flex;
  gap: 0.6rem;
}

.wa-footer input {
  flex-grow: 1;
  border: none;
  background: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 100px;
  font-size: 0.8rem;
  color: #333;
}

.wa-footer input:focus {
  outline: none;
}

.wa-send-btn {
  background: #075e54;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
}

/* Video Modal styles */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  width: 90%;
  max-width: 720px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}

.video-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.video-player-container {
  width: 100%;
  aspect-ratio: 16/9;
}

.simulated-video {
  width: 100%;
  height: 100%;
  background: #0b0c10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-overlay-play {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s;
}

.video-overlay-play:hover {
  transform: scale(1.05);
}

.video-overlay-play i {
  font-size: 4rem;
  color: var(--color-purple);
  filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.4));
}

.video-playing-state {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #090a0e;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.sound-wave {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  margin-bottom: 1.5rem;
}

.sound-wave span {
  width: 4px;
  background: var(--color-purple);
  border-radius: 10px;
  animation: bounce-wave 1s ease-in-out infinite alternate;
}

.sound-wave span:nth-child(1) { height: 10px; animation-delay: 0.1s; }
.sound-wave span:nth-child(2) { height: 35px; animation-delay: 0.3s; }
.sound-wave span:nth-child(3) { height: 20px; animation-delay: 0.5s; }
.sound-wave span:nth-child(4) { height: 40px; animation-delay: 0.2s; }

.vid-progress {
  width: 80%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  margin-top: 2rem;
  overflow: hidden;
}

.vid-progress-bar {
  width: 0%;
  height: 100%;
  background: var(--color-purple);
  transition: width 0.1s linear;
}

/* Cart Toast styles */
.cart-toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 360px;
  background: rgba(14, 15, 23, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-emerald);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 1300;
  overflow: hidden;
  display: none;
  animation: slide-in-right 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cart-toast.active {
  display: block;
}

.toast-body {
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.toast-body i {
  font-size: 1.8rem;
  color: var(--color-emerald);
}

.toast-body strong {
  display: block;
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: #fff;
}

.toast-body span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.toast-progress {
  height: 3px;
  width: 100%;
  background: rgba(16, 185, 129, 0.2);
  position: relative;
}

.toast-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--color-emerald);
  transform-origin: left;
  animation: shrink-toast-progress 4s linear forwards;
}

/* Footer styling */
.footer {
  background-color: #08090d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6rem 0 2rem;
  color: #94a3b8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand .logo {
  margin-bottom: 1.2rem;
  display: inline-block;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  max-width: 280px;
}

.rtech-brand {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.rtech-brand strong {
  color: #fff;
}

.footer-links-col h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-col a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-links-col a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Keyframes & Animations */
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

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

@keyframes ping {
  0% { transform: scale(1); opacity: 0.8; }
  70%, 100% { transform: scale(1.8); opacity: 0; }
}

@keyframes draw-graph {
  to { stroke-dashoffset: 0; }
}

@keyframes fade-in {
  to { opacity: 1; }
}

@keyframes scale-up {
  0% { transform: scale(0.9) translateY(10px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes slide-in-right {
  0% { transform: translateX(50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes shrink-toast-progress {
  to { transform: scaleX(0); }
}

@keyframes pop-dot {
  to { transform: scale(1); }
}

@keyframes grow-bar {
  to { transform: scaleX(1); }
}

@keyframes bounce-wave {
  to { transform: scaleY(0.2); }
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero-grid, .panel-content-grid, .analytics-grid, .demo-card {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .comparison-container {
    grid-template-columns: 1fr;
    padding: 3rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1.5rem 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #07080d;
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 2rem 0;
    gap: 1.5rem;
    display: none;
    animation: scale-up 0.3s ease-out forwards;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-cta {
    width: 80%;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .comparison-slider {
    height: 400px;
  }
  
  .dashboard-charts {
    grid-template-columns: 1fr;
  }
  
  .wa-modal {
    bottom: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .showcase-card {
    padding: 1rem;
  }
  
  .book-viewport {
    height: 320px;
  }
  
  .book {
    width: 200px;
    height: 280px;
  }
  
  .comparison-container {
    padding: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Developed by R TECHUB Logo Styling */
.badge-developer {
  display: inline-flex !important;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  background: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #0f172a !important;
  text-transform: none !important;
  letter-spacing: 0.5px !important;
  border-radius: 100px;
}

.badge-logo-img {
  height: 15px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Contact Details Logo styling */
.contact-logo-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 6px;
}

.contact-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Footer R TECHUB Logo styling */
.footer-rtech-logo {
  height: 18px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  opacity: 0.9;
  transition: var(--transition-smooth);
  background: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
}

.footer-rtech-logo:hover {
  opacity: 1;
}

/* Footer Bottom Logos Row styling */
.footer-bottom-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.footer-bottom-logo {
  height: 24px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.65;
  transition: var(--transition-smooth);
}

.footer-bottom-logo:hover {
  opacity: 0.95;
  transform: scale(1.02);
}

.rtech-footer-logo {
  height: 18px; /* balanced size for landscape logo */
  background: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
}

.powered-by-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  opacity: 0.6;
  text-transform: lowercase;
  letter-spacing: 0.5px;
}
