* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000;
}

.hero {
  height: 100vh;
  background: url("./images/passport.jpg") no-repeat right center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px;
}

/* Overlay احترافي */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(5, 22, 45, 0.95) 30%,
    rgba(5, 22, 45, 0.85) 50%,
    rgba(5, 22, 45, 0.4) 100%
  );
}

.content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  text-align: center;
  color: #fff;
}

/* Logo */
.logo {
  width: 400px;
  margin-bottom: -100px;
}

/* Title */
h1 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

/* Subtitle */
.subtitle {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Email Box */
.email-box {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.email-box input {
  padding: 16px 22px;
  width: 380px;
  max-width: 100%;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.email-box input::placeholder {
  color: rgba(255,255,255,0.6);
}

.email-box input:focus {
  border-color: #d62828;
}

.email-box button {
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #d62828, #b71c1c);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(214, 40, 40, 0.4);
}

.email-box button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(214, 40, 40, 0.6);
}

/* Contact Info */
.contact-info {
  display: inline-block;
  padding: 14px 25px;
  border-radius: 40px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  font-size: 14px;
  margin-bottom: 30px;
  border: 1px solid rgba(255,255,255,0.15);
}

.contact-info span {
  margin: 0 12px;
}

/* Social Icons */
.social {
  margin-top: 10px;
}

.social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  margin: 0 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.2);
}

.social a:hover {
  background: #d62828;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  .subtitle {
    font-size: 15px;
  }
}
.content > * {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 1s ease forwards;
}

.content > *:nth-child(1) { animation-delay: .2s; }
.content > *:nth-child(2) { animation-delay: .4s; }
.content > *:nth-child(3) { animation-delay: .6s; }
.content > *:nth-child(4) { animation-delay: .8s; }
.content > *:nth-child(5) { animation-delay: 1s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
