/* ============================================================
   FALCON SURVEILLANCE - HERO SECTION STYLES
   Premium fullscreen hero with animations and glassmorphism
   ============================================================ */

/* ========== HERO SECTION ========== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(5rem, 7vw, 7rem) 0;
  background: linear-gradient(135deg, var(--color-bg-primary), var(--color-bg-secondary));
}
/* Mobile Header Fix */
@media (max-width: 768px) {

.hero{
    padding-top: 120px;   /* Header ke niche space */
}

.hero-content{
    margin-top: 20px;
}

.hero-title{
    font-size: 2rem;
    line-height: 1.25;
}
}

@media (max-width: 768px){

    .hero{
        padding-top:140px !important;
        min-height:auto;
    }

}

@media (max-width:480px){

    .hero{
        padding-top:155px !important;
    }

}

.hero-shell {
  position: relative;
  z-index: 10;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(0,86,205,0.06)" stroke-width="1"/></pattern></defs><rect width="1920" height="1080" fill="url(%23grid)" /></svg>');
  opacity: 0.4;
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 3;
}

/* ========== HERO CONTENT ========== */

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  width: 100%;
  padding: clamp(1rem, 2vw, 1.4rem) var(--spacing-4);
  text-align: left;
  animation: none;
}

.hero-card {
  padding: clamp(1.3rem, 3vw, 2rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 1.6rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2);
  padding: var(--spacing-2) var(--spacing-4);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  color: white;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--spacing-6);
  animation: none;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  animation: none;
}

.hero-headline {
  font-size: clamp(2.3rem, 5.3vw, 4.5rem);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  color: white;
  margin-bottom: var(--spacing-6);
  letter-spacing: var(--ls-tight);
  animation: none;
}

.hero-headline .highlight {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-8);
  line-height: var(--lh-relaxed);
  max-width: 700px;
  margin-left: 0;
  margin-right: auto;
  animation: none;
}

/* ========== CTA BUTTONS ========== */

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-4);
  justify-content: flex-start;
  align-items: center;
  margin-bottom: var(--spacing-8);
  animation: none;
}

.hero-cta .btn {
  font-size: var(--fs-base);
  padding: var(--spacing-4) var(--spacing-8);
  font-weight: var(--fw-semibold);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.hero-cta .btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: 0 10px 30px rgba(0, 86, 205, 0.3);
}

.hero-cta .btn-primary:hover {
  box-shadow: 0 15px 40px rgba(0, 86, 205, 0.4);
  transform: translateY(-3px);
}

.hero-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  transition: all var(--transition-base);
}

.hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* ========== TRUST BADGES ========== */

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-4);
  justify-content: flex-start;
  animation: none;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-4) var(--spacing-6);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  color: white;
  text-align: center;
  transition: all var(--transition-base);
  min-width: min(180px, 100%);
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.trust-badge-icon {
  font-size: var(--fs-2xl);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
}

.trust-badge-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
}

/* ========== FLOATING ELEMENTS ========== */

.floating-icon {
  position: absolute;
  opacity: 0.6;
  animation: none;
  z-index: 5;
}

.floating-icon:nth-child(1) {
  top: 10%;
  right: 5%;
  font-size: 60px;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  bottom: 20%;
  left: 5%;
  font-size: 50px;
  animation-delay: 1s;
}

.floating-icon:nth-child(3) {
  top: 50%;
  right: 3%;
  font-size: 40px;
  animation-delay: 2s;
}

.floating-icon:nth-child(4) {
  bottom: 10%;
  right: 10%;
  font-size: 55px;
  animation-delay: 1.5s;
}

/* ========== PARTICLES ANIMATION ========== */

.particle {
  position: absolute;
  opacity: 0.4;
  border-radius: 50%;
  pointer-events: none;
}

.particle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 86, 205, 0.5), transparent);
  border-radius: 50%;
  animation: none;
}

/* ========== HERO GRID LAYOUT (LEFT/RIGHT) ========== */

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-grid-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== HERO VISUAL COMPOSITION ========== */

.hero-visual {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
  animation: none;
}

.hero-image-primary {
  width: 80%;
  height: 80%;
  z-index: 5;
}

.hero-image-secondary {
  position: absolute;
  width: 50%;
  height: 50%;
  z-index: 3;
}

.hero-image-secondary.left {
  left: 5%;
  bottom: 10%;
  animation: none;
}

.hero-image-secondary.right {
  right: 5%;
  top: 15%;
  animation: none;
}

/* ========== HERO BACKGROUND GLOW ========== */

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  animation: none;
}

