/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #e0f7fa;
    scroll-behavior: smooth;
  }
  
  .container {
    width: 85%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Navbar (same as main site) */
  .navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    backdrop-filter: blur(10px);
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  
  .nav-logo {
    width: 80px;
    margin-bottom: 10px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #b2ebf2;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .nav-links li a.active,
  .nav-links li a:hover {
    color: #00e5ff;
  }
  
  /* Order Form */
  .order-section {
    padding: 80px 0;
  }
  
  h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #00e5ff;
  }
  
  form {
    background: #121212;
    padding: 30px;
    border-radius: 10px;
  }
  
  fieldset {
    border: 1px solid #00e5ff33;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
  }
  
  legend {
    font-size: 1.2rem;
    color: #00e5ff;
    padding: 0 10px;
  }
  
  input[type="text"],
  input[type="email"],
  textarea,
  input[type="file"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background: #0d0d0d;
    color: #e0f7fa;
    border: 1px solid #00e5ff33;
    transition: border 0.3s ease;
  }
  
  input[type="text"]:focus,
  input[type="email"]:focus,
  textarea:focus,
  input[type="file"]:focus {
    border: 1px solid #00e5ff;
    outline: none;
  }
  
  label {
    display: block;
    margin: 10px 0;
    font-weight: 500;
  }
  
  .row {
    display: flex;
    gap: 10px;
  }
  
  .row input {
    flex: 1;
  }
  
  .btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #00e5ff;
    border: none;
    border-radius: 50px;
    color: #0a0a0a;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #00bcd4;
    color: #fff;
  }
  
  .terms-list {
    margin-top: 15px;
    list-style: none;
    padding-left: 0;
  }
  
  .terms-list li {
    margin: 10px 0;
    position: relative;
    padding-left: 25px;
    text-align: left;
  }
  
  .terms-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #00e5ff;
    font-size: 1.5rem;
    line-height: 1;
  }
  
  .note {
    font-size: 0.9rem;
    margin-top: 15px;
    color: #b2ebf2;
  }
  
  .confirmation-message {
    margin-top: 20px;
    background: #0d0d0d;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #00e5ff;
    color: #00e5ff;
    font-size: 1rem;
    text-align: center;
    display: none;
  }
  
  .confirmation-message.show {
    display: block;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    background: #0d0d0d;
    font-size: 0.9rem;
    color: #b2ebf2;
  }
  
  footer a:hover i {
    color: #00bcd4;
    transition: color 0.3s ease;
  }
  
  /* Fade-in */
  .fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
    will-change: transform, opacity;
  }
  
  @keyframes fadeInUp {
    to { opacity: 1; transform: none; }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .row {
      flex-direction: column;
    }
  }
  footer {
    text-align: center;
    padding: 20px;
    background: #0d0d0d;
    font-size: 0.9rem;
    color: #b2ebf2;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #b2ebf2; /* softer blue, matches navbar at rest */
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #00e5ff; /* bright blue hover effect */
  }
  html {
    scroll-behavior: smooth;
  }
  .nav-links li a.cta {
    padding: 8px 15px;
    background: #00e5ff;
    color: #0a0a0a !important;
    border-radius: 5px;
    font-weight: 700;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .nav-links li a.cta:hover {
    background: #00bcd4;
    color: #fff !important;
  }

  
  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 200px;
      background: rgba(0, 0, 0, 0.95);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 25px;
      transition: right 0.3s ease;
    }
    .nav-links.active {
      right: 0;
    }
    .burger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      margin-top: 10px;
      cursor: pointer;
    }
    .burger div {
      width: 25px;
      height: 3px;
      background: #00e5ff;
      border-radius: 3px;
      transition: all 0.3s ease;
    }
  }
  