/* Fixed Products Page with Proper Bridgeye Colors */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Use original Bridgeye color scheme */
:root {
  --bg: #000000;
  --primary: #004d94;
  --accent: #d2b99a;
  --muted: #c3c5c6;
  --white: #ffffff;
  --maxw: 1200px;
  --radius: 16px;
}

body, html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Header with Original Logo Styling - Fixed */
.header-fancy {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  transition: background .25s, backdrop-filter .25s, box-shadow .25s;
  background: transparent;
  height: 80px; /* Fixed height to prevent content shifting */
}

.header-blur {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .4);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.header-fancy.scrolled .header-blur {
  opacity: 1;
}

.header-content {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Original Brand/Logo Styling - Fixed Font Weight */
.brand {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-left: 30px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 1px;
  text-decoration: none;
}

.logo {
  height: 60px; /* Reduced from 88px to prevent overlap */
  margin-right: 0px;
}

.name {
  font-weight: 800; /* Reduced from 700 */
  letter-spacing: 1px;
  color: var(--white);
  font-size: 18px; /* Slightly reduced */
}

/* Navigation - Fixed Font Weight */
.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-link {
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 500; /* Reduced from 600 */
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px; /* Consistent sizing */
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 44%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 8px 30px rgba(0, 77, 148, 0.22);
}

/* Demo Button with Proper Colors */
.demo-cta-nav {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  padding: 10px 20px; /* Slightly smaller */
  border-radius: 50px;
  font-size: 13px; /* Reduced font size */
  font-weight: 500; /* Reduced from 600 */
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.demo-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 77, 148, 0.4);
}

.demo-cta-nav span {
  position: relative;
  z-index: 2;
}

/* Hamburger Menu - Clean Working Version */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10001;
}

.hamburger .line {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 10px;
  background: var(--white);
  transition: all 0.3s linear;
  transform-origin: 1px;
}

.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg);
}

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

.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg);
}

.hamburger:hover .line {
  background: var(--accent);
}



/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1001;
  transition: transform 0.1s ease;
}

.scroll-progress-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1000;
  filter: blur(2px);
  transition: transform 0.1s ease;
  opacity: 0.5;
}

/* Advanced Parallax Hero */
.hero-parallax-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  will-change: transform;
}

.hero-video {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.2) saturate(1.3);
}

.geometric-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 77, 148, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(210, 185, 154, 0.2) 0%, transparent 40%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.particle-field {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(210, 185, 154, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(0, 77, 148, 0.5), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(210, 185, 154, 0.4), transparent);
  background-repeat: repeat;
  background-size: 200px 150px;
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-200px, -150px); }
}

.floating-orbs {
  position: absolute;
  inset: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.orb-3 {
  width: 80px;
  height: 80px;
  bottom: 30%;
  left: 60%;
  animation-delay: 4s;
}

.orb-4 {
  width: 120px;
  height: 120px;
  top: 40%;
  right: 40%;
  animation-delay: 6s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-20px, -30px) scale(1.1);
    opacity: 0.6;
  }
}

/* Hero Content - Fixed positioning and font sizes */
.hero-content-fancy {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
  margin-top: 60px; /* Added margin to prevent navbar overlap */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 30px;
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 77, 148, 0.2); }
  50% { box-shadow: 0 0 30px rgba(210, 185, 154, 0.4); }
}

/* Hero Title - Reduced font size */
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem); /* Reduced from 3.5rem, 8vw, 7rem */
  font-weight: 800; /* Reduced from 900 */
  line-height: 1.1;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.title-word {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleReveal 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(50px);
}

.title-word:nth-child(1) { animation-delay: 0.2s; }
.title-word:nth-child(2) { animation-delay: 0.4s; }
.title-word:nth-child(3) { animation-delay: 0.6s; }
.title-word:nth-child(4) { animation-delay: 0.8s; }

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Subtitle - Reduced font size */
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem); /* Reduced from 1.2rem, 2.5vw, 1.6rem */
  font-weight: 300; /* Reduced from 400 */
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  position: relative;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.cta-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 77, 148, 0.4);
}

.cta-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-ripple {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
}

.cta-primary:active .cta-ripple {
  transform: scale(2);
}

/* Scroll Indicator - REMOVED "Discover" text and arrow */
.scroll-indicator-fancy {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-wheel {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(20px); opacity: 0.3; }
}

/* Removed .scroll-text and .scroll-arrow styles */

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Products Section */
.products-section-fancy {
  position: relative;
  min-height: 100vh;
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0a0f1a 100%);
}

.section-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(0, 77, 148, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(210, 185, 154, 0.1) 0%, transparent 50%);
}

.bg-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: meshMove 30s linear infinite;
}

@keyframes meshMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.bg-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1px 1px at 25% 25%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 75% 75%, rgba(210, 185, 154, 0.3), transparent);
  background-size: 100px 100px;
  animation: particleSwim 40s ease-in-out infinite;
}

@keyframes particleSwim {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-10px, -10px) rotate(180deg); }
}

.products-container-fancy {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.section-header-fancy {
  text-align: center;
  margin-bottom: 100px;
  opacity: 0;
  transform: translateY(50px);
  animation: sectionReveal 1s ease-out 0.5s forwards;
}

@keyframes sectionReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 25px;
}

.section-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.section-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

/* Product Cards with Fixed Colors */
.products-grid-fancy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 50px;
  margin-bottom: 100px;
}

.product-card-fancy {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 50px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  opacity: 0;
  transform: translateY(80px) scale(0.9);
  animation: cardReveal 1s ease-out forwards;
}

.products-grid-fancy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 20px;
  margin-bottom: 100px;
  box-sizing: border-box;
}

.product-card-fancy {
  padding: 20px;
  box-sizing: border-box;
  min-width: 0; /* prevents overflow */
}

