/* ============================================
     * STANDARD HEADER & NAV STYLES
     * ============================================ */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(10, 10, 10, 0.98);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
      padding: 15px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
    }
    
    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    
    .logo img {
      height: 45px;
      width: auto;
      transition: transform 0.3s ease;
      border: none !important;
      background: transparent !important;
      display: block;
    }
    
    .logo:hover img {
      transform: scale(1.05);
    }
    
    nav ul {
      display: flex;
      gap: 30px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    
    nav li {
      position: relative;
    }
    
    nav a {
      color: var(--color-text-primary);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
      display: block;
      padding: 8px 0;
    }
    
    nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--color-gold);
      transition: width 0.3s ease;
    }
    
    nav a:hover {
      color: var(--color-gold);
    }
    
    nav a:hover::after {
      width: 100%;
    }
    
    nav a[aria-current="page"] {
      color: var(--color-gold);
    }
    
    nav a[aria-current="page"]::after {
      width: 100%;
    }
    
    /* Dropdown */
    .nav-dropdown {
      position: relative;
    }
    
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      background: var(--color-bg-white);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 8px;
      min-width: 180px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      padding: 8px 0;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }
    
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    
    .dropdown-menu a {
      padding: 10px 20px;
      display: block;
    }
    
    .dropdown-menu a::after {
      display: none;
    }
    
    .dropdown-menu a:hover {
      background: rgba(212, 175, 55, 0.1);
    }

    /* ============================================
     * PAGE CONTENT
     * ============================================ */
    .page-container {
      padding: 120px 40px 80px;
      min-height: 100vh;
      background: var(--color-bg-primary);
    }
    
    .page-header {
      max-width: 700px;
      margin: 0 auto 40px;
      text-align: center;
    }
    
    .page-header h1 {
      font-size: 2.2rem;
      color: var(--color-text-primary);
      margin-bottom: 12px;
    }
    
    .page-header p {
      color: var(--color-text-muted);
      font-size: 1.1rem;
    }

    /* Form Card */
    .form-card {
      max-width: 700px;
      margin: 0 auto;
      background: var(--color-bg-white);
      border-radius: 12px;
      padding: 40px;
      border: 1px solid var(--color-border);
    }
    
    .form-section {
      margin-bottom: 32px;
    }
    
    .form-section:last-child {
      margin-bottom: 0;
    }
    
    .form-section h2 {
      font-size: 1.2rem;
      color: var(--color-gold);
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--color-border);
    }
    
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group.full-width {
      grid-column: span 2;
    }
    
    .form-group label {
      display: block;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--color-text-primary);
    }
    
    .form-group label .required {
      color: var(--color-gold);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      font-size: 1rem;
      border: 1px solid var(--color-border);
      border-radius: 8px;
      background: var(--color-bg-primary);
      color: var(--color-text-primary);
      transition: border-color 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--color-gold);
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: var(--color-text-muted);
    }
    
    .form-group select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
      cursor: pointer;
    }
    
    .form-group .hint {
      font-size: 0.85rem;
      color: var(--color-text-muted);
      margin-top: 6px;
    }
    
    .form-group .error {
      font-size: 0.85rem;
      color: var(--color-error);
      margin-top: 6px;
      display: none;
    }
    
    .form-group.has-error input,
    .form-group.has-error select,
    .form-group.has-error textarea {
      border-color: var(--color-error);
    }
    
    .form-group.has-error .error {
      display: block;
    }

    /* Apply Method Toggle */
    .apply-method {
      display: flex;
      gap: 16px;
      margin-bottom: 20px;
    }
    
    .apply-option {
      flex: 1;
      padding: 16px;
      background: var(--color-bg-primary);
      border: 1px solid var(--color-border);
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
    }
    
    .apply-option:hover {
      border-color: rgba(212, 175, 55, 0.3);
    }
    
    .apply-option.active {
      border-color: var(--color-gold);
      background: rgba(212, 175, 55, 0.1);
    }
    
    .apply-option input {
      display: none;
    }
    
    .apply-option .icon {
      font-size: 1.5rem;
      margin-bottom: 8px;
    }
    
    .apply-option .label {
      color: var(--color-text-primary);
      font-weight: 600;
    }
    
    .apply-option .desc {
      color: var(--color-text-muted);
      font-size: 0.85rem;
      margin-top: 4px;
    }
    
    .apply-fields {
      display: none;
    }
    
    .apply-fields.active {
      display: block;
    }

    /* Checkbox */
    .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px;
      background: var(--color-bg-primary);
      border-radius: 8px;
      border: 1px solid var(--color-border);
    }
    
    .checkbox-group input[type="checkbox"] {
      width: 20px;
      height: 20px;
      margin-top: 2px;
      accent-color: var(--color-gold);
      cursor: pointer;
    }
    
    .checkbox-group label {
      color: var(--color-text-secondary);
      font-size: 0.95rem;
      cursor: pointer;
      line-height: 1.5;
    }
    
    .checkbox-group a {
      color: var(--color-gold);
    }

    /* Submit Button */
    .submit-btn {
      width: 100%;
      padding: 18px;
      background: var(--color-gold);
      color: var(--color-bg-primary);
      font-size: 1.1rem;
      font-weight: 700;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 24px;
    }
    
    .submit-btn:hover {
      background: var(--color-gold-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    }
    
    .submit-btn:disabled {
      background: var(--color-text-muted);
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    /* Success Message */
    .success-message {
      display: none;
      text-align: center;
      padding: 60px 40px;
    }
    
    .success-message.active {
      display: block;
    }
    
    .success-message .icon {
      font-size: 4rem;
      margin-bottom: 24px;
    }
    
    .success-message h2 {
      color: var(--color-gold);
      font-size: 1.8rem;
      margin-bottom: 16px;
    }
    
    .success-message p {
      color: var(--color-text-muted);
      font-size: 1.1rem;
      margin-bottom: 32px;
    }
    
    .success-message a {
      color: var(--color-gold);
      text-decoration: none;
    }
    
    .success-message a:hover {
      text-decoration: underline;
    }

    /* Alert */
    .form-alert {
      padding: 16px;
      border-radius: 8px;
      margin-bottom: 24px;
      display: none;
    }
    
    .form-alert.active {
      display: block;
    }
    
    .form-alert.error {
      background: rgba(220, 53, 69, 0.1);
      border: 1px solid rgba(220, 53, 69, 0.3);
      color: var(--color-error);
    }

    /* Footer */
    .footer {
      background: var(--color-bg-primary);
      color: var(--color-text-muted);
      padding: 60px 40px 30px;
      border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
    }
    
    .footer h4 {
      color: var(--color-text-primary);
      margin: 0 0 16px 0;
    }
    
    .footer a {
      color: var(--color-text-muted);
      text-decoration: none;
      display: block;
      padding: 4px 0;
      transition: color 0.3s ease;
    }
    
    .footer a:hover {
      color: var(--color-gold);
    }
    
    .footer-bottom {
      max-width: 1200px;
      margin: 40px auto 0;
      padding-top: 24px;
      border-top: 1px solid var(--color-border);
      text-align: center;
    }

    /* Mobile */
    @media (max-width: 768px) {
      header {
        padding: 15px 20px;
      }
      
      nav ul {
        display: none;
      }
      
      .page-container {
        padding: 100px 20px 60px;
      }
      
      .form-card {
        padding: 24px;
      }
      
      .form-row {
        grid-template-columns: 1fr;
      }
      
      .form-group.full-width {
        grid-column: span 1;
      }
      
      .apply-method {
        flex-direction: column;
      }
    }

    /* Menu toggle */
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
    }
    
    .menu-toggle span {
      width: 25px;
      height: 2px;
      background: var(--color-bg-white);
    }
    
    @media (max-width: 768px) {
      .menu-toggle {
        display: flex;
      }
    }
