/* ==========================================================================
   HTV Premium Promo Website Style Sheet
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --bg-primary: #000000;
  --bg-secondary: #202124;
  --bg-tertiary: #3C4043;
  
  --accent-gold: #EA4435;
  --accent-gold-hover: #D93025;
  --accent-gold-rgb: 234, 68, 53;
  
  --accent-light: #BDC1C6;
  --accent-light-hover: #FFFFFF;
  --accent-light-rgb: 189, 193, 198;
  
  --text-primary: #FFFFFF;
  --text-secondary: #9AA0AC;
  --text-muted: #5D6470;
  
  --glass-bg: rgba(32, 33, 36, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-glow: rgba(234, 68, 53, 0.15);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

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

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Reusable UI Components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.text-gold {
  color: var(--accent-gold);
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background: #FFFFFF;
  color: #0A0C0F;
  box-shadow: 0 8px 30px rgba(189, 193, 198, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #E8EAED;
  box-shadow: 0 12px 35px rgba(189, 193, 198, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border-color: var(--glass-border);
  backdrop-filter: blur(10px);
}

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

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: var(--transition-fast);
}

.glass-card:hover {
  border-color: rgba(189, 193, 198, 0.15);
  box-shadow: 0 25px 60px rgba(189, 193, 198, 0.05);
}

/* Header / Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  background: rgba(10, 12, 15, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(10, 12, 15, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--accent-gold);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-gold);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  overflow: hidden;
}

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

.hero-content {
  z-index: 10;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  display: inline-block;
}

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

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

/* TV Hero Image Showcase */
.hero-image-wrapper {
  position: relative;
  width: 100%;
}

.hero-tv-container {
  width: 100%;
  position: relative;
  z-index: 5;
  transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
  transition: var(--transition-smooth);
}

.hero-tv-container:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Dynamic background glows */
.glow-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
}

.glow-hero-1 {
  width: 400px;
  height: 400px;
  background: rgba(189, 193, 198, 0.12);
  top: -10%;
  right: -10%;
}

.glow-hero-2 {
  width: 300px;
  height: 300px;
  background: rgba(60, 64, 67, 0.08);
  bottom: 10%;
  left: -10%;
}

/* Feature Showcase Section */
.section-title-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
  transition: var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.45);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(234, 68, 53, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--accent-gold);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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



.simulator-section {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.simulator-top {
  background-color: var(--bg-primary);
  padding: 6rem 0 4rem 0;
  position: relative;
  z-index: 2;
}

.simulator-bottom {
  background-color: #FFFFFF;
  padding: 0 0 6rem 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.tv-simulator-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  z-index: 5;
}

/* TV backlight glow - Ambilight effect */
.tv-glow-backlight {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
  border-radius: 40px;
  transition: var(--transition-smooth);
}

.tv-frame-outer {
  position: relative;
  background: #181B22;
  padding: 1rem;
  border-radius: 24px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.7), inset 0 2px 4px rgba(255, 255, 255, 0.05);
  border: 2px solid #242933;
  z-index: 2;
}

.tv-frame-outer.wall-mounted {
  margin: 0 auto;
}

.tv-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.8);
}

.simulator-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.simulator-screen-img.active {
  opacity: 1;
}


/* ==========================================================================
   Simulator — Live Welcome Screen
   ========================================================================== */

.sim-welcome-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex !important;
  flex-direction: row;
}

.sim-welcome-bg {
  position: absolute;
  inset: -10%; /* Extra spacing to avoid clipping edges during translation */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: simWelcomePan 24s ease-in-out infinite alternate;
}

@keyframes simWelcomePan {
  0% {
    transform: scale(1.02) translate(1%, 1%);
  }
  50% {
    transform: scale(1.08) translate(-1%, -1%);
  }
  100% {
    transform: scale(1.02) translate(1%, -1%);
  }
}

.sim-welcome-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(4, 8, 18, 0.70) 0%,
    rgba(8, 15, 30, 0.52) 55%,
    rgba(4, 8, 18, 0.70) 100%);
}



/* Glass welcome card */
.sim-welcome-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Left text panel */
.sim-welcome-left {
  flex: 1.5;
  padding: 12px 12px 12px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.sim-welcome-label {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-heading);
  font-weight: 600;
}

.sim-welcome-hotel {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
}

.sim-welcome-dear {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 2px 0 0;
}