.hero-particles span:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 30%; right: 16%; animation-delay: 1s; }
.hero-particles span:nth-child(3) { bottom: 24%; left: 20%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { bottom: 16%; right: 28%; animation-delay: 3s; }
.hero-particles span:nth-child(5) { top: 54%; left: 48%; animation-delay: 4s; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.hero-glow.primary {
  width: 400px;
  height: 400px;
  background: rgba(0, 86, 205, 0.5);
  top: 50%;
  right: 10%;
  transform: translate(0, -50%);
  animation: none;
}

.hero-glow.secondary {
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 53, 0.3);
  bottom: 10%;
  right: 30%;
  animation: none;
}

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 1440px) {
  .hero-headline {
    font-size: var(--fs-6xl);
  }

  .hero-description {
    font-size: var(--fs-lg);
  }

  .hero-grid {
    gap: var(--spacing-10);
  }

  .hero-visual {
    height: 450px;
  }

  .hero-glow.primary {
    width: 350px;
    height: 350px;
  }

  .hero-glow.secondary {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: 90vh;
    padding: var(--spacing-12) 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
  }

  .hero-headline {
    font-size: var(--fs-5xl);
    margin-bottom: var(--spacing-4);
  }

  .hero-description {
    font-size: var(--fs-base);
    margin-bottom: var(--spacing-6);
  }

  .hero-cta {
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-8);
  }

  .hero-cta .btn {
    padding: var(--spacing-3) var(--spacing-6);
    font-size: var(--fs-sm);
  }

  .trust-badge {
    padding: var(--spacing-3) var(--spacing-4);
    gap: var(--spacing-1);
  }

  .trust-badge-icon {
    font-size: var(--fs-xl);
    width: 40px;
    height: 40px;
  }

  .trust-badge-title {
    font-size: var(--fs-xs);
  }

  .floating-icon:nth-child(1) {
    font-size: 40px;
  }

  .floating-icon:nth-child(2) {
    font-size: 35px;
  }

  .floating-icon:nth-child(3) {
    font-size: 30px;
  }

  .floating-icon:nth-child(4) {
    font-size: 38px;
  }

  .hero-visual {
    height: 380px;
  }

  .hero-glow.primary {
    width: 300px;
    height: 300px;
    right: 5%;
  }

  .hero-glow.secondary {
    width: 200px;
    height: 200px;
  }

  .hero-grid-left {
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 4.5rem 0 4rem;
  }

  .hero-badge {
    margin-bottom: var(--spacing-4);
    font-size: var(--fs-xs);
  }

  .hero-headline {
    font-size: var(--fs-4xl);
    margin-bottom: var(--spacing-3);
  }

  .hero-description {
    font-size: var(--fs-base);
    margin-bottom: var(--spacing-4);
  }

  .hero-cta {
    flex-direction: column;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-6);
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-badges {
    gap: var(--spacing-3);
    max-width: 100%;
  }

  .trust-badge {
    flex: 1;
    min-width: 120px;
    padding: var(--spacing-2) var(--spacing-3);
  }

  .trust-badge-icon {
    font-size: var(--fs-lg);
    width: 36px;
    height: 36px;
  }

  .floating-icon {
    opacity: 0.3;
  }

  .floating-icon:nth-child(1) {
    font-size: 35px;
    right: 2%;
  }

  .floating-icon:nth-child(2) {
    font-size: 30px;
    left: 2%;
  }

  .floating-icon:nth-child(3) {
    display: none;
  }

  .floating-icon:nth-child(4) {
    font-size: 32px;
    bottom: 5%;
  }
}

@media (max-width: 425px) {
  .hero {
    min-height: 100vh;
    padding: var(--spacing-4) 0;
  }

  .hero-content {
    padding: 0 var(--spacing-3);
  }

  .hero-badge {
    margin-bottom: var(--spacing-3);
    font-size: var(--fs-xs);
    padding: var(--spacing-1) var(--spacing-3);
  }

  .hero-headline {
    font-size: var(--fs-3xl);
    margin-bottom: var(--spacing-2);
    line-height: 1.3;
  }

  .hero-description {
    font-size: var(--fs-sm);
    margin-bottom: var(--spacing-3);
  }

  .hero-cta {
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-4);
  }

  .hero-cta .btn {
    width: 100%;
    padding: var(--spacing-3) var(--spacing-4);
    font-size: var(--fs-xs);
  }

  .hero-badges {
    gap: var(--spacing-2);
    flex-direction: column;
  }

  .trust-badge {
    width: 100%;
    padding: var(--spacing-2) var(--spacing-3);
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .trust-badge-icon {
    font-size: var(--fs-base);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .trust-badge-title {
    font-size: var(--fs-xs);
  }

  .floating-icon:nth-child(1) {
    font-size: 25px;
    top: 15%;
    right: 3%;
  }

  .floating-icon:nth-child(2) {
    font-size: 20px;
    bottom: 15%;
    left: 3%;
  }

  .floating-icon:nth-child(4) {
    font-size: 22px;
    bottom: 8%;
    right: 3%;
  }
}

/* ========== ACCESSIBILITY ========== */

.hero-cta .btn:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .hero-badge,
  .hero-headline,
  .hero-description,
  .hero-cta,
  .hero-badges,
  .floating-icon,
  .particle::before {
    animation: none;
  }
}
