* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #2c2c2c;
  background-color: #fafafa;
  line-height: 1.6;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
}

/* .logo-img { max-width: 165px; height: auto; display: block; transition: opacity 0.3s ease; } */
/* .logo-img:hover { opacity: 0.8; } */
.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links a {
  text-decoration: none;
  color: #2c2c2c;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #d4af37;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: #2c2c2c;
  transition: all 0.3s ease;
}

/* Verification Section */
.verification-section {
  margin-top: 120px;
  padding: 6rem 3rem 8rem;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.verification-container {
  max-width: 700px;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 5rem 4rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.verification-container h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.verification-container .subtitle {
  font-size: 1rem;
  color: #666;
  letter-spacing: 1px;
  margin-bottom: 4rem;
  font-weight: 300;
}

.verification-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.form-group input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  border: 2px solid #e8e8e8;
  background-color: #fafafa;
  color: #2c2c2c;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #d4af37;
  background-color: #ffffff;
}

.form-group input::placeholder {
  color: #999;
  letter-spacing: 0.5px;
}

.submit-btn {
  display: inline-block;
  padding: 1.2rem 4rem;
  background-color: #d4af37;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid #d4af37;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  background-color: transparent;
  color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Footer */
footer {
  background-color: #0f0f0f;
  color: #999;
  padding: 4rem 3rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
  font-size: 0.9rem;
  color: #999;
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #d4af37;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.footer-bottom p a {
  color: #999;
  font-style: normal;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom p a:hover {
  color: #d4af37;
}

/* Responsive */
@media (max-width: 968px) {
  .nav-container {
    padding: 1rem 2rem;
  }

  /* .logo-img { max-width: 140px; } */
  .nav-links {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem;
    gap: 2rem;
    border-top: 1px solid #e8e8e8;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .verification-container {
    padding: 4rem 2.5rem;
  }

  .verification-container h1 {
    font-size: 2.8rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  /* .logo-img { max-width: 120px; } */
  .verification-section {
    margin-top: 90px;
    padding: 3rem 1.5rem 5rem;
  }

  .verification-container {
    padding: 3rem 2rem;
  }

  .verification-container h1 {
    font-size: 2.2rem;
  }

  .verification-container .subtitle {
    font-size: 0.9rem;
    margin-bottom: 3rem;
  }

  .form-group input {
    padding: 1rem 1.2rem;
  }

  .submit-btn {
    padding: 1rem 3rem;
    font-size: 0.85rem;
  }
}

html {
  scroll-behavior: smooth;
}