.sim-welcome-body {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  margin: 0;
}

.sim-welcome-room {
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 5px 10px;
}

.sim-welcome-wifi {
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  letter-spacing: 0.2px;
}

/* Right photo panel */
.sim-welcome-right {
  flex: 0.7;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.sim-welcome-photo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Horizontal scrollable simulator tabs overlaying boundary */
.simulator-tabs-scroll-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
  margin-top: -44px;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 10;
}

.simulator-tabs-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.simulator-tabs {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  padding: 0 1rem;
  min-width: max-content;
}

@media (min-width: 1025px) {
  .simulator-tabs {
    justify-content: center;
    padding: 0;
  }
}

.simulator-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  width: 90px;
  text-align: center;
  transition: var(--transition-smooth);
}

.tab-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
  position: relative;
}

.simulator-tab-btn span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  color: #475569;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.simulator-tab-btn:hover .tab-icon-circle {
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  color: #0A0C0F;
}

.simulator-tab-btn.active .tab-icon-circle {
  border-color: transparent;
  color: #0A0C0F;
  background: #FFFFFF;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.simulator-tab-btn.active span {
  color: #0A0C0F;
  font-weight: 700;
}

/* Hover lift effect for interactive contact items */
.info-item.hover-lift {
  transition: var(--transition-smooth);
}

.info-item.hover-lift:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Circular SVG progress ring for autoplay tabs */
.progress-ring {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 56px;
  height: 56px;
  transform: rotate(-90deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.simulator-tab-btn.active .progress-ring {
  opacity: 1;
}

.progress-ring__circle {
  stroke: var(--accent-gold);
  stroke-dasharray: 163.4;
  stroke-dashoffset: 163.4;
  stroke-linecap: round;
  transition: stroke-dashoffset 4500ms linear;
}

/* Dynamic details section below tabs */
.simulator-info-box {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.simulator-info-box.fade-out {
  opacity: 0;
  transform: translateY(5px);
}

.simulator-info-box h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A0C0F;
  margin-bottom: 0.8rem;
}

.simulator-info-box p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
}

/* Tech Stack spotlight */
.tech-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.tech-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.tech-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.tech-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.tech-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.tech-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Contact Demo Request Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

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

.info-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(234, 68, 53, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.info-item-text p {
  margin: 0;
  font-size: 0.95rem;
}

.info-item-text strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

/* Glassmorphic Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}
.form-status.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34d399;
  display: block;
}
.form-status.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
  display: block;
}

/* Footer */
.footer {
  background-color: #05070A;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  list-style: none;
  margin-bottom: 2.5rem;
}

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

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

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

/* Fade In Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Pricing Section Styles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 950px;
  margin: 0 auto;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  border: none;
}

/* Header row: text left, icon right */
.pricing-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 0.5rem;
}

.pricing-header-text {
  flex: 1;
}

.pricing-icon {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  margin-top: 0.25rem;
  filter: drop-shadow(0 6px 12px rgba(15, 23, 42, 0.08));
  transition: var(--transition-smooth);
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.08) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-align: left;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.5;
  text-align: left;
}

.pricing-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Orange outlined CTA button for featured plan */
.btn-outline-orange {
  background: transparent;
  color: #EA4435;
  border: 2px solid #EA4435;
  font-weight: 700;
}

.btn-outline-orange:hover {
  background: rgba(234, 68, 53, 0.06);
  border-color: #D93025;
  color: #D93025;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(234, 68, 53, 0.2);
}

.pricing-features {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pricing-features li i {
  color: var(--accent-gold);
}

/* ==========================================================================
   Light Section Color Nuances & Overrides
   ========================================================================== */
.light-section {
  background-color: #FFFFFF;
  color: #1E293B;
  transition: var(--transition-smooth);
}

/* Alternating shade of light background */
#tech-stack.light-section,
#request-demo.light-section {
  background-color: #F8F9FA;
}

.light-section .section-title {
  color: #0A0C0F;
}

.light-section .section-subtitle,
.light-section .contact-info p,
.light-section .pricing-desc,
.light-section .pricing-period,
.light-section .pricing-features li {
  color: #475569;
}

/* Premium Darker Gray Gradient for high contrast on light backgrounds */
.light-section .text-gold {
  background: linear-gradient(135deg, #3C4043 0%, #202124 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Light theme glassmorphic card */
.light-section .glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.03);
  color: #1E293B;
}

