/* Mobile Hero Styles */
.mobile-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* Account for navbar */
}

.hero-background {
  z-index: 0;
}

.gradient-overlay {
  background: linear-gradient(135deg, rgba(0, 20, 109, 0.95) 0%, rgba(0, 10, 54, 0.98) 100%);
  z-index: 1;
}

.particle-background {
  background: url('/images/particles.gif') repeat;
  opacity: 0.15;
  z-index: 0;
  animation: backgroundFloat 20s linear infinite;
}

/* Hero Content Styles */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero-badge .badge {
  background: linear-gradient(135deg, var(--gold) 0%, #F0D52D 100%);
  border: none;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.typing-effect::after {
  content: '|';
  display: inline-block;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.typing-container {
  height: 4rem;
  overflow: hidden;
}

.typed-text {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 90%;
}

/* Statistics Cards */
.stats-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  color: white;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--gold);
  margin: 0.5rem 0;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Device Showcase */
.device-showcase {
  position: relative;
  height: 100%;
  min-height: 600px;
}

.device {
  position: absolute;
  background: white;
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.device-frame {
  border: 12px solid #333;
  border-radius: 2rem;
  overflow: hidden;
}

.device-screen {
  background: #1a1a1a;
  aspect-ratio: 9/19.5;
  width: 100%;
  position: relative;
}

.device.main-device {
  width: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.device.secondary-device-1 {
  width: 240px;
  top: 40%;
  left: 20%;
  transform: translate(-50%, -50%) rotate(-15deg);
  z-index: 2;
}

.device.secondary-device-2 {
  width: 240px;
  top: 60%;
  right: 0;
  transform: translate(20%, -50%) rotate(15deg);
  z-index: 1;
}

/* App Interface */
.app-interface {
  height: 100%;
  background: linear-gradient(180deg, var(--navy) 0%, #1a1a1a 100%);
  padding: 1rem;
}

.app-header {
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.app-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-block {
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
}

/* Floating Tech Icons */
.floating-tech-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.tech-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  animation: float 6s infinite ease-in-out;
}

.tech-icon:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.tech-icon:nth-child(2) { top: 60%; right: 10%; animation-delay: 2s; }
.tech-icon:nth-child(3) { top: 40%; left: 50%; animation-delay: 4s; }

/* Animations */
@keyframes backgroundFloat {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-10px, -10px); }
  100% { transform: translate(0, 0); }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .device-showcase {
    margin-top: 3rem;
    height: 500px;
  }

  .device.main-device {
    width: 220px;
  }

  .device.secondary-device-1,
  .device.secondary-device-2 {
    width: 180px;
  }
}

@media (max-width: 767.98px) {
  .hero-content {
    text-align: center;
    padding: 2rem 0;
  }

  .hero-description {
    margin: 0 auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .device-showcase {
    height: 400px;
    margin-top: 2rem;
  }
}
.mobile-hero {
  min-height: 100vh;
  position: relative;
  background: 
    linear-gradient(135deg, rgba(0, 12, 45, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%),
    url('/images/particles.gif') repeat;
  background-blend-mode: overlay;
  animation: backgroundMove 20s linear infinite;
}

.hero-content {
  height: calc(100vh - 80px); /* Subtract navbar height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4rem 0;
  margin-top: 80px; /* Account for fixed navbar */
  gap: 2rem;
}

.hero-content > * {
  margin: 0;
}

.hero-content .badge {
  display: inline-block;
  margin-bottom: 1.5rem !important;
}

.hero-content h1 {
  margin-bottom: 1.5rem !important;
}

.hero-content .lead {
  margin-bottom: 2rem !important;
  max-width: 90%;
}

.platforms-bar {
  background-color: rgba(0, 20, 109, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  margin: 2rem 0 !important;
}

.platform-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.platform-item i {
  margin-bottom: 1rem;
}

.platform-name {
  margin-bottom: 0.5rem;
}

.mobile-showcase {
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

@media (max-width: 991.98px) {
  .hero-content {
    text-align: center;
    align-items: center;
    padding: 3rem 0;
    height: auto;
    gap: 3rem;
  }
}

.hero-3d-background {
  z-index: 0;
  background: radial-gradient(circle at center, rgba(var(--gold-rgb), 0.1) 0%, transparent 70%);
  mix-blend-mode: overlay;
}

@keyframes backgroundMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}

.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(40px);
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--gold);
  top: 15%;
  right: 5%;
  z-index: 0;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: #00146d;
  bottom: 20%;
  right: -150px;
  z-index: 0;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: #50e3c2;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  z-index: 0;
}

.highlighted-text {
  display: inline-block;
  padding: 0.2em 0;
  position: relative;
  color: var(--gold);
}

.highlighted-text::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.2em;
  background: var(--gold);
  bottom: 0;
  left: 0;
  border-radius: 4px;
}

.platforms-bar {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-item {
  transition: transform 0.3s ease;
}

.platform-item:hover {
  transform: translateY(-5px);
}

.platform-name {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0.5rem 0;
}

.platform-stat {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Mobile Showcase */
.mobile-showcase {
  position: relative;
  height: 600px;
}

.devices-wrapper {
  position: relative;
  height: 100%;
  perspective: 1000px;
}

.device {
  position: absolute;
  width: 250px;
  height: 500px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.device-1 {
  transform: translateZ(100px) translateX(-50%);
  z-index: 3;
  left: 50%;
}

.device-2 {
  transform: translateZ(50px) translateX(20%) rotate(5deg);
  z-index: 2;
  left: 50%;
}

.device-3 {
  transform: translateZ(0) translateX(-120%) rotate(-5deg);
  z-index: 1;
  left: 50%;
}

.device-screen {
  position: relative;
  width: 100%;
  height: calc(100% - 40px);
  background: #f5f5f5;
  overflow: hidden;
}

.device-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 30px;
  background: #000;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.app-mockup {
  padding: 20px;
}

.app-header {
  height: 60px;
  background: var(--navy);
  border-radius: 15px;
  margin-bottom: 15px;
}

.app-body .content-block {
  height: 40px;
  background: #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
}

.floating-elements .element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.element-1 {
  top: 20%;
  right: -30px;
}

.element-2 {
  bottom: 30%;
  left: -30px;
}

.element-3 {
  top: 50%;
  right: 10%;
}

/* Footer Styles */
.footer {
  position: relative;
  overflow: hidden;
}

.footer-shapes .footer-shape {
  position: absolute;
  opacity: 0.1;
  filter: blur(50px);
}

.footer-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.footer-shape-2 {
  width: 300px;
  height: 300px;
  background: #4a90e2;
  bottom: -150px;
  left: -150px;
  border-radius: 50%;
}

.footer-shape-3 {
  width: 200px;
  height: 200px;
  background: #50e3c2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-link {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-link:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-link.active {
  color: var(--gold);
}

.footer-contact-link {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-contact-link:hover {
  color: var(--gold);
}

.qr-codes img {
  border: 2px solid var(--gold);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.qr-codes img:hover {
  transform: scale(1.1);
}

.footer-badges .badge {
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .device {
    transform: none !important;
    position: relative;
    left: auto !important;
    margin: 20px auto;
  }
  
  .device-2, .device-3 {
    display: none;
  }
  
  .floating-elements {
    display: none;
  }
}