.product-card-fancy:nth-child(1) { animation-delay: 0.8s; }
.product-card-fancy:nth-child(2) { animation-delay: 1s; }

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.card-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}


.product-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
}

.product-icon i {
  font-size: 36px;
  color: var(--white);
  z-index: 2;
  position: relative;
}

.icon-pulse {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 20px;
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.product-header-fancy h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.product-tagline-fancy {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 25px;
}

.product-description-fancy {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-weight: 300;
}

.product-features-fancy {
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  border-color: rgba(210, 185, 154, 0.2);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 18px;
  color: var(--white);
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 5px 0;
}

.feature-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}

.card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.product-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* CTA Section */
.cta-section-fancy {
  text-align: center;
  padding: 80px 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-section-fancy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0, 77, 148, 0.1), rgba(210, 185, 154, 0.05));
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-mega {
  position: relative;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  padding: 20px 50px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

.cta-mega:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 77, 148, 0.4);
}

.cta-spark {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta-mega:hover .cta-spark {
  transform: translateX(100%);
}

/* Modal with Contact Form Styling */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  width: min(600px, 90%);
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.modal-backdrop.open .modal {
  transform: scale(1);
}

.modal-head {
  padding: 32px 32px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.modal-head .meta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.modal-head .meta .muted {
  color: var(--muted);
  font-size: 1rem;
}

.close-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 24px;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: var(--white);
}

.modal-body {
  padding: 32px;
}

/* Contact Form Styling */
.contact-form {
  display: grid;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.field input,
.field textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 77, 148, 0.4);
}

/* ADD THIS - Missing Footer Styles */
.footer {
  background: var(--bg);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-top: 60px;
}

.footer .container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  color: var(--muted);
  font-size: 14px;
}

/* IMPROVED Mobile Responsive - Better Fit */
@media screen and (max-width: 768px) {
  /* Show hamburger on mobile */
  .hamburger {
    display: flex !important;
  }
  
  /* Hide regular nav on mobile, show as overlay when open */
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 50px 20px;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
  }
  
  .nav.open {
    transform: translateX(0);
  }
  
  .nav-link {
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    color: var(--accent);
    transform: scale(1.05);
  }
  
  .nav-link.active {
    color: var(--accent);
  }
  
  .demo-cta-nav {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 18px;
  }
  
  /* Header adjustments */
  .brand {
    margin-left: 0;
  }
  
  .logo {
    height: 40px; /* Even smaller for mobile */
  }
  
  .name {
    font-size: 14px;
  }
  
  /* HERO SECTION - Mobile fixes */
  .hero-content-fancy {
    padding: 0 15px; /* Less padding */
    margin-top: 100px; /* More space from header */
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem); /* Smaller on mobile */
  }
  
  .hero-subtitle {
    font-size: clamp(0.9rem, 4vw, 1.1rem); /* Smaller on mobile */
    padding: 0 10px;
  }
  
  .hero-ctas {
    gap: 15px;
    flex-direction: column; /* Stack buttons vertically */
    align-items: center;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 200px; /* Fixed width for mobile */
    text-align: center;
    padding: 12px 24px;
    font-size: 14px;
  }
  
  /* PRODUCTS SECTION - Mobile fixes */
  .products-section-fancy {
    padding: 80px 0 60px 0; /* Less padding */
  }
  
  .products-container-fancy {
    max-width: 100%; /* Full width */
    padding: 0 15px; /* Minimal side padding */
  }
  
  .section-header-fancy {
    margin-bottom: 60px; /* Less margin */
    padding: 0 10px;
  }
  
  .section-title {
    font-size: clamp(2rem, 8vw, 3rem); /* Smaller on mobile */
  }
  
  .section-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem); /* Smaller on mobile */
  }
  
  /* PRODUCT CARDS - Mobile fixes */
  .products-grid-fancy {
    grid-template-columns: 1fr; /* Single column */
    gap: 20px; /* Less gap */
    margin-bottom: 60px; /* Less margin */
  }

  .product-card-fancy {
    padding: 25px 20px; /* Less padding */
    margin: 0; /* No margin */
    border-radius: 20px; /* Smaller radius */
  }
  
  .product-header-fancy h3 {
    font-size: 1.8rem; /* Smaller title */
  }
  
  .product-tagline-fancy {
    font-size: 1.1rem; /* Smaller tagline */
  }
  
  .product-description-fancy {
    font-size: 1rem; /* Smaller description */
    line-height: 1.5;
  }
  
  .feature-grid {
    grid-template-columns: 1fr; /* Single column for features */
    gap: 15px;
  }
  
  .feature-item {
    padding: 15px; /* Less padding */
  }
  
  /* CTA SECTION - Mobile fixes */
  .cta-section-fancy {
    padding: 40px 20px; /* Less padding */
    margin: 0 15px; /* Side margins */
  }
  
  .cta-content h3 {
    font-size: 1.8rem; /* Smaller title */
  }
  
  .cta-content p {
    font-size: 1rem; /* Smaller text */
  }
  
  .cta-mega {
    padding: 15px 30px; /* Smaller button */
    font-size: 1rem;
  }
  
  /* FOOTER - Mobile fixes */
  .footer {
    padding: 30px 0; /* Less padding */
  }
  
  .footer .container {
    padding: 0 15px;
  }
}

/* EXTRA SMALL SCREENS (under 480px) */
@media screen and (max-width: 480px) {
  .hero-content-fancy {
    padding: 0 10px;
  }
  
  .products-container-fancy {
    padding: 0 10px;
  }
  
  .product-card-fancy {
    padding: 20px 15px;
  }
  
  .cta-section-fancy {
    padding: 30px 15px;
    margin: 0 10px;
  }
}