.light-section .glass-card:hover {
  border-color: rgba(60, 64, 67, 0.25);
  box-shadow: 0 25px 50px rgba(60, 64, 67, 0.08);
}

.light-section h2,
.light-section h3,
.light-section h4 {
  color: #0A0C0F;
}

.light-section p {
  color: #475569;
}

/* Feature icon box in light theme */
.light-section .feature-icon-box {
  background: rgba(60, 64, 67, 0.08);
  border: none;
  color: var(--accent-gold);
}

/* Light theme feature card override */
.light-section .feature-card {
  border: none;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.06);
}

.light-section .feature-card:hover {
  transform: translateY(-8px);
  border: none;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.14);
}

/* Tech card light theme details */
.light-section .tech-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  color: #1E293B;
}

.light-section .tech-card:hover {
  transform: translateY(-5px);
  background: #FFFFFF;
  border-color: rgba(60, 64, 67, 0.2);
  box-shadow: 0 15px 35px rgba(60, 64, 67, 0.05);
}

.light-section .tech-icon {
  color: var(--accent-light);
}

/* Secondary Button in light theme */
.light-section .btn-secondary {
  background: rgba(10, 12, 15, 0.03);
  color: #0A0C0F;
  border-color: rgba(10, 12, 15, 0.08);
}

.light-section .btn-secondary:hover {
  background: rgba(10, 12, 15, 0.06);
  border-color: rgba(10, 12, 15, 0.15);
}

/* Pricing features check icons list */
.light-section .pricing-features li i {
  color: var(--accent-gold);
}

.light-section .pricing-divider {
  background: rgba(15, 23, 42, 0.06);
}

/* Pricing card hover, border and shadow overrides */
.light-section .pricing-card {
  border: none;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
  transition: var(--transition-smooth);
}

.light-section .pricing-card:hover {
  transform: translateY(-8px);
  border: none;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);
}

.light-section .pricing-card.featured {
  background: #FFFFFF;
  border: none;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.light-section .pricing-card.featured:hover {
  transform: translateY(-8px);
  border: none;
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.14);
}

.light-section .pricing-name {
  color: #0A0C0F;
  text-align: left;
}

.light-section .pricing-desc {
  text-align: left;
}

/* Orange outlined button in light theme */
.light-section .btn-outline-orange {
  background: transparent;
  color: #EA4435;
  border: 2px solid #EA4435;
}

.light-section .btn-outline-orange:hover {
  background: rgba(234, 68, 53, 0.06);
  border-color: #D93025;
  color: #D93025;
}

.light-section .pricing-currency {
  color: var(--accent-gold);
}

/* Contact information items */
.light-section .info-item-icon {
  background: rgba(var(--accent-gold-rgb), 0.1);
  border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
  color: var(--accent-gold);
}

.light-section .info-item-text p {
  color: #475569;
}

.light-section .info-item-text strong {
  color: #0A0C0F;
}

/* Form inputs styling overrides */
.light-section .form-group label {
  color: #475569;
}

.light-section .form-control {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: #0A0C0F;
}

.light-section .form-control::placeholder {
  color: #94A3B8;
}

.light-section .form-control:focus {
  background: #FFFFFF;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(var(--accent-gold-rgb), 0.12);
}

/* Status message overrides for readable text */
.light-section .form-status.success {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
  color: #065f46;
}

.light-section .form-status.error {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.2);
  color: #991b1b;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-tv-container {
    transform: none;
  }
  .hero-tv-container:hover {
    transform: none;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .tech-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .tech-container {
    grid-template-columns: 1fr;
  }
}

/* TV Remote Showcase next to Hero TV mockup */
.tv-remote-showcase {
  position: absolute;
  right: -145px;
  bottom: -20px;
  width: 280px;
  height: 280px;
  z-index: 10;
  filter: drop-shadow(-8px 12px 16px rgba(0, 0, 0, 0.65));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero-tv-container:hover .tv-remote-showcase {
  transform: translate(-5px, -3px) rotate(-4deg) scale(1.03);
}

@media (max-width: 1024px) {
  .tv-remote-showcase {
    right: -110px;
    bottom: -15px;
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .tv-remote-showcase {
    right: -80px;
    bottom: -10px;
    width: 140px;
    height: 140px;
  }
}